├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build-dotnet.yml │ ├── ci-pipeline.yml │ ├── helm.yml │ ├── publish.yml │ ├── release.yml │ └── versioning.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── Synapse.sln ├── assets ├── fonts │ ├── Aquatico-Regular.otf │ ├── Aquatico-Regular.ttf │ ├── Aquatico-Regular.woff │ └── Aquatico-Regular.woff2 └── images │ ├── architecture-c4-l2.png │ ├── fonts.txt │ ├── logo.eps │ ├── logo.svg │ ├── logo_background.eps │ ├── logo_background.svg │ ├── logo_black.eps │ ├── logo_black.svg │ ├── logo_white.eps │ ├── logo_white.svg │ ├── logomark.eps │ ├── logomark.svg │ ├── logomark_background.eps │ ├── logomark_background.svg │ ├── logomark_black.eps │ ├── logomark_black.svg │ ├── logomark_white.eps │ ├── logomark_white.svg │ ├── preview.gif │ ├── transparent_logo.png │ ├── transparent_logo_black.png │ ├── transparent_logo_white.png │ ├── transparent_logomark.ico │ ├── transparent_logomark.png │ ├── transparent_logomark_256.png │ ├── transparent_logomark_black.png │ └── transparent_logomark_white.png ├── community └── README.md ├── deployments ├── docker-compose │ ├── .env │ ├── .gitignore │ ├── config │ │ └── tokens.yaml │ ├── docker-compose.build.yml │ ├── docker-compose.dcproj │ └── docker-compose.yml ├── helm │ ├── Chart.yaml │ ├── templates │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── services.yaml │ └── values.yaml └── kubernetes │ ├── api.yaml │ ├── correlator.yaml │ ├── garnet.yaml │ ├── namespace.yaml │ └── operator.yaml ├── src ├── api │ ├── Synapse.Api.Application │ │ ├── Commands │ │ │ ├── Documents │ │ │ │ ├── CreateDocumentCommand.cs │ │ │ │ └── UpdateDocumentCommand.cs │ │ │ ├── Events │ │ │ │ └── PublishCloudEventCommand.cs │ │ │ ├── Resources │ │ │ │ ├── CreateResourceCommand.cs │ │ │ │ ├── DeleteResourceCommand.cs │ │ │ │ ├── Generic │ │ │ │ │ ├── CreateResourceCommand.cs │ │ │ │ │ ├── DeleteResourceCommand.cs │ │ │ │ │ ├── PatchResourceCommand.cs │ │ │ │ │ ├── PatchResourceStatusCommand.cs │ │ │ │ │ ├── ReplaceResourceCommand.cs │ │ │ │ │ └── ReplaceResourceStatusCommand.cs │ │ │ │ ├── PatchResourceCommand.cs │ │ │ │ └── ReplaceResourceCommand.cs │ │ │ └── WorkflowInstances │ │ │ │ ├── CancelWorkflowInstanceCommand.cs │ │ │ │ ├── ResumeWorkflowInstanceCommand.cs │ │ │ │ └── SuspendWorkflowInstanceCommand.cs │ │ ├── Configuration │ │ │ ├── ApiServerCloudEventOptions.cs │ │ │ ├── ApiServerOptions.cs │ │ │ ├── AuthenticationPolicyOptions.cs │ │ │ ├── DatabaseSeedingOptions.cs │ │ │ ├── JwtBearerAuthenticationOptions.cs │ │ │ ├── OidcAuthenticationOptions.cs │ │ │ └── StaticBearerAuthenticationOptions.cs │ │ ├── Extensions │ │ │ └── IServiceCollectionExtensions.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Queries │ │ │ ├── Documents │ │ │ │ └── GetDocumentQuery.cs │ │ │ ├── Resources │ │ │ │ ├── Generic │ │ │ │ │ ├── GetResourceDefinitionQuery.cs │ │ │ │ │ ├── GetResourceQuery.cs │ │ │ │ │ ├── GetResourcesQuery.cs │ │ │ │ │ ├── ListResourcesQuery.cs │ │ │ │ │ ├── MonitorResourceQuery.cs │ │ │ │ │ └── WatchResourcesQuery.cs │ │ │ │ ├── GetResourceQuery.cs │ │ │ │ ├── GetResourcesQuery.cs │ │ │ │ ├── ListResourcesQuery.cs │ │ │ │ └── WatchResourcesQuery.cs │ │ │ ├── Users │ │ │ │ └── GetUserProfileQuery.cs │ │ │ └── WorkflowInstances │ │ │ │ ├── ReadWorkflowInstanceLogsQuery.cs │ │ │ │ └── WatchWorkflowInstanceLogsQuery.cs │ │ ├── ServiceAccountSigningKey.cs │ │ ├── Services │ │ │ ├── CloudEventPublisher.cs │ │ │ ├── DatabaseProvisioner.cs │ │ │ ├── Interfaces │ │ │ │ └── ICloudEventPublisher.cs │ │ │ ├── ServiceAccountClientStore.cs │ │ │ ├── ServiceAccountProfileService.cs │ │ │ └── StaticBearerAuthenticationHandler.cs │ │ ├── Synapse.Api.Application.csproj │ │ ├── SynapseApiDefaults.cs │ │ └── Usings.cs │ ├── Synapse.Api.Client.Core │ │ ├── Services │ │ │ ├── ICloudEventApiClient.cs │ │ │ ├── IClusterResourceApiClient.cs │ │ │ ├── IDocumentApiClient.cs │ │ │ ├── INamespacedResourceApiClient.cs │ │ │ ├── IResourceApiClient.cs │ │ │ ├── IResourceEventWatchHub.cs │ │ │ ├── IResourceEventWatchHubClient.cs │ │ │ ├── ISynapseApiClient.cs │ │ │ ├── IUserApiClient.cs │ │ │ └── IWorkflowInstanceApiClient.cs │ │ ├── Synapse.Api.Client.Core.csproj │ │ └── Usings.cs │ ├── Synapse.Api.Client.Http │ │ ├── Configuration │ │ │ └── SynapseHttpApiClientOptions.cs │ │ ├── Extensions │ │ │ ├── HttpRequestMessageExtensions.cs │ │ │ ├── IServiceCollectionExtensions.cs │ │ │ └── ISynapseApiClientExtensions.cs │ │ ├── Services │ │ │ ├── ApiClientBase.cs │ │ │ ├── CloudEventHttpApiClient.cs │ │ │ ├── DocumentHttpApiClient.cs │ │ │ ├── ResourceHttpApiClient.cs │ │ │ ├── ResourceWatch.cs │ │ │ ├── ResourceWatchEventHubClient.cs │ │ │ ├── SynapseHttpApiClient.cs │ │ │ ├── UserHttpApiClient.cs │ │ │ └── WorkflowInstanceHttpApiClient.cs │ │ ├── Synapse.Api.Client.Http.csproj │ │ └── Usings.cs │ ├── Synapse.Api.Http │ │ ├── ClusterResourceController.cs │ │ ├── Controllers │ │ │ ├── CorrelationsController.cs │ │ │ ├── CorrelatorsController.cs │ │ │ ├── CustomFunctionsController.cs │ │ │ ├── DocumentsController.cs │ │ │ ├── EventsController.cs │ │ │ ├── NamespacesController.cs │ │ │ ├── OperatorsController.cs │ │ │ ├── ServiceAccountsController.cs │ │ │ ├── UsersController.cs │ │ │ ├── WorkflowInstancesController.cs │ │ │ └── WorkflowsController.cs │ │ ├── Extensions │ │ │ └── IServiceCollectionExtensions.cs │ │ ├── Hubs │ │ │ └── ResourceEventWatchHub.cs │ │ ├── NamespacedResourceController.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ResourceController.cs │ │ ├── Services │ │ │ └── ResourceWatchEventHubController.cs │ │ ├── Synapse.Api.Http.csproj │ │ └── Usings.cs │ └── Synapse.Api.Server │ │ ├── Dockerfile │ │ ├── FallbackPolicySchemeDefaults.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServiceAccountAuthenticationDefaults.cs │ │ ├── StaticBearerDefaults.cs │ │ ├── Synapse.Api.Server.csproj │ │ ├── Usings.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── cli │ └── Synapse.Cli │ │ ├── CliConstants.cs │ │ ├── Commands │ │ ├── Command.cs │ │ ├── Config │ │ │ ├── DeleteApiCommand.cs │ │ │ ├── GetApisCommand.cs │ │ │ ├── SetApiCommand.cs │ │ │ └── UseApiCommand.cs │ │ ├── ConfigCommand.cs │ │ ├── CorrelationCommand.cs │ │ ├── Correlations │ │ │ ├── CreateCorrelationCommand.cs │ │ │ ├── DeleteCorrelationCommand.cs │ │ │ └── ListCorrelationsCommand.cs │ │ ├── CorrelatorCommand.cs │ │ ├── Correlators │ │ │ ├── GetCorrelatorCommand.cs │ │ │ └── ListCorrelatorsCommand.cs │ │ ├── NamespaceCommand.cs │ │ ├── Namespaces │ │ │ ├── CreateNamespaceCommand.cs │ │ │ ├── DeleteNamespaceCommand.cs │ │ │ └── ListNamespacesCommand.cs │ │ ├── OperatorCommand.cs │ │ ├── Operators │ │ │ ├── GetOperatorCommand.cs │ │ │ └── ListOperatorsCommand.cs │ │ ├── ServiceAccountCommand.cs │ │ ├── ServiceAccounts │ │ │ ├── CreateServiceAccountCommand.cs │ │ │ ├── DeleteServiceAccountCommand.cs │ │ │ └── ListServiceAccountsCommand.cs │ │ ├── WorkflowCommand.cs │ │ ├── WorkflowInstanceCommand.cs │ │ ├── WorkflowInstances │ │ │ ├── DeleteWorkflowInstanceCommand.cs │ │ │ ├── GetWorkflowInstanceCommand.cs │ │ │ ├── GetWorkflowInstanceOutputCommand.cs │ │ │ ├── ListWorkflowInstancesCommand.cs │ │ │ └── MonitorWorkflowInstancesCommand.cs │ │ └── Workflows │ │ │ ├── CreateWorkflowCommand.cs │ │ │ ├── DeleteWorkflowCommand.cs │ │ │ ├── GetWorkflowCommand.cs │ │ │ ├── ListWorkflowsCommand.cs │ │ │ └── RunWorkflowCommand.cs │ │ ├── Configuration │ │ ├── ApiConfiguration.cs │ │ ├── ApplicationApiOptions.cs │ │ └── ApplicationOptions.cs │ │ ├── Extensions │ │ └── IServiceCollectionExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Sample │ │ ├── workflow-fake-2.yaml │ │ └── workflow-fake.yaml │ │ ├── Services │ │ └── IOptionsManager.cs │ │ ├── Synapse.Cli.csproj │ │ ├── Usings.cs │ │ └── config.yaml ├── core │ ├── Synapse.Core.Infrastructure.Containers.Docker │ │ ├── Configuration │ │ │ └── DockerContainerPlatformOptions.cs │ │ ├── DockerContainer.cs │ │ ├── DockerContainerPlatform.cs │ │ ├── Extensions │ │ │ └── DockerContainerPlatformServiceCollectionExtensions.cs │ │ ├── Synapse.Core.Infrastructure.Containers.Docker.csproj │ │ └── Usings.cs │ ├── Synapse.Core.Infrastructure.Containers.Kubernetes │ │ ├── Configuration │ │ │ └── KubernetesContainerPlatformOptions.cs │ │ ├── Extensions │ │ │ └── KubernetesContainerPlatformServiceCollectionExtensions.cs │ │ ├── KubernetesContainer.cs │ │ ├── KubernetesContainerPlatform.cs │ │ └── Synapse.Core.Infrastructure.Containers.Kubernetes.csproj │ ├── Synapse.Core.Infrastructure │ │ ├── AsyncLock.cs │ │ ├── AuthorizationInfo.cs │ │ ├── Extensions │ │ │ ├── HttpClientExtensions.cs │ │ │ ├── IHostEnvironmentExtensions.cs │ │ │ └── IServiceCollectionExtensions.cs │ │ ├── OAuth2Token.cs │ │ ├── Services │ │ │ ├── ApplicationUserAccessor.cs │ │ │ ├── AvroSchemaHandler.cs │ │ │ ├── CorrelationValidator.cs │ │ │ ├── DatabaseInitializer.cs │ │ │ ├── ExternalResourceProvider.cs │ │ │ ├── Interfaces │ │ │ │ ├── IContainer.cs │ │ │ │ ├── IContainerPlatform.cs │ │ │ │ ├── IExternalResourceProvider.cs │ │ │ │ ├── IOAuth2TokenManager.cs │ │ │ │ ├── ISchemaHandler.cs │ │ │ │ ├── ISchemaHandlerProvider.cs │ │ │ │ └── ISecretsManager.cs │ │ │ ├── JsonSchemaHandler.cs │ │ │ ├── OAuth2TokenManager.cs │ │ │ ├── SchemaHandlerProvider.cs │ │ │ ├── WorkflowInstanceMutator.cs │ │ │ ├── WorkflowInstanceValidator.cs │ │ │ └── XmlSchemaHandler.cs │ │ ├── Synapse.Core.Infrastructure.csproj │ │ └── Usings.cs │ └── Synapse.Core │ │ ├── Annotations │ │ ├── CloudEventAttribute.cs │ │ └── SemanticVersionAttribute.cs │ │ ├── ConcurrentHashSet.cs │ │ ├── ContainerPlatform.cs │ │ ├── CorrelationContextStatus.cs │ │ ├── CorrelationOutcomeType.cs │ │ ├── CorrelationStatusPhase.cs │ │ ├── CorrelatorStatusPhase.cs │ │ ├── Error.cs │ │ ├── Events │ │ ├── Tasks │ │ │ ├── RetryingTaskEventV1.cs │ │ │ ├── TaskCancelledEventV1.cs │ │ │ ├── TaskCompletedEventV1.cs │ │ │ ├── TaskCreatedEventV1.cs │ │ │ ├── TaskEndedEventV1.cs │ │ │ ├── TaskFaultedEventV1.cs │ │ │ ├── TaskResumedEventV1.cs │ │ │ ├── TaskSkippedEventV1.cs │ │ │ ├── TaskStartedEventV1.cs │ │ │ └── TaskSuspendedEventV1.cs │ │ └── Workflows │ │ │ ├── WorkflowCancelledEventV1.cs │ │ │ ├── WorkflowCompletedEventV1.cs │ │ │ ├── WorkflowCorrelationCompletedEventV1.cs │ │ │ ├── WorkflowCorrelationStartedEventV1.cs │ │ │ ├── WorkflowEndedEventV1.cs │ │ │ ├── WorkflowFaultedEventV1.cs │ │ │ ├── WorkflowResumedEventV1.cs │ │ │ ├── WorkflowStartedEventV1.cs │ │ │ └── WorkflowSuspendedEventV1.cs │ │ ├── Extensions │ │ ├── AuthenticationPolicyDefinitionExtensions.cs │ │ ├── AvroSchemaExtensions.cs │ │ ├── AvroTypeExtensions.cs │ │ ├── CorrelationContextExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── TaskDefinitionMapExtensions.cs │ │ ├── TaskDefinitionVersionMapExtensions.cs │ │ ├── WorkflowDefinitionEnumerableExtensions.cs │ │ ├── WorkflowDefinitionExtensions.cs │ │ └── XmlSchemaExtensions.cs │ │ ├── ImagePullPolicy.cs │ │ ├── OperatorRuntimeMode.cs │ │ ├── OperatorStatusPhase.cs │ │ ├── Resources │ │ ├── CertificateValidationStrategyDefinition.cs │ │ ├── CorrelateWorkflowOutcomeDefinition.cs │ │ ├── Correlation.cs │ │ ├── Correlation.yaml │ │ ├── CorrelationContext.cs │ │ ├── CorrelationLifetime.cs │ │ ├── CorrelationOutcomeDefinition.cs │ │ ├── CorrelationResourceDefinition.cs │ │ ├── CorrelationSpec.cs │ │ ├── CorrelationStatus.cs │ │ ├── Correlator.cs │ │ ├── Correlator.yaml │ │ ├── CorrelatorResourceDefinition.cs │ │ ├── CorrelatorSpec.cs │ │ ├── CorrelatorStatus.cs │ │ ├── CustomFunction.cs │ │ ├── CustomFunction.yaml │ │ ├── CustomFunctionResourceDefinition.cs │ │ ├── CustomFunctionSpec.cs │ │ ├── DockerApiConfiguration.cs │ │ ├── DockerRuntimeConfiguration.cs │ │ ├── DockerRuntimeSecretsConfiguration.cs │ │ ├── Document.cs │ │ ├── KubernetesRuntimeConfiguration.cs │ │ ├── KubernetesRuntimeSecretsConfiguration.cs │ │ ├── NativeRuntimeConfiguration.cs │ │ ├── Operator.cs │ │ ├── Operator.yaml │ │ ├── OperatorCleanupOptions.cs │ │ ├── OperatorResourceDefinition.cs │ │ ├── OperatorSpec.cs │ │ ├── OperatorStatus.cs │ │ ├── RetryAttempt.cs │ │ ├── RunnerConfiguration.cs │ │ ├── RuntimeDefinition.cs │ │ ├── ServiceAccount.cs │ │ ├── ServiceAccount.yaml │ │ ├── ServiceAccountResourceDefinition.cs │ │ ├── ServiceAccountSpec.cs │ │ ├── StartWorkflowOutcomeDefinition.cs │ │ ├── TaskInstance.cs │ │ ├── TaskInstanceStatus.cs │ │ ├── TaskRun.cs │ │ ├── Workflow.cs │ │ ├── Workflow.yaml │ │ ├── WorkflowDefinitionReference.cs │ │ ├── WorkflowInstance.cs │ │ ├── WorkflowInstance.yaml │ │ ├── WorkflowInstanceCorrelationStatus.cs │ │ ├── WorkflowInstanceResourceDefinition.cs │ │ ├── WorkflowInstanceSpec.cs │ │ ├── WorkflowInstanceStatus.cs │ │ ├── WorkflowResourceDefinition.cs │ │ ├── WorkflowRun.cs │ │ ├── WorkflowSpec.cs │ │ ├── WorkflowStatus.cs │ │ └── WorkflowVersionStatus.cs │ │ ├── Synapse.Core.csproj │ │ ├── SynapseDefaults.cs │ │ ├── TaskInstanceStatus.cs │ │ ├── Usings.cs │ │ └── WorkflowInstanceStatusPhase.cs ├── correlator │ └── Synapse.Correlator │ │ ├── Commands │ │ └── CloudEvents │ │ │ └── IngestCloudEventCommand.cs │ │ ├── Configuration │ │ ├── CloudEventConsumptionOptions.cs │ │ └── CorrelatorOptions.cs │ │ ├── Controllers │ │ └── CloudEventsController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── CorrelationController.cs │ │ ├── CorrelationHandler.cs │ │ ├── CorrelatorApplication.cs │ │ ├── CorrelatorController.cs │ │ ├── Interfaces │ │ │ └── ICorrelatorController.cs │ │ └── RedisCloudEventIngestor.cs │ │ ├── Synapse.Correlator.csproj │ │ ├── Usings.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── dashboard │ ├── Synapse.Dashboard.StateManagement │ │ ├── ActionContext.cs │ │ ├── Attributes │ │ │ ├── EffectAttribute.cs │ │ │ ├── FeatureAttribute.cs │ │ │ └── ReducerAttribute.cs │ │ ├── ComponentStore.cs │ │ ├── Configuration │ │ │ ├── FluxOptions.cs │ │ │ ├── FluxOptionsBuilder.cs │ │ │ └── IFluxOptionsBuilder.cs │ │ ├── DispatchDelegate.cs │ │ ├── Dispatcher.cs │ │ ├── Effect.cs │ │ ├── EffectContext.cs │ │ ├── Extensions │ │ │ ├── IFluxOptionsBuilderExtensions.cs │ │ │ ├── IServiceCollectionExtensions.cs │ │ │ └── IStoreExtensions.cs │ │ ├── Feature.cs │ │ ├── Interfaces │ │ │ ├── IActionContext.cs │ │ │ ├── IComponentStore.cs │ │ │ ├── IDispatcher.cs │ │ │ ├── IEffect.cs │ │ │ ├── IEffectContext.cs │ │ │ ├── IFeature.cs │ │ │ ├── IMiddleware.cs │ │ │ ├── IReducer.cs │ │ │ ├── IState.cs │ │ │ ├── IStore.cs │ │ │ └── IStoreFactory.cs │ │ ├── Reducer.cs │ │ ├── State.cs │ │ ├── Store.cs │ │ ├── StoreFactory.cs │ │ └── Synapse.Dashboard.StateManagement.csproj │ └── Synapse.Dashboard │ │ ├── App.razor │ │ ├── CheckboxState.cs │ │ ├── Components │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.razor │ │ │ ├── BreadcrumbItem.cs │ │ │ └── Breadcrumbs.cs │ │ ├── CorrelationContextDetails │ │ │ └── CorrelationContextDetails.razor │ │ ├── CreateWorkflowInstanceDialog │ │ │ ├── CreateWorkflowInstanceDialog.razor │ │ │ └── CreateWorkflowInstanceParameters.cs │ │ ├── CustomFunctionDetails │ │ │ └── CustomFunctionDetails.razor │ │ ├── DictionaryEditor │ │ │ └── DictionaryEditor.razor │ │ ├── DocumentDetails │ │ │ ├── DocumentDetails.razor │ │ │ ├── State.cs │ │ │ └── Store.cs │ │ ├── DynamicForm │ │ │ ├── DynamicForm.razor │ │ │ ├── DynamicFormArray.razor │ │ │ ├── DynamicFormField.razor │ │ │ ├── DynamicFormState.cs │ │ │ └── DynamicFormStore.cs │ │ ├── HorizontalCollapsible │ │ │ └── HorizontalCollapsible.razor │ │ ├── Loader │ │ │ └── Loader.razor │ │ ├── MonacoEditor │ │ │ ├── IMonacoEditorHelper.cs │ │ │ ├── IMonacoEditorMarker.cs │ │ │ ├── MonacoEditor.razor │ │ │ ├── MonacoEditorHelper.cs │ │ │ ├── MonacoEditorMarker.cs │ │ │ ├── MonacoEditorMarkerSeverity.cs │ │ │ ├── PreferredLanguage.cs │ │ │ ├── PreferredLanguageSelector.razor │ │ │ ├── State.cs │ │ │ └── Store.cs │ │ ├── ResourceDetails │ │ │ └── ResourceDetails.razor │ │ ├── ResourceEditor │ │ │ ├── ResourceEditor.razor │ │ │ ├── ResourceEditor.razor.css │ │ │ ├── ResourceEditor.razor.min.css │ │ │ ├── ResourceEditor.razor.scss │ │ │ ├── State.cs │ │ │ └── Store.cs │ │ ├── ResourceManagement │ │ │ ├── ClusterResourceManagementComponent.cs │ │ │ ├── ClusterResourceManagementComponentStore.cs │ │ │ ├── NamespacedResourceManagementComponent.cs │ │ │ ├── NamespacedResourceManagementComponentState.cs │ │ │ ├── NamespacedResourceManagementComponentStore.cs │ │ │ ├── ResourceManagementComponent.cs │ │ │ ├── ResourceManagementComponentState.cs │ │ │ ├── ResourceManagementComponentStoreBase.cs │ │ │ └── ResourcesFilter.cs │ │ ├── TaskInstanceDetails │ │ │ └── TaskInstanceDetails.razor │ │ ├── WorkflowDetails │ │ │ └── WorkflowDetails.razor │ │ ├── WorkflowDiagram │ │ │ ├── CallTaskNodeViewModel.cs │ │ │ ├── CatchDoNodeViewModel.cs │ │ │ ├── CatchNodeViewModel.cs │ │ │ ├── DoTaskNodeViewModel.cs │ │ │ ├── EmitTaskNodeViewModel.cs │ │ │ ├── EndNodeViewModel.cs │ │ │ ├── ExtensionTaskNodeViewModel.cs │ │ │ ├── ForTaskNodeViewModel.cs │ │ │ ├── ForkTaskNodeViewModel.cs │ │ │ ├── IWorkflowNodeViewModel.cs │ │ │ ├── ListenTaskNodeViewModel.cs │ │ │ ├── NodeViewModelConfig.cs │ │ │ ├── PortNodeViewModel.cs │ │ │ ├── RaiseTaskNodeViewModel.cs │ │ │ ├── RunTaskNodeViewModel.cs │ │ │ ├── SetTaskNodeViewModel.cs │ │ │ ├── StartNodeViewModel.cs │ │ │ ├── SwitchTaskNodeViewModel.cs │ │ │ ├── SynapseNodeShape.cs │ │ │ ├── Templates │ │ │ │ ├── CenterControl.razor │ │ │ │ ├── Legend.razor │ │ │ │ ├── NodeActivityBadge.razor │ │ │ │ ├── NodeLabelTemplate.razor │ │ │ │ ├── NodeShapeTemplate.razor │ │ │ │ ├── NodeSymbolTemplate.razor │ │ │ │ ├── NodeTemplate.razor │ │ │ │ ├── SaveAsPngControl.razor │ │ │ │ └── ZoomToFitControl.razor │ │ │ ├── TryNodeViewModel.cs │ │ │ ├── TryTaskNodeViewModel.cs │ │ │ ├── WaitTaskNodeViewModel.cs │ │ │ ├── WorkflowClusterViewModel.cs │ │ │ ├── WorkflowDiagram.razor │ │ │ ├── WorkflowDiagramOrientation.cs │ │ │ ├── WorkflowDiagramState.cs │ │ │ ├── WorkflowDiagramStore.cs │ │ │ └── WorkflowNodeViewModel.cs │ │ ├── WorkflowInstanceDetails │ │ │ ├── CorrelationContextRow.razor │ │ │ ├── TaskInstanceRow.razor │ │ │ └── WorkflowInstanceDetails.razor │ │ ├── WorkflowInstanceLogs │ │ │ ├── State.cs │ │ │ ├── Store.cs │ │ │ └── WorkflowInstanceLogs.razor │ │ ├── WorkflowInstancesList │ │ │ └── WorkflowInstancesList.razor │ │ └── WorkflowVersionSelector │ │ │ └── WorkflowVersionSelector.razor │ │ ├── Configuration │ │ ├── ApplicationOptions.cs │ │ └── AuthenticationOptions.cs │ │ ├── Extensions │ │ ├── DateTimeExtensions.cs │ │ └── StatusExtensions.cs │ │ ├── Layout │ │ ├── ApplicationLayout.cs │ │ ├── ApplicationTitle.razor │ │ ├── EmptyLayout.razor │ │ ├── IApplicationLayout.cs │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── MainLayout.razor.min.css │ │ ├── MainLayout.razor.scss │ │ └── RedirectToLogin.razor │ │ ├── Pages │ │ ├── About │ │ │ └── View.razor │ │ ├── Authentication │ │ │ ├── Bearer │ │ │ │ └── Login.razor │ │ │ ├── Oidc │ │ │ │ └── Oidc.razor │ │ │ └── View.razor │ │ ├── Correlations │ │ │ └── List │ │ │ │ └── View.razor │ │ ├── Correlators │ │ │ └── List │ │ │ │ └── View.razor │ │ ├── Functions │ │ │ ├── Create │ │ │ │ ├── State.cs │ │ │ │ ├── Store.cs │ │ │ │ └── View.razor │ │ │ └── List │ │ │ │ ├── Store.cs │ │ │ │ └── View.razor │ │ ├── Namespaces │ │ │ └── List │ │ │ │ └── View.razor │ │ ├── Operators │ │ │ └── List │ │ │ │ └── View.razor │ │ ├── ServiceAccounts │ │ │ └── List │ │ │ │ └── View.razor │ │ ├── Users │ │ │ └── Profile.razor │ │ ├── WorkflowInstances │ │ │ └── List │ │ │ │ ├── State.cs │ │ │ │ ├── Store.cs │ │ │ │ └── View.razor │ │ └── Workflows │ │ │ ├── Create │ │ │ ├── State.cs │ │ │ ├── Store.cs │ │ │ └── View.razor │ │ │ ├── Details │ │ │ ├── State.cs │ │ │ ├── Store.cs │ │ │ └── View.razor │ │ │ └── List │ │ │ ├── State.cs │ │ │ ├── Store.cs │ │ │ └── View.razor │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── ApplicationAuthenticationStateProvider.cs │ │ ├── BreadcrumbManager.cs │ │ ├── Interfaces │ │ │ ├── IBreadcrumbManager.cs │ │ │ ├── ILocalStorage.cs │ │ │ ├── ISecurityTokenManager.cs │ │ │ └── IWorkflowGraphBuilder.cs │ │ ├── JsInterop.cs │ │ ├── LocalStorage.cs │ │ ├── MonacoInterop.cs │ │ ├── SecurityTokenManager.cs │ │ ├── SpecificationSchemaManager.cs │ │ └── WorkflowGraphBuilder.cs │ │ ├── StatefulComponent.cs │ │ ├── Synapse.Dashboard.csproj │ │ ├── Usings.cs │ │ ├── _Imports.razor │ │ ├── compilerconfig.json │ │ ├── compilerconfig.json.defaults │ │ ├── libman.json │ │ ├── package-lock.json │ │ └── wwwroot │ │ ├── appsettings.json │ │ ├── css │ │ ├── app.css │ │ ├── app.min.css │ │ ├── app.scss │ │ ├── blazor-loading.scss │ │ ├── graph.scss │ │ ├── horizontal-collapse.scss │ │ ├── scrollbar.scss │ │ ├── status.scss │ │ ├── table.scss │ │ ├── text-editor.scss │ │ ├── theme │ │ │ ├── _variables.scss │ │ │ └── theme.scss │ │ ├── timeline.scss │ │ └── workflow-instance-details.scss │ │ ├── fonts │ │ ├── Aquatico-Regular.otf │ │ ├── Aquatico-Regular.ttf │ │ ├── Aquatico-Regular.woff │ │ └── Aquatico-Regular.woff2 │ │ ├── img │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── github-logo.png │ │ ├── logo.eps │ │ ├── logo.svg │ │ ├── logo_background.eps │ │ ├── logo_background.svg │ │ ├── logo_black.eps │ │ ├── logo_black.svg │ │ ├── logo_white.eps │ │ ├── logo_white.svg │ │ ├── logomark.eps │ │ ├── logomark.svg │ │ ├── logomark_background.eps │ │ ├── logomark_background.svg │ │ ├── logomark_black.eps │ │ ├── logomark_black.svg │ │ ├── logomark_white.eps │ │ ├── logomark_white.svg │ │ ├── openapi-logo.png │ │ ├── transparent_logo.png │ │ ├── transparent_logo_black.png │ │ ├── transparent_logo_white.png │ │ ├── transparent_logomark.png │ │ ├── transparent_logomark_black.png │ │ └── transparent_logomark_white.png │ │ ├── index.html │ │ ├── js │ │ ├── js-interop.js │ │ └── monaco-editor-interop-extension.js │ │ ├── lib │ │ ├── bootstrap-icons │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap-icons.svg │ │ │ ├── font │ │ │ │ ├── bootstrap-icons.css │ │ │ │ ├── bootstrap-icons.json │ │ │ │ ├── bootstrap-icons.min.css │ │ │ │ ├── bootstrap-icons.scss │ │ │ │ └── fonts │ │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ │ └── bootstrap-icons.woff2 │ │ │ ├── icons │ │ │ │ ├── 0-circle-fill.svg │ │ │ │ ├── 0-circle.svg │ │ │ │ ├── 0-square-fill.svg │ │ │ │ ├── 0-square.svg │ │ │ │ ├── 1-circle-fill.svg │ │ │ │ ├── 1-circle.svg │ │ │ │ ├── 1-square-fill.svg │ │ │ │ ├── 1-square.svg │ │ │ │ ├── 123.svg │ │ │ │ ├── 2-circle-fill.svg │ │ │ │ ├── 2-circle.svg │ │ │ │ ├── 2-square-fill.svg │ │ │ │ ├── 2-square.svg │ │ │ │ ├── 3-circle-fill.svg │ │ │ │ ├── 3-circle.svg │ │ │ │ ├── 3-square-fill.svg │ │ │ │ ├── 3-square.svg │ │ │ │ ├── 4-circle-fill.svg │ │ │ │ ├── 4-circle.svg │ │ │ │ ├── 4-square-fill.svg │ │ │ │ ├── 4-square.svg │ │ │ │ ├── 5-circle-fill.svg │ │ │ │ ├── 5-circle.svg │ │ │ │ ├── 5-square-fill.svg │ │ │ │ ├── 5-square.svg │ │ │ │ ├── 6-circle-fill.svg │ │ │ │ ├── 6-circle.svg │ │ │ │ ├── 6-square-fill.svg │ │ │ │ ├── 6-square.svg │ │ │ │ ├── 7-circle-fill.svg │ │ │ │ ├── 7-circle.svg │ │ │ │ ├── 7-square-fill.svg │ │ │ │ ├── 7-square.svg │ │ │ │ ├── 8-circle-fill.svg │ │ │ │ ├── 8-circle.svg │ │ │ │ ├── 8-square-fill.svg │ │ │ │ ├── 8-square.svg │ │ │ │ ├── 9-circle-fill.svg │ │ │ │ ├── 9-circle.svg │ │ │ │ ├── 9-square-fill.svg │ │ │ │ ├── 9-square.svg │ │ │ │ ├── activity.svg │ │ │ │ ├── airplane-engines-fill.svg │ │ │ │ ├── airplane-engines.svg │ │ │ │ ├── airplane-fill.svg │ │ │ │ ├── airplane.svg │ │ │ │ ├── alarm-fill.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── alexa.svg │ │ │ │ ├── align-bottom.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-end.svg │ │ │ │ ├── align-middle.svg │ │ │ │ ├── align-start.svg │ │ │ │ ├── align-top.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── alphabet-uppercase.svg │ │ │ │ ├── alphabet.svg │ │ │ │ ├── alt.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amd.svg │ │ │ │ ├── android.svg │ │ │ │ ├── android2.svg │ │ │ │ ├── app-indicator.svg │ │ │ │ ├── app.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── archive-fill.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-90deg-down.svg │ │ │ │ ├── arrow-90deg-left.svg │ │ │ │ ├── arrow-90deg-right.svg │ │ │ │ ├── arrow-90deg-up.svg │ │ │ │ ├── arrow-bar-down.svg │ │ │ │ ├── arrow-bar-left.svg │ │ │ │ ├── arrow-bar-right.svg │ │ │ │ ├── arrow-bar-up.svg │ │ │ │ ├── arrow-clockwise.svg │ │ │ │ ├── arrow-counterclockwise.svg │ │ │ │ ├── arrow-down-circle-fill.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ │ ├── arrow-down-left-circle.svg │ │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ │ ├── arrow-down-left-square.svg │ │ │ │ ├── arrow-down-left.svg │ │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ │ ├── arrow-down-right-circle.svg │ │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ │ ├── arrow-down-right-square.svg │ │ │ │ ├── arrow-down-right.svg │ │ │ │ ├── arrow-down-short.svg │ │ │ │ ├── arrow-down-square-fill.svg │ │ │ │ ├── arrow-down-square.svg │ │ │ │ ├── arrow-down-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-circle-fill.svg │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ ├── arrow-left-right.svg │ │ │ │ ├── arrow-left-short.svg │ │ │ │ ├── arrow-left-square-fill.svg │ │ │ │ ├── arrow-left-square.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-repeat.svg │ │ │ │ ├── arrow-return-left.svg │ │ │ │ ├── arrow-return-right.svg │ │ │ │ ├── arrow-right-circle-fill.svg │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ ├── arrow-right-short.svg │ │ │ │ ├── arrow-right-square-fill.svg │ │ │ │ ├── arrow-right-square.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-through-heart-fill.svg │ │ │ │ ├── arrow-through-heart.svg │ │ │ │ ├── arrow-up-circle-fill.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ │ ├── arrow-up-left-circle.svg │ │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ │ ├── arrow-up-left-square.svg │ │ │ │ ├── arrow-up-left.svg │ │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ │ ├── arrow-up-right-circle.svg │ │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ │ ├── arrow-up-right-square.svg │ │ │ │ ├── arrow-up-right.svg │ │ │ │ ├── arrow-up-short.svg │ │ │ │ ├── arrow-up-square-fill.svg │ │ │ │ ├── arrow-up-square.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-angle-contract.svg │ │ │ │ ├── arrows-angle-expand.svg │ │ │ │ ├── arrows-collapse-vertical.svg │ │ │ │ ├── arrows-collapse.svg │ │ │ │ ├── arrows-expand-vertical.svg │ │ │ │ ├── arrows-expand.svg │ │ │ │ ├── arrows-fullscreen.svg │ │ │ │ ├── arrows-move.svg │ │ │ │ ├── arrows-vertical.svg │ │ │ │ ├── arrows.svg │ │ │ │ ├── aspect-ratio-fill.svg │ │ │ │ ├── aspect-ratio.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── award-fill.svg │ │ │ │ ├── award.svg │ │ │ │ ├── back.svg │ │ │ │ ├── backpack-fill.svg │ │ │ │ ├── backpack.svg │ │ │ │ ├── backpack2-fill.svg │ │ │ │ ├── backpack2.svg │ │ │ │ ├── backpack3-fill.svg │ │ │ │ ├── backpack3.svg │ │ │ │ ├── backpack4-fill.svg │ │ │ │ ├── backpack4.svg │ │ │ │ ├── backspace-fill.svg │ │ │ │ ├── backspace-reverse-fill.svg │ │ │ │ ├── backspace-reverse.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── badge-3d-fill.svg │ │ │ │ ├── badge-3d.svg │ │ │ │ ├── badge-4k-fill.svg │ │ │ │ ├── badge-4k.svg │ │ │ │ ├── badge-8k-fill.svg │ │ │ │ ├── badge-8k.svg │ │ │ │ ├── badge-ad-fill.svg │ │ │ │ ├── badge-ad.svg │ │ │ │ ├── badge-ar-fill.svg │ │ │ │ ├── badge-ar.svg │ │ │ │ ├── badge-cc-fill.svg │ │ │ │ ├── badge-cc.svg │ │ │ │ ├── badge-hd-fill.svg │ │ │ │ ├── badge-hd.svg │ │ │ │ ├── badge-sd-fill.svg │ │ │ │ ├── badge-sd.svg │ │ │ │ ├── badge-tm-fill.svg │ │ │ │ ├── badge-tm.svg │ │ │ │ ├── badge-vo-fill.svg │ │ │ │ ├── badge-vo.svg │ │ │ │ ├── badge-vr-fill.svg │ │ │ │ ├── badge-vr.svg │ │ │ │ ├── badge-wc-fill.svg │ │ │ │ ├── badge-wc.svg │ │ │ │ ├── bag-check-fill.svg │ │ │ │ ├── bag-check.svg │ │ │ │ ├── bag-dash-fill.svg │ │ │ │ ├── bag-dash.svg │ │ │ │ ├── bag-fill.svg │ │ │ │ ├── bag-heart-fill.svg │ │ │ │ ├── bag-heart.svg │ │ │ │ ├── bag-plus-fill.svg │ │ │ │ ├── bag-plus.svg │ │ │ │ ├── bag-x-fill.svg │ │ │ │ ├── bag-x.svg │ │ │ │ ├── bag.svg │ │ │ │ ├── balloon-fill.svg │ │ │ │ ├── balloon-heart-fill.svg │ │ │ │ ├── balloon-heart.svg │ │ │ │ ├── balloon.svg │ │ │ │ ├── ban-fill.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── bandaid-fill.svg │ │ │ │ ├── bandaid.svg │ │ │ │ ├── bank.svg │ │ │ │ ├── bank2.svg │ │ │ │ ├── bar-chart-fill.svg │ │ │ │ ├── bar-chart-line-fill.svg │ │ │ │ ├── bar-chart-line.svg │ │ │ │ ├── bar-chart-steps.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── basket-fill.svg │ │ │ │ ├── basket.svg │ │ │ │ ├── basket2-fill.svg │ │ │ │ ├── basket2.svg │ │ │ │ ├── basket3-fill.svg │ │ │ │ ├── basket3.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bell-fill.svg │ │ │ │ ├── bell-slash-fill.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier.svg │ │ │ │ ├── bezier2.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── bing.svg │ │ │ │ ├── binoculars-fill.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── blockquote-left.svg │ │ │ │ ├── blockquote-right.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── body-text.svg │ │ │ │ ├── book-fill.svg │ │ │ │ ├── book-half.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark-check-fill.svg │ │ │ │ ├── bookmark-check.svg │ │ │ │ ├── bookmark-dash-fill.svg │ │ │ │ ├── bookmark-dash.svg │ │ │ │ ├── bookmark-fill.svg │ │ │ │ ├── bookmark-heart-fill.svg │ │ │ │ ├── bookmark-heart.svg │ │ │ │ ├── bookmark-plus-fill.svg │ │ │ │ ├── bookmark-plus.svg │ │ │ │ ├── bookmark-star-fill.svg │ │ │ │ ├── bookmark-star.svg │ │ │ │ ├── bookmark-x-fill.svg │ │ │ │ ├── bookmark-x.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bookmarks-fill.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── bookshelf.svg │ │ │ │ ├── boombox-fill.svg │ │ │ │ ├── boombox.svg │ │ │ │ ├── bootstrap-fill.svg │ │ │ │ ├── bootstrap-reboot.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-bottom.svg │ │ │ │ ├── border-center.svg │ │ │ │ ├── border-inner.svg │ │ │ │ ├── border-left.svg │ │ │ │ ├── border-middle.svg │ │ │ │ ├── border-outer.svg │ │ │ │ ├── border-right.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── border-top.svg │ │ │ │ ├── border-width.svg │ │ │ │ ├── border.svg │ │ │ │ ├── bounding-box-circles.svg │ │ │ │ ├── bounding-box.svg │ │ │ │ ├── box-arrow-down-left.svg │ │ │ │ ├── box-arrow-down-right.svg │ │ │ │ ├── box-arrow-down.svg │ │ │ │ ├── box-arrow-in-down-left.svg │ │ │ │ ├── box-arrow-in-down-right.svg │ │ │ │ ├── box-arrow-in-down.svg │ │ │ │ ├── box-arrow-in-left.svg │ │ │ │ ├── box-arrow-in-right.svg │ │ │ │ ├── box-arrow-in-up-left.svg │ │ │ │ ├── box-arrow-in-up-right.svg │ │ │ │ ├── box-arrow-in-up.svg │ │ │ │ ├── box-arrow-left.svg │ │ │ │ ├── box-arrow-right.svg │ │ │ │ ├── box-arrow-up-left.svg │ │ │ │ ├── box-arrow-up-right.svg │ │ │ │ ├── box-arrow-up.svg │ │ │ │ ├── box-fill.svg │ │ │ │ ├── box-seam-fill.svg │ │ │ │ ├── box-seam.svg │ │ │ │ ├── box.svg │ │ │ │ ├── box2-fill.svg │ │ │ │ ├── box2-heart-fill.svg │ │ │ │ ├── box2-heart.svg │ │ │ │ ├── box2.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braces-asterisk.svg │ │ │ │ ├── braces.svg │ │ │ │ ├── bricks.svg │ │ │ │ ├── briefcase-fill.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── brightness-alt-high-fill.svg │ │ │ │ ├── brightness-alt-high.svg │ │ │ │ ├── brightness-alt-low-fill.svg │ │ │ │ ├── brightness-alt-low.svg │ │ │ │ ├── brightness-high-fill.svg │ │ │ │ ├── brightness-high.svg │ │ │ │ ├── brightness-low-fill.svg │ │ │ │ ├── brightness-low.svg │ │ │ │ ├── brilliance.svg │ │ │ │ ├── broadcast-pin.svg │ │ │ │ ├── broadcast.svg │ │ │ │ ├── browser-chrome.svg │ │ │ │ ├── browser-edge.svg │ │ │ │ ├── browser-firefox.svg │ │ │ │ ├── browser-safari.svg │ │ │ │ ├── brush-fill.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bucket-fill.svg │ │ │ │ ├── bucket.svg │ │ │ │ ├── bug-fill.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building-add.svg │ │ │ │ ├── building-check.svg │ │ │ │ ├── building-dash.svg │ │ │ │ ├── building-down.svg │ │ │ │ ├── building-exclamation.svg │ │ │ │ ├── building-fill-add.svg │ │ │ │ ├── building-fill-check.svg │ │ │ │ ├── building-fill-dash.svg │ │ │ │ ├── building-fill-down.svg │ │ │ │ ├── building-fill-exclamation.svg │ │ │ │ ├── building-fill-gear.svg │ │ │ │ ├── building-fill-lock.svg │ │ │ │ ├── building-fill-slash.svg │ │ │ │ ├── building-fill-up.svg │ │ │ │ ├── building-fill-x.svg │ │ │ │ ├── building-fill.svg │ │ │ │ ├── building-gear.svg │ │ │ │ ├── building-lock.svg │ │ │ │ ├── building-slash.svg │ │ │ │ ├── building-up.svg │ │ │ │ ├── building-x.svg │ │ │ │ ├── building.svg │ │ │ │ ├── buildings-fill.svg │ │ │ │ ├── buildings.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── bus-front-fill.svg │ │ │ │ ├── bus-front.svg │ │ │ │ ├── c-circle-fill.svg │ │ │ │ ├── c-circle.svg │ │ │ │ ├── c-square-fill.svg │ │ │ │ ├── c-square.svg │ │ │ │ ├── cake-fill.svg │ │ │ │ ├── cake.svg │ │ │ │ ├── cake2-fill.svg │ │ │ │ ├── cake2.svg │ │ │ │ ├── calculator-fill.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-check-fill.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-date-fill.svg │ │ │ │ ├── calendar-date.svg │ │ │ │ ├── calendar-day-fill.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-event-fill.svg │ │ │ │ ├── calendar-event.svg │ │ │ │ ├── calendar-fill.svg │ │ │ │ ├── calendar-heart-fill.svg │ │ │ │ ├── calendar-heart.svg │ │ │ │ ├── calendar-minus-fill.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-month-fill.svg │ │ │ │ ├── calendar-month.svg │ │ │ │ ├── calendar-plus-fill.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-range-fill.svg │ │ │ │ ├── calendar-range.svg │ │ │ │ ├── calendar-week-fill.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar-x-fill.svg │ │ │ │ ├── calendar-x.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── calendar2-check-fill.svg │ │ │ │ ├── calendar2-check.svg │ │ │ │ ├── calendar2-date-fill.svg │ │ │ │ ├── calendar2-date.svg │ │ │ │ ├── calendar2-day-fill.svg │ │ │ │ ├── calendar2-day.svg │ │ │ │ ├── calendar2-event-fill.svg │ │ │ │ ├── calendar2-event.svg │ │ │ │ ├── calendar2-fill.svg │ │ │ │ ├── calendar2-heart-fill.svg │ │ │ │ ├── calendar2-heart.svg │ │ │ │ ├── calendar2-minus-fill.svg │ │ │ │ ├── calendar2-minus.svg │ │ │ │ ├── calendar2-month-fill.svg │ │ │ │ ├── calendar2-month.svg │ │ │ │ ├── calendar2-plus-fill.svg │ │ │ │ ├── calendar2-plus.svg │ │ │ │ ├── calendar2-range-fill.svg │ │ │ │ ├── calendar2-range.svg │ │ │ │ ├── calendar2-week-fill.svg │ │ │ │ ├── calendar2-week.svg │ │ │ │ ├── calendar2-x-fill.svg │ │ │ │ ├── calendar2-x.svg │ │ │ │ ├── calendar2.svg │ │ │ │ ├── calendar3-event-fill.svg │ │ │ │ ├── calendar3-event.svg │ │ │ │ ├── calendar3-fill.svg │ │ │ │ ├── calendar3-range-fill.svg │ │ │ │ ├── calendar3-range.svg │ │ │ │ ├── calendar3-week-fill.svg │ │ │ │ ├── calendar3-week.svg │ │ │ │ ├── calendar3.svg │ │ │ │ ├── calendar4-event.svg │ │ │ │ ├── calendar4-range.svg │ │ │ │ ├── calendar4-week.svg │ │ │ │ ├── calendar4.svg │ │ │ │ ├── camera-fill.svg │ │ │ │ ├── camera-reels-fill.svg │ │ │ │ ├── camera-reels.svg │ │ │ │ ├── camera-video-fill.svg │ │ │ │ ├── camera-video-off-fill.svg │ │ │ │ ├── camera-video-off.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── camera2.svg │ │ │ │ ├── capslock-fill.svg │ │ │ │ ├── capslock.svg │ │ │ │ ├── capsule-pill.svg │ │ │ │ ├── capsule.svg │ │ │ │ ├── car-front-fill.svg │ │ │ │ ├── car-front.svg │ │ │ │ ├── card-checklist.svg │ │ │ │ ├── card-heading.svg │ │ │ │ ├── card-image.svg │ │ │ │ ├── card-list.svg │ │ │ │ ├── card-text.svg │ │ │ │ ├── caret-down-fill.svg │ │ │ │ ├── caret-down-square-fill.svg │ │ │ │ ├── caret-down-square.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left-fill.svg │ │ │ │ ├── caret-left-square-fill.svg │ │ │ │ ├── caret-left-square.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right-fill.svg │ │ │ │ ├── caret-right-square-fill.svg │ │ │ │ ├── caret-right-square.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-up-fill.svg │ │ │ │ ├── caret-up-square-fill.svg │ │ │ │ ├── caret-up-square.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── cart-check-fill.svg │ │ │ │ ├── cart-check.svg │ │ │ │ ├── cart-dash-fill.svg │ │ │ │ ├── cart-dash.svg │ │ │ │ ├── cart-fill.svg │ │ │ │ ├── cart-plus-fill.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cart-x-fill.svg │ │ │ │ ├── cart-x.svg │ │ │ │ ├── cart.svg │ │ │ │ ├── cart2.svg │ │ │ │ ├── cart3.svg │ │ │ │ ├── cart4.svg │ │ │ │ ├── cash-coin.svg │ │ │ │ ├── cash-stack.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── cassette-fill.svg │ │ │ │ ├── cassette.svg │ │ │ │ ├── cast.svg │ │ │ │ ├── cc-circle-fill.svg │ │ │ │ ├── cc-circle.svg │ │ │ │ ├── cc-square-fill.svg │ │ │ │ ├── cc-square.svg │ │ │ │ ├── chat-dots-fill.svg │ │ │ │ ├── chat-dots.svg │ │ │ │ ├── chat-fill.svg │ │ │ │ ├── chat-heart-fill.svg │ │ │ │ ├── chat-heart.svg │ │ │ │ ├── chat-left-dots-fill.svg │ │ │ │ ├── chat-left-dots.svg │ │ │ │ ├── chat-left-fill.svg │ │ │ │ ├── chat-left-heart-fill.svg │ │ │ │ ├── chat-left-heart.svg │ │ │ │ ├── chat-left-quote-fill.svg │ │ │ │ ├── chat-left-quote.svg │ │ │ │ ├── chat-left-text-fill.svg │ │ │ │ ├── chat-left-text.svg │ │ │ │ ├── chat-left.svg │ │ │ │ ├── chat-quote-fill.svg │ │ │ │ ├── chat-quote.svg │ │ │ │ ├── chat-right-dots-fill.svg │ │ │ │ ├── chat-right-dots.svg │ │ │ │ ├── chat-right-fill.svg │ │ │ │ ├── chat-right-heart-fill.svg │ │ │ │ ├── chat-right-heart.svg │ │ │ │ ├── chat-right-quote-fill.svg │ │ │ │ ├── chat-right-quote.svg │ │ │ │ ├── chat-right-text-fill.svg │ │ │ │ ├── chat-right-text.svg │ │ │ │ ├── chat-right.svg │ │ │ │ ├── chat-square-dots-fill.svg │ │ │ │ ├── chat-square-dots.svg │ │ │ │ ├── chat-square-fill.svg │ │ │ │ ├── chat-square-heart-fill.svg │ │ │ │ ├── chat-square-heart.svg │ │ │ │ ├── chat-square-quote-fill.svg │ │ │ │ ├── chat-square-quote.svg │ │ │ │ ├── chat-square-text-fill.svg │ │ │ │ ├── chat-square-text.svg │ │ │ │ ├── chat-square.svg │ │ │ │ ├── chat-text-fill.svg │ │ │ │ ├── chat-text.svg │ │ │ │ ├── chat.svg │ │ │ │ ├── check-all.svg │ │ │ │ ├── check-circle-fill.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-lg.svg │ │ │ │ ├── check-square-fill.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── check2-all.svg │ │ │ │ ├── check2-circle.svg │ │ │ │ ├── check2-square.svg │ │ │ │ ├── check2.svg │ │ │ │ ├── chevron-bar-contract.svg │ │ │ │ ├── chevron-bar-down.svg │ │ │ │ ├── chevron-bar-expand.svg │ │ │ │ ├── chevron-bar-left.svg │ │ │ │ ├── chevron-bar-right.svg │ │ │ │ ├── chevron-bar-up.svg │ │ │ │ ├── chevron-compact-down.svg │ │ │ │ ├── chevron-compact-left.svg │ │ │ │ ├── chevron-compact-right.svg │ │ │ │ ├── chevron-compact-up.svg │ │ │ │ ├── chevron-contract.svg │ │ │ │ ├── chevron-double-down.svg │ │ │ │ ├── chevron-double-left.svg │ │ │ │ ├── chevron-double-right.svg │ │ │ │ ├── chevron-double-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-expand.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── circle-fill.svg │ │ │ │ ├── circle-half.svg │ │ │ │ ├── circle-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard-check-fill.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-data-fill.svg │ │ │ │ ├── clipboard-data.svg │ │ │ │ ├── clipboard-fill.svg │ │ │ │ ├── clipboard-heart-fill.svg │ │ │ │ ├── clipboard-heart.svg │ │ │ │ ├── clipboard-minus-fill.svg │ │ │ │ ├── clipboard-minus.svg │ │ │ │ ├── clipboard-plus-fill.svg │ │ │ │ ├── clipboard-plus.svg │ │ │ │ ├── clipboard-pulse.svg │ │ │ │ ├── clipboard-x-fill.svg │ │ │ │ ├── clipboard-x.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clipboard2-check-fill.svg │ │ │ │ ├── clipboard2-check.svg │ │ │ │ ├── clipboard2-data-fill.svg │ │ │ │ ├── clipboard2-data.svg │ │ │ │ ├── clipboard2-fill.svg │ │ │ │ ├── clipboard2-heart-fill.svg │ │ │ │ ├── clipboard2-heart.svg │ │ │ │ ├── clipboard2-minus-fill.svg │ │ │ │ ├── clipboard2-minus.svg │ │ │ │ ├── clipboard2-plus-fill.svg │ │ │ │ ├── clipboard2-plus.svg │ │ │ │ ├── clipboard2-pulse-fill.svg │ │ │ │ ├── clipboard2-pulse.svg │ │ │ │ ├── clipboard2-x-fill.svg │ │ │ │ ├── clipboard2-x.svg │ │ │ │ ├── clipboard2.svg │ │ │ │ ├── clock-fill.svg │ │ │ │ ├── clock-history.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── cloud-arrow-down-fill.svg │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ ├── cloud-arrow-up-fill.svg │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ ├── cloud-check-fill.svg │ │ │ │ ├── cloud-check.svg │ │ │ │ ├── cloud-download-fill.svg │ │ │ │ ├── cloud-download.svg │ │ │ │ ├── cloud-drizzle-fill.svg │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ ├── cloud-fill.svg │ │ │ │ ├── cloud-fog-fill.svg │ │ │ │ ├── cloud-fog.svg │ │ │ │ ├── cloud-fog2-fill.svg │ │ │ │ ├── cloud-fog2.svg │ │ │ │ ├── cloud-hail-fill.svg │ │ │ │ ├── cloud-hail.svg │ │ │ │ ├── cloud-haze-fill.svg │ │ │ │ ├── cloud-haze.svg │ │ │ │ ├── cloud-haze2-fill.svg │ │ │ │ ├── cloud-haze2.svg │ │ │ │ ├── cloud-lightning-fill.svg │ │ │ │ ├── cloud-lightning-rain-fill.svg │ │ │ │ ├── cloud-lightning-rain.svg │ │ │ │ ├── cloud-lightning.svg │ │ │ │ ├── cloud-minus-fill.svg │ │ │ │ ├── cloud-minus.svg │ │ │ │ ├── cloud-moon-fill.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-plus-fill.svg │ │ │ │ ├── cloud-plus.svg │ │ │ │ ├── cloud-rain-fill.svg │ │ │ │ ├── cloud-rain-heavy-fill.svg │ │ │ │ ├── cloud-rain-heavy.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-slash-fill.svg │ │ │ │ ├── cloud-slash.svg │ │ │ │ ├── cloud-sleet-fill.svg │ │ │ │ ├── cloud-sleet.svg │ │ │ │ ├── cloud-snow-fill.svg │ │ │ │ ├── cloud-snow.svg │ │ │ │ ├── cloud-sun-fill.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-fill.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── clouds-fill.svg │ │ │ │ ├── clouds.svg │ │ │ │ ├── cloudy-fill.svg │ │ │ │ ├── cloudy.svg │ │ │ │ ├── code-slash.svg │ │ │ │ ├── code-square.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coin.svg │ │ │ │ ├── collection-fill.svg │ │ │ │ ├── collection-play-fill.svg │ │ │ │ ├── collection-play.svg │ │ │ │ ├── collection.svg │ │ │ │ ├── columns-gap.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── command.svg │ │ │ │ ├── compass-fill.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── cone-striped.svg │ │ │ │ ├── cone.svg │ │ │ │ ├── controller.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── cpu-fill.svg │ │ │ │ ├── cpu.svg │ │ │ │ ├── credit-card-2-back-fill.svg │ │ │ │ ├── credit-card-2-back.svg │ │ │ │ ├── credit-card-2-front-fill.svg │ │ │ │ ├── credit-card-2-front.svg │ │ │ │ ├── credit-card-fill.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── crosshair.svg │ │ │ │ ├── crosshair2.svg │ │ │ │ ├── cup-fill.svg │ │ │ │ ├── cup-hot-fill.svg │ │ │ │ ├── cup-hot.svg │ │ │ │ ├── cup-straw.svg │ │ │ │ ├── cup.svg │ │ │ │ ├── currency-bitcoin.svg │ │ │ │ ├── currency-dollar.svg │ │ │ │ ├── currency-euro.svg │ │ │ │ ├── currency-exchange.svg │ │ │ │ ├── currency-pound.svg │ │ │ │ ├── currency-rupee.svg │ │ │ │ ├── currency-yen.svg │ │ │ │ ├── cursor-fill.svg │ │ │ │ ├── cursor-text.svg │ │ │ │ ├── cursor.svg │ │ │ │ ├── dash-circle-dotted.svg │ │ │ │ ├── dash-circle-fill.svg │ │ │ │ ├── dash-circle.svg │ │ │ │ ├── dash-lg.svg │ │ │ │ ├── dash-square-dotted.svg │ │ │ │ ├── dash-square-fill.svg │ │ │ │ ├── dash-square.svg │ │ │ │ ├── dash.svg │ │ │ │ ├── database-add.svg │ │ │ │ ├── database-check.svg │ │ │ │ ├── database-dash.svg │ │ │ │ ├── database-down.svg │ │ │ │ ├── database-exclamation.svg │ │ │ │ ├── database-fill-add.svg │ │ │ │ ├── database-fill-check.svg │ │ │ │ ├── database-fill-dash.svg │ │ │ │ ├── database-fill-down.svg │ │ │ │ ├── database-fill-exclamation.svg │ │ │ │ ├── database-fill-gear.svg │ │ │ │ ├── database-fill-lock.svg │ │ │ │ ├── database-fill-slash.svg │ │ │ │ ├── database-fill-up.svg │ │ │ │ ├── database-fill-x.svg │ │ │ │ ├── database-fill.svg │ │ │ │ ├── database-gear.svg │ │ │ │ ├── database-lock.svg │ │ │ │ ├── database-slash.svg │ │ │ │ ├── database-up.svg │ │ │ │ ├── database-x.svg │ │ │ │ ├── database.svg │ │ │ │ ├── device-hdd-fill.svg │ │ │ │ ├── device-hdd.svg │ │ │ │ ├── device-ssd-fill.svg │ │ │ │ ├── device-ssd.svg │ │ │ │ ├── diagram-2-fill.svg │ │ │ │ ├── diagram-2.svg │ │ │ │ ├── diagram-3-fill.svg │ │ │ │ ├── diagram-3.svg │ │ │ │ ├── diamond-fill.svg │ │ │ │ ├── diamond-half.svg │ │ │ │ ├── diamond.svg │ │ │ │ ├── dice-1-fill.svg │ │ │ │ ├── dice-1.svg │ │ │ │ ├── dice-2-fill.svg │ │ │ │ ├── dice-2.svg │ │ │ │ ├── dice-3-fill.svg │ │ │ │ ├── dice-3.svg │ │ │ │ ├── dice-4-fill.svg │ │ │ │ ├── dice-4.svg │ │ │ │ ├── dice-5-fill.svg │ │ │ │ ├── dice-5.svg │ │ │ │ ├── dice-6-fill.svg │ │ │ │ ├── dice-6.svg │ │ │ │ ├── disc-fill.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── display-fill.svg │ │ │ │ ├── display.svg │ │ │ │ ├── displayport-fill.svg │ │ │ │ ├── displayport.svg │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ ├── distribute-vertical.svg │ │ │ │ ├── door-closed-fill.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open-fill.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot.svg │ │ │ │ ├── download.svg │ │ │ │ ├── dpad-fill.svg │ │ │ │ ├── dpad.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── droplet-fill.svg │ │ │ │ ├── droplet-half.svg │ │ │ │ ├── droplet.svg │ │ │ │ ├── duffle-fill.svg │ │ │ │ ├── duffle.svg │ │ │ │ ├── ear-fill.svg │ │ │ │ ├── ear.svg │ │ │ │ ├── earbuds.svg │ │ │ │ ├── easel-fill.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── easel2-fill.svg │ │ │ │ ├── easel2.svg │ │ │ │ ├── easel3-fill.svg │ │ │ │ ├── easel3.svg │ │ │ │ ├── egg-fill.svg │ │ │ │ ├── egg-fried.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject-fill.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── emoji-angry-fill.svg │ │ │ │ ├── emoji-angry.svg │ │ │ │ ├── emoji-astonished-fill.svg │ │ │ │ ├── emoji-astonished.svg │ │ │ │ ├── emoji-dizzy-fill.svg │ │ │ │ ├── emoji-dizzy.svg │ │ │ │ ├── emoji-expressionless-fill.svg │ │ │ │ ├── emoji-expressionless.svg │ │ │ │ ├── emoji-frown-fill.svg │ │ │ │ ├── emoji-frown.svg │ │ │ │ ├── emoji-grimace-fill.svg │ │ │ │ ├── emoji-grimace.svg │ │ │ │ ├── emoji-grin-fill.svg │ │ │ │ ├── emoji-grin.svg │ │ │ │ ├── emoji-heart-eyes-fill.svg │ │ │ │ ├── emoji-heart-eyes.svg │ │ │ │ ├── emoji-kiss-fill.svg │ │ │ │ ├── emoji-kiss.svg │ │ │ │ ├── emoji-laughing-fill.svg │ │ │ │ ├── emoji-laughing.svg │ │ │ │ ├── emoji-neutral-fill.svg │ │ │ │ ├── emoji-neutral.svg │ │ │ │ ├── emoji-smile-fill.svg │ │ │ │ ├── emoji-smile-upside-down-fill.svg │ │ │ │ ├── emoji-smile-upside-down.svg │ │ │ │ ├── emoji-smile.svg │ │ │ │ ├── emoji-sunglasses-fill.svg │ │ │ │ ├── emoji-sunglasses.svg │ │ │ │ ├── emoji-surprise-fill.svg │ │ │ │ ├── emoji-surprise.svg │ │ │ │ ├── emoji-tear-fill.svg │ │ │ │ ├── emoji-tear.svg │ │ │ │ ├── emoji-wink-fill.svg │ │ │ │ ├── emoji-wink.svg │ │ │ │ ├── envelope-arrow-down-fill.svg │ │ │ │ ├── envelope-arrow-down.svg │ │ │ │ ├── envelope-arrow-up-fill.svg │ │ │ │ ├── envelope-arrow-up.svg │ │ │ │ ├── envelope-at-fill.svg │ │ │ │ ├── envelope-at.svg │ │ │ │ ├── envelope-check-fill.svg │ │ │ │ ├── envelope-check.svg │ │ │ │ ├── envelope-dash-fill.svg │ │ │ │ ├── envelope-dash.svg │ │ │ │ ├── envelope-exclamation-fill.svg │ │ │ │ ├── envelope-exclamation.svg │ │ │ │ ├── envelope-fill.svg │ │ │ │ ├── envelope-heart-fill.svg │ │ │ │ ├── envelope-heart.svg │ │ │ │ ├── envelope-open-fill.svg │ │ │ │ ├── envelope-open-heart-fill.svg │ │ │ │ ├── envelope-open-heart.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-paper-fill.svg │ │ │ │ ├── envelope-paper-heart-fill.svg │ │ │ │ ├── envelope-paper-heart.svg │ │ │ │ ├── envelope-paper.svg │ │ │ │ ├── envelope-plus-fill.svg │ │ │ │ ├── envelope-plus.svg │ │ │ │ ├── envelope-slash-fill.svg │ │ │ │ ├── envelope-slash.svg │ │ │ │ ├── envelope-x-fill.svg │ │ │ │ ├── envelope-x.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eraser-fill.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── escape.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── ev-front-fill.svg │ │ │ │ ├── ev-front.svg │ │ │ │ ├── ev-station-fill.svg │ │ │ │ ├── ev-station.svg │ │ │ │ ├── exclamation-circle-fill.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-diamond-fill.svg │ │ │ │ ├── exclamation-diamond.svg │ │ │ │ ├── exclamation-lg.svg │ │ │ │ ├── exclamation-octagon-fill.svg │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ ├── exclamation-square-fill.svg │ │ │ │ ├── exclamation-square.svg │ │ │ │ ├── exclamation-triangle-fill.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── exclude.svg │ │ │ │ ├── explicit-fill.svg │ │ │ │ ├── explicit.svg │ │ │ │ ├── exposure.svg │ │ │ │ ├── eye-fill.svg │ │ │ │ ├── eye-slash-fill.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── eyedropper.svg │ │ │ │ ├── eyeglasses.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-forward-btn-fill.svg │ │ │ │ ├── fast-forward-btn.svg │ │ │ │ ├── fast-forward-circle-fill.svg │ │ │ │ ├── fast-forward-circle.svg │ │ │ │ ├── fast-forward-fill.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── feather2.svg │ │ │ │ ├── file-arrow-down-fill.svg │ │ │ │ ├── file-arrow-down.svg │ │ │ │ ├── file-arrow-up-fill.svg │ │ │ │ ├── file-arrow-up.svg │ │ │ │ ├── file-bar-graph-fill.svg │ │ │ │ ├── file-bar-graph.svg │ │ │ │ ├── file-binary-fill.svg │ │ │ │ ├── file-binary.svg │ │ │ │ ├── file-break-fill.svg │ │ │ │ ├── file-break.svg │ │ │ │ ├── file-check-fill.svg │ │ │ │ ├── file-check.svg │ │ │ │ ├── file-code-fill.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-diff-fill.svg │ │ │ │ ├── file-diff.svg │ │ │ │ ├── file-earmark-arrow-down-fill.svg │ │ │ │ ├── file-earmark-arrow-down.svg │ │ │ │ ├── file-earmark-arrow-up-fill.svg │ │ │ │ ├── file-earmark-arrow-up.svg │ │ │ │ ├── file-earmark-bar-graph-fill.svg │ │ │ │ ├── file-earmark-bar-graph.svg │ │ │ │ ├── file-earmark-binary-fill.svg │ │ │ │ ├── file-earmark-binary.svg │ │ │ │ ├── file-earmark-break-fill.svg │ │ │ │ ├── file-earmark-break.svg │ │ │ │ ├── file-earmark-check-fill.svg │ │ │ │ ├── file-earmark-check.svg │ │ │ │ ├── file-earmark-code-fill.svg │ │ │ │ ├── file-earmark-code.svg │ │ │ │ ├── file-earmark-diff-fill.svg │ │ │ │ ├── file-earmark-diff.svg │ │ │ │ ├── file-earmark-easel-fill.svg │ │ │ │ ├── file-earmark-easel.svg │ │ │ │ ├── file-earmark-excel-fill.svg │ │ │ │ ├── file-earmark-excel.svg │ │ │ │ ├── file-earmark-fill.svg │ │ │ │ ├── file-earmark-font-fill.svg │ │ │ │ ├── file-earmark-font.svg │ │ │ │ ├── file-earmark-image-fill.svg │ │ │ │ ├── file-earmark-image.svg │ │ │ │ ├── file-earmark-lock-fill.svg │ │ │ │ ├── file-earmark-lock.svg │ │ │ │ ├── file-earmark-lock2-fill.svg │ │ │ │ ├── file-earmark-lock2.svg │ │ │ │ ├── file-earmark-medical-fill.svg │ │ │ │ ├── file-earmark-medical.svg │ │ │ │ ├── file-earmark-minus-fill.svg │ │ │ │ ├── file-earmark-minus.svg │ │ │ │ ├── file-earmark-music-fill.svg │ │ │ │ ├── file-earmark-music.svg │ │ │ │ ├── file-earmark-pdf-fill.svg │ │ │ │ ├── file-earmark-pdf.svg │ │ │ │ ├── file-earmark-person-fill.svg │ │ │ │ ├── file-earmark-person.svg │ │ │ │ ├── file-earmark-play-fill.svg │ │ │ │ ├── file-earmark-play.svg │ │ │ │ ├── file-earmark-plus-fill.svg │ │ │ │ ├── file-earmark-plus.svg │ │ │ │ ├── file-earmark-post-fill.svg │ │ │ │ ├── file-earmark-post.svg │ │ │ │ ├── file-earmark-ppt-fill.svg │ │ │ │ ├── file-earmark-ppt.svg │ │ │ │ ├── file-earmark-richtext-fill.svg │ │ │ │ ├── file-earmark-richtext.svg │ │ │ │ ├── file-earmark-ruled-fill.svg │ │ │ │ ├── file-earmark-ruled.svg │ │ │ │ ├── file-earmark-slides-fill.svg │ │ │ │ ├── file-earmark-slides.svg │ │ │ │ ├── file-earmark-spreadsheet-fill.svg │ │ │ │ ├── file-earmark-spreadsheet.svg │ │ │ │ ├── file-earmark-text-fill.svg │ │ │ │ ├── file-earmark-text.svg │ │ │ │ ├── file-earmark-word-fill.svg │ │ │ │ ├── file-earmark-word.svg │ │ │ │ ├── file-earmark-x-fill.svg │ │ │ │ ├── file-earmark-x.svg │ │ │ │ ├── file-earmark-zip-fill.svg │ │ │ │ ├── file-earmark-zip.svg │ │ │ │ ├── file-earmark.svg │ │ │ │ ├── file-easel-fill.svg │ │ │ │ ├── file-easel.svg │ │ │ │ ├── file-excel-fill.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-fill.svg │ │ │ │ ├── file-font-fill.svg │ │ │ │ ├── file-font.svg │ │ │ │ ├── file-image-fill.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-lock-fill.svg │ │ │ │ ├── file-lock.svg │ │ │ │ ├── file-lock2-fill.svg │ │ │ │ ├── file-lock2.svg │ │ │ │ ├── file-medical-fill.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-minus-fill.svg │ │ │ │ ├── file-minus.svg │ │ │ │ ├── file-music-fill.svg │ │ │ │ ├── file-music.svg │ │ │ │ ├── file-pdf-fill.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-person-fill.svg │ │ │ │ ├── file-person.svg │ │ │ │ ├── file-play-fill.svg │ │ │ │ ├── file-play.svg │ │ │ │ ├── file-plus-fill.svg │ │ │ │ ├── file-plus.svg │ │ │ │ ├── file-post-fill.svg │ │ │ │ ├── file-post.svg │ │ │ │ ├── file-ppt-fill.svg │ │ │ │ ├── file-ppt.svg │ │ │ │ ├── file-richtext-fill.svg │ │ │ │ ├── file-richtext.svg │ │ │ │ ├── file-ruled-fill.svg │ │ │ │ ├── file-ruled.svg │ │ │ │ ├── file-slides-fill.svg │ │ │ │ ├── file-slides.svg │ │ │ │ ├── file-spreadsheet-fill.svg │ │ │ │ ├── file-spreadsheet.svg │ │ │ │ ├── file-text-fill.svg │ │ │ │ ├── file-text.svg │ │ │ │ ├── file-word-fill.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-x-fill.svg │ │ │ │ ├── file-x.svg │ │ │ │ ├── file-zip-fill.svg │ │ │ │ ├── file-zip.svg │ │ │ │ ├── file.svg │ │ │ │ ├── files-alt.svg │ │ │ │ ├── files.svg │ │ │ │ ├── filetype-aac.svg │ │ │ │ ├── filetype-ai.svg │ │ │ │ ├── filetype-bmp.svg │ │ │ │ ├── filetype-cs.svg │ │ │ │ ├── filetype-css.svg │ │ │ │ ├── filetype-csv.svg │ │ │ │ ├── filetype-doc.svg │ │ │ │ ├── filetype-docx.svg │ │ │ │ ├── filetype-exe.svg │ │ │ │ ├── filetype-gif.svg │ │ │ │ ├── filetype-heic.svg │ │ │ │ ├── filetype-html.svg │ │ │ │ ├── filetype-java.svg │ │ │ │ ├── filetype-jpg.svg │ │ │ │ ├── filetype-js.svg │ │ │ │ ├── filetype-json.svg │ │ │ │ ├── filetype-jsx.svg │ │ │ │ ├── filetype-key.svg │ │ │ │ ├── filetype-m4p.svg │ │ │ │ ├── filetype-md.svg │ │ │ │ ├── filetype-mdx.svg │ │ │ │ ├── filetype-mov.svg │ │ │ │ ├── filetype-mp3.svg │ │ │ │ ├── filetype-mp4.svg │ │ │ │ ├── filetype-otf.svg │ │ │ │ ├── filetype-pdf.svg │ │ │ │ ├── filetype-php.svg │ │ │ │ ├── filetype-png.svg │ │ │ │ ├── filetype-ppt.svg │ │ │ │ ├── filetype-pptx.svg │ │ │ │ ├── filetype-psd.svg │ │ │ │ ├── filetype-py.svg │ │ │ │ ├── filetype-raw.svg │ │ │ │ ├── filetype-rb.svg │ │ │ │ ├── filetype-sass.svg │ │ │ │ ├── filetype-scss.svg │ │ │ │ ├── filetype-sh.svg │ │ │ │ ├── filetype-sql.svg │ │ │ │ ├── filetype-svg.svg │ │ │ │ ├── filetype-tiff.svg │ │ │ │ ├── filetype-tsx.svg │ │ │ │ ├── filetype-ttf.svg │ │ │ │ ├── filetype-txt.svg │ │ │ │ ├── filetype-wav.svg │ │ │ │ ├── filetype-woff.svg │ │ │ │ ├── filetype-xls.svg │ │ │ │ ├── filetype-xlsx.svg │ │ │ │ ├── filetype-xml.svg │ │ │ │ ├── filetype-yml.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter-circle-fill.svg │ │ │ │ ├── filter-circle.svg │ │ │ │ ├── filter-left.svg │ │ │ │ ├── filter-right.svg │ │ │ │ ├── filter-square-fill.svg │ │ │ │ ├── filter-square.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── flag-fill.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── floppy-fill.svg │ │ │ │ ├── floppy.svg │ │ │ │ ├── floppy2-fill.svg │ │ │ │ ├── floppy2.svg │ │ │ │ ├── flower1.svg │ │ │ │ ├── flower2.svg │ │ │ │ ├── flower3.svg │ │ │ │ ├── folder-check.svg │ │ │ │ ├── folder-fill.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder-symlink-fill.svg │ │ │ │ ├── folder-symlink.svg │ │ │ │ ├── folder-x.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── folder2-open.svg │ │ │ │ ├── folder2.svg │ │ │ │ ├── fonts.svg │ │ │ │ ├── forward-fill.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── front.svg │ │ │ │ ├── fuel-pump-diesel-fill.svg │ │ │ │ ├── fuel-pump-diesel.svg │ │ │ │ ├── fuel-pump-fill.svg │ │ │ │ ├── fuel-pump.svg │ │ │ │ ├── fullscreen-exit.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── funnel-fill.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── gear-fill.svg │ │ │ │ ├── gear-wide-connected.svg │ │ │ │ ├── gear-wide.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── gender-ambiguous.svg │ │ │ │ ├── gender-female.svg │ │ │ │ ├── gender-male.svg │ │ │ │ ├── gender-neuter.svg │ │ │ │ ├── gender-trans.svg │ │ │ │ ├── geo-alt-fill.svg │ │ │ │ ├── geo-alt.svg │ │ │ │ ├── geo-fill.svg │ │ │ │ ├── geo.svg │ │ │ │ ├── gift-fill.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia-australia.svg │ │ │ │ ├── globe-central-south-asia.svg │ │ │ │ ├── globe-europe-africa.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── globe2.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gpu-card.svg │ │ │ │ ├── graph-down-arrow.svg │ │ │ │ ├── graph-down.svg │ │ │ │ ├── graph-up-arrow.svg │ │ │ │ ├── graph-up.svg │ │ │ │ ├── grid-1x2-fill.svg │ │ │ │ ├── grid-1x2.svg │ │ │ │ ├── grid-3x2-gap-fill.svg │ │ │ │ ├── grid-3x2-gap.svg │ │ │ │ ├── grid-3x2.svg │ │ │ │ ├── grid-3x3-gap-fill.svg │ │ │ │ ├── grid-3x3-gap.svg │ │ │ │ ├── grid-3x3.svg │ │ │ │ ├── grid-fill.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── h-circle-fill.svg │ │ │ │ ├── h-circle.svg │ │ │ │ ├── h-square-fill.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hand-index-fill.svg │ │ │ │ ├── hand-index-thumb-fill.svg │ │ │ │ ├── hand-index-thumb.svg │ │ │ │ ├── hand-index.svg │ │ │ │ ├── hand-thumbs-down-fill.svg │ │ │ │ ├── hand-thumbs-down.svg │ │ │ │ ├── hand-thumbs-up-fill.svg │ │ │ │ ├── hand-thumbs-up.svg │ │ │ │ ├── handbag-fill.svg │ │ │ │ ├── handbag.svg │ │ │ │ ├── hash.svg │ │ │ │ ├── hdd-fill.svg │ │ │ │ ├── hdd-network-fill.svg │ │ │ │ ├── hdd-network.svg │ │ │ │ ├── hdd-rack-fill.svg │ │ │ │ ├── hdd-rack.svg │ │ │ │ ├── hdd-stack-fill.svg │ │ │ │ ├── hdd-stack.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── hdmi-fill.svg │ │ │ │ ├── hdmi.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset-vr.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-arrow.svg │ │ │ │ ├── heart-fill.svg │ │ │ │ ├── heart-half.svg │ │ │ │ ├── heart-pulse-fill.svg │ │ │ │ ├── heart-pulse.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbreak-fill.svg │ │ │ │ ├── heartbreak.svg │ │ │ │ ├── hearts.svg │ │ │ │ ├── heptagon-fill.svg │ │ │ │ ├── heptagon-half.svg │ │ │ │ ├── heptagon.svg │ │ │ │ ├── hexagon-fill.svg │ │ │ │ ├── hexagon-half.svg │ │ │ │ ├── hexagon.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── highlights.svg │ │ │ │ ├── hospital-fill.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass-bottom.svg │ │ │ │ ├── hourglass-split.svg │ │ │ │ ├── hourglass-top.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-add-fill.svg │ │ │ │ ├── house-add.svg │ │ │ │ ├── house-check-fill.svg │ │ │ │ ├── house-check.svg │ │ │ │ ├── house-dash-fill.svg │ │ │ │ ├── house-dash.svg │ │ │ │ ├── house-door-fill.svg │ │ │ │ ├── house-door.svg │ │ │ │ ├── house-down-fill.svg │ │ │ │ ├── house-down.svg │ │ │ │ ├── house-exclamation-fill.svg │ │ │ │ ├── house-exclamation.svg │ │ │ │ ├── house-fill.svg │ │ │ │ ├── house-gear-fill.svg │ │ │ │ ├── house-gear.svg │ │ │ │ ├── house-heart-fill.svg │ │ │ │ ├── house-heart.svg │ │ │ │ ├── house-lock-fill.svg │ │ │ │ ├── house-lock.svg │ │ │ │ ├── house-slash-fill.svg │ │ │ │ ├── house-slash.svg │ │ │ │ ├── house-up-fill.svg │ │ │ │ ├── house-up.svg │ │ │ │ ├── house-x-fill.svg │ │ │ │ ├── house-x.svg │ │ │ │ ├── house.svg │ │ │ │ ├── houses-fill.svg │ │ │ │ ├── houses.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── hurricane.svg │ │ │ │ ├── hypnotize.svg │ │ │ │ ├── image-alt.svg │ │ │ │ ├── image-fill.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox-fill.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── inboxes-fill.svg │ │ │ │ ├── inboxes.svg │ │ │ │ ├── incognito.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle-fill.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info-lg.svg │ │ │ │ ├── info-square-fill.svg │ │ │ │ ├── info-square.svg │ │ │ │ ├── info.svg │ │ │ │ ├── input-cursor-text.svg │ │ │ │ ├── input-cursor.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intersect.svg │ │ │ │ ├── journal-album.svg │ │ │ │ ├── journal-arrow-down.svg │ │ │ │ ├── journal-arrow-up.svg │ │ │ │ ├── journal-bookmark-fill.svg │ │ │ │ ├── journal-bookmark.svg │ │ │ │ ├── journal-check.svg │ │ │ │ ├── journal-code.svg │ │ │ │ ├── journal-medical.svg │ │ │ │ ├── journal-minus.svg │ │ │ │ ├── journal-plus.svg │ │ │ │ ├── journal-richtext.svg │ │ │ │ ├── journal-text.svg │ │ │ │ ├── journal-x.svg │ │ │ │ ├── journal.svg │ │ │ │ ├── journals.svg │ │ │ │ ├── joystick.svg │ │ │ │ ├── justify-left.svg │ │ │ │ ├── justify-right.svg │ │ │ │ ├── justify.svg │ │ │ │ ├── kanban-fill.svg │ │ │ │ ├── kanban.svg │ │ │ │ ├── key-fill.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard-fill.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── ladder.svg │ │ │ │ ├── lamp-fill.svg │ │ │ │ ├── lamp.svg │ │ │ │ ├── laptop-fill.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── layer-backward.svg │ │ │ │ ├── layer-forward.svg │ │ │ │ ├── layers-fill.svg │ │ │ │ ├── layers-half.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── layout-sidebar-inset-reverse.svg │ │ │ │ ├── layout-sidebar-inset.svg │ │ │ │ ├── layout-sidebar-reverse.svg │ │ │ │ ├── layout-sidebar.svg │ │ │ │ ├── layout-split.svg │ │ │ │ ├── layout-text-sidebar-reverse.svg │ │ │ │ ├── layout-text-sidebar.svg │ │ │ │ ├── layout-text-window-reverse.svg │ │ │ │ ├── layout-text-window.svg │ │ │ │ ├── layout-three-columns.svg │ │ │ │ ├── layout-wtf.svg │ │ │ │ ├── life-preserver.svg │ │ │ │ ├── lightbulb-fill.svg │ │ │ │ ├── lightbulb-off-fill.svg │ │ │ │ ├── lightbulb-off.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── lightning-charge-fill.svg │ │ │ │ ├── lightning-charge.svg │ │ │ │ ├── lightning-fill.svg │ │ │ │ ├── lightning.svg │ │ │ │ ├── line.svg │ │ │ │ ├── link-45deg.svg │ │ │ │ ├── link.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── list-check.svg │ │ │ │ ├── list-columns-reverse.svg │ │ │ │ ├── list-columns.svg │ │ │ │ ├── list-nested.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-stars.svg │ │ │ │ ├── list-task.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── lock-fill.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── luggage-fill.svg │ │ │ │ ├── luggage.svg │ │ │ │ ├── lungs-fill.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet-fill.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mailbox-flag.svg │ │ │ │ ├── mailbox.svg │ │ │ │ ├── mailbox2-flag.svg │ │ │ │ ├── mailbox2.svg │ │ │ │ ├── map-fill.svg │ │ │ │ ├── map.svg │ │ │ │ ├── markdown-fill.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── marker-tip.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── megaphone-fill.svg │ │ │ │ ├── megaphone.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menu-app-fill.svg │ │ │ │ ├── menu-app.svg │ │ │ │ ├── menu-button-fill.svg │ │ │ │ ├── menu-button-wide-fill.svg │ │ │ │ ├── menu-button-wide.svg │ │ │ │ ├── menu-button.svg │ │ │ │ ├── menu-down.svg │ │ │ │ ├── menu-up.svg │ │ │ │ ├── messenger.svg │ │ │ │ ├── meta.svg │ │ │ │ ├── mic-fill.svg │ │ │ │ ├── mic-mute-fill.svg │ │ │ │ ├── mic-mute.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── microsoft-teams.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── minecart-loaded.svg │ │ │ │ ├── minecart.svg │ │ │ │ ├── modem-fill.svg │ │ │ │ ├── modem.svg │ │ │ │ ├── moisture.svg │ │ │ │ ├── moon-fill.svg │ │ │ │ ├── moon-stars-fill.svg │ │ │ │ ├── moon-stars.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortarboard-fill.svg │ │ │ │ ├── mortarboard.svg │ │ │ │ ├── motherboard-fill.svg │ │ │ │ ├── motherboard.svg │ │ │ │ ├── mouse-fill.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mouse2-fill.svg │ │ │ │ ├── mouse2.svg │ │ │ │ ├── mouse3-fill.svg │ │ │ │ ├── mouse3.svg │ │ │ │ ├── music-note-beamed.svg │ │ │ │ ├── music-note-list.svg │ │ │ │ ├── music-note.svg │ │ │ │ ├── music-player-fill.svg │ │ │ │ ├── music-player.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── nintendo-switch.svg │ │ │ │ ├── node-minus-fill.svg │ │ │ │ ├── node-minus.svg │ │ │ │ ├── node-plus-fill.svg │ │ │ │ ├── node-plus.svg │ │ │ │ ├── noise-reduction.svg │ │ │ │ ├── nut-fill.svg │ │ │ │ ├── nut.svg │ │ │ │ ├── nvidia.svg │ │ │ │ ├── nvme-fill.svg │ │ │ │ ├── nvme.svg │ │ │ │ ├── octagon-fill.svg │ │ │ │ ├── octagon-half.svg │ │ │ │ ├── octagon.svg │ │ │ │ ├── opencollective.svg │ │ │ │ ├── optical-audio-fill.svg │ │ │ │ ├── optical-audio.svg │ │ │ │ ├── option.svg │ │ │ │ ├── outlet.svg │ │ │ │ ├── p-circle-fill.svg │ │ │ │ ├── p-circle.svg │ │ │ │ ├── p-square-fill.svg │ │ │ │ ├── p-square.svg │ │ │ │ ├── paint-bucket.svg │ │ │ │ ├── palette-fill.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── palette2.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── pass-fill.svg │ │ │ │ ├── pass.svg │ │ │ │ ├── passport-fill.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── patch-check-fill.svg │ │ │ │ ├── patch-check.svg │ │ │ │ ├── patch-exclamation-fill.svg │ │ │ │ ├── patch-exclamation.svg │ │ │ │ ├── patch-minus-fill.svg │ │ │ │ ├── patch-minus.svg │ │ │ │ ├── patch-plus-fill.svg │ │ │ │ ├── patch-plus.svg │ │ │ │ ├── patch-question-fill.svg │ │ │ │ ├── patch-question.svg │ │ │ │ ├── pause-btn-fill.svg │ │ │ │ ├── pause-btn.svg │ │ │ │ ├── pause-circle-fill.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause-fill.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── pc-display-horizontal.svg │ │ │ │ ├── pc-display.svg │ │ │ │ ├── pc-horizontal.svg │ │ │ │ ├── pc.svg │ │ │ │ ├── pci-card-network.svg │ │ │ │ ├── pci-card-sound.svg │ │ │ │ ├── pci-card.svg │ │ │ │ ├── peace-fill.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-fill.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-fill.svg │ │ │ │ ├── pencil-square.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── pentagon-fill.svg │ │ │ │ ├── pentagon-half.svg │ │ │ │ ├── pentagon.svg │ │ │ │ ├── people-fill.svg │ │ │ │ ├── people.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-arms-up.svg │ │ │ │ ├── person-badge-fill.svg │ │ │ │ ├── person-badge.svg │ │ │ │ ├── person-bounding-box.svg │ │ │ │ ├── person-check-fill.svg │ │ │ │ ├── person-check.svg │ │ │ │ ├── person-circle.svg │ │ │ │ ├── person-dash-fill.svg │ │ │ │ ├── person-dash.svg │ │ │ │ ├── person-down.svg │ │ │ │ ├── person-exclamation.svg │ │ │ │ ├── person-fill-add.svg │ │ │ │ ├── person-fill-check.svg │ │ │ │ ├── person-fill-dash.svg │ │ │ │ ├── person-fill-down.svg │ │ │ │ ├── person-fill-exclamation.svg │ │ │ │ ├── person-fill-gear.svg │ │ │ │ ├── person-fill-lock.svg │ │ │ │ ├── person-fill-slash.svg │ │ │ │ ├── person-fill-up.svg │ │ │ │ ├── person-fill-x.svg │ │ │ │ ├── person-fill.svg │ │ │ │ ├── person-gear.svg │ │ │ │ ├── person-heart.svg │ │ │ │ ├── person-hearts.svg │ │ │ │ ├── person-lines-fill.svg │ │ │ │ ├── person-lock.svg │ │ │ │ ├── person-plus-fill.svg │ │ │ │ ├── person-plus.svg │ │ │ │ ├── person-raised-hand.svg │ │ │ │ ├── person-rolodex.svg │ │ │ │ ├── person-slash.svg │ │ │ │ ├── person-square.svg │ │ │ │ ├── person-standing-dress.svg │ │ │ │ ├── person-standing.svg │ │ │ │ ├── person-up.svg │ │ │ │ ├── person-vcard-fill.svg │ │ │ │ ├── person-vcard.svg │ │ │ │ ├── person-video.svg │ │ │ │ ├── person-video2.svg │ │ │ │ ├── person-video3.svg │ │ │ │ ├── person-walking.svg │ │ │ │ ├── person-wheelchair.svg │ │ │ │ ├── person-workspace.svg │ │ │ │ ├── person-x-fill.svg │ │ │ │ ├── person-x.svg │ │ │ │ ├── person.svg │ │ │ │ ├── phone-fill.svg │ │ │ │ ├── phone-flip.svg │ │ │ │ ├── phone-landscape-fill.svg │ │ │ │ ├── phone-landscape.svg │ │ │ │ ├── phone-vibrate-fill.svg │ │ │ │ ├── phone-vibrate.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── pie-chart-fill.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── piggy-bank-fill.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pin-angle-fill.svg │ │ │ │ ├── pin-angle.svg │ │ │ │ ├── pin-fill.svg │ │ │ │ ├── pin-map-fill.svg │ │ │ │ ├── pin-map.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── pip-fill.svg │ │ │ │ ├── pip.svg │ │ │ │ ├── play-btn-fill.svg │ │ │ │ ├── play-btn.svg │ │ │ │ ├── play-circle-fill.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play-fill.svg │ │ │ │ ├── play.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── plug-fill.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plugin.svg │ │ │ │ ├── plus-circle-dotted.svg │ │ │ │ ├── plus-circle-fill.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-lg.svg │ │ │ │ ├── plus-slash-minus.svg │ │ │ │ ├── plus-square-dotted.svg │ │ │ │ ├── plus-square-fill.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── postage-fill.svg │ │ │ │ ├── postage-heart-fill.svg │ │ │ │ ├── postage-heart.svg │ │ │ │ ├── postage.svg │ │ │ │ ├── postcard-fill.svg │ │ │ │ ├── postcard-heart-fill.svg │ │ │ │ ├── postcard-heart.svg │ │ │ │ ├── postcard.svg │ │ │ │ ├── power.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── prescription2.svg │ │ │ │ ├── printer-fill.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── projector-fill.svg │ │ │ │ ├── projector.svg │ │ │ │ ├── puzzle-fill.svg │ │ │ │ ├── puzzle.svg │ │ │ │ ├── qr-code-scan.svg │ │ │ │ ├── qr-code.svg │ │ │ │ ├── question-circle-fill.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question-diamond-fill.svg │ │ │ │ ├── question-diamond.svg │ │ │ │ ├── question-lg.svg │ │ │ │ ├── question-octagon-fill.svg │ │ │ │ ├── question-octagon.svg │ │ │ │ ├── question-square-fill.svg │ │ │ │ ├── question-square.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── quote.svg │ │ │ │ ├── r-circle-fill.svg │ │ │ │ ├── r-circle.svg │ │ │ │ ├── r-square-fill.svg │ │ │ │ ├── r-square.svg │ │ │ │ ├── radar.svg │ │ │ │ ├── radioactive.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── receipt-cutoff.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── reception-0.svg │ │ │ │ ├── reception-1.svg │ │ │ │ ├── reception-2.svg │ │ │ │ ├── reception-3.svg │ │ │ │ ├── reception-4.svg │ │ │ │ ├── record-btn-fill.svg │ │ │ │ ├── record-btn.svg │ │ │ │ ├── record-circle-fill.svg │ │ │ │ ├── record-circle.svg │ │ │ │ ├── record-fill.svg │ │ │ │ ├── record.svg │ │ │ │ ├── record2-fill.svg │ │ │ │ ├── record2.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── regex.svg │ │ │ │ ├── repeat-1.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── reply-all-fill.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply-fill.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── rewind-btn-fill.svg │ │ │ │ ├── rewind-btn.svg │ │ │ │ ├── rewind-circle-fill.svg │ │ │ │ ├── rewind-circle.svg │ │ │ │ ├── rewind-fill.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket-fill.svg │ │ │ │ ├── rocket-takeoff-fill.svg │ │ │ │ ├── rocket-takeoff.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── router-fill.svg │ │ │ │ ├── router.svg │ │ │ │ ├── rss-fill.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── rulers.svg │ │ │ │ ├── safe-fill.svg │ │ │ │ ├── safe.svg │ │ │ │ ├── safe2-fill.svg │ │ │ │ ├── safe2.svg │ │ │ │ ├── save-fill.svg │ │ │ │ ├── save.svg │ │ │ │ ├── save2-fill.svg │ │ │ │ ├── save2.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── scooter.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── sd-card-fill.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-heart-fill.svg │ │ │ │ ├── search-heart.svg │ │ │ │ ├── search.svg │ │ │ │ ├── segmented-nav.svg │ │ │ │ ├── send-arrow-down-fill.svg │ │ │ │ ├── send-arrow-down.svg │ │ │ │ ├── send-arrow-up-fill.svg │ │ │ │ ├── send-arrow-up.svg │ │ │ │ ├── send-check-fill.svg │ │ │ │ ├── send-check.svg │ │ │ │ ├── send-dash-fill.svg │ │ │ │ ├── send-dash.svg │ │ │ │ ├── send-exclamation-fill.svg │ │ │ │ ├── send-exclamation.svg │ │ │ │ ├── send-fill.svg │ │ │ │ ├── send-plus-fill.svg │ │ │ │ ├── send-plus.svg │ │ │ │ ├── send-slash-fill.svg │ │ │ │ ├── send-slash.svg │ │ │ │ ├── send-x-fill.svg │ │ │ │ ├── send-x.svg │ │ │ │ ├── send.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shadows.svg │ │ │ │ ├── share-fill.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-check.svg │ │ │ │ ├── shield-exclamation.svg │ │ │ │ ├── shield-fill-check.svg │ │ │ │ ├── shield-fill-exclamation.svg │ │ │ │ ├── shield-fill-minus.svg │ │ │ │ ├── shield-fill-plus.svg │ │ │ │ ├── shield-fill-x.svg │ │ │ │ ├── shield-fill.svg │ │ │ │ ├── shield-lock-fill.svg │ │ │ │ ├── shield-lock.svg │ │ │ │ ├── shield-minus.svg │ │ │ │ ├── shield-plus.svg │ │ │ │ ├── shield-shaded.svg │ │ │ │ ├── shield-slash-fill.svg │ │ │ │ ├── shield-slash.svg │ │ │ │ ├── shield-x.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── shift-fill.svg │ │ │ │ ├── shift.svg │ │ │ │ ├── shop-window.svg │ │ │ │ ├── shop.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── sign-dead-end-fill.svg │ │ │ │ ├── sign-dead-end.svg │ │ │ │ ├── sign-do-not-enter-fill.svg │ │ │ │ ├── sign-do-not-enter.svg │ │ │ │ ├── sign-intersection-fill.svg │ │ │ │ ├── sign-intersection-side-fill.svg │ │ │ │ ├── sign-intersection-side.svg │ │ │ │ ├── sign-intersection-t-fill.svg │ │ │ │ ├── sign-intersection-t.svg │ │ │ │ ├── sign-intersection-y-fill.svg │ │ │ │ ├── sign-intersection-y.svg │ │ │ │ ├── sign-intersection.svg │ │ │ │ ├── sign-merge-left-fill.svg │ │ │ │ ├── sign-merge-left.svg │ │ │ │ ├── sign-merge-right-fill.svg │ │ │ │ ├── sign-merge-right.svg │ │ │ │ ├── sign-no-left-turn-fill.svg │ │ │ │ ├── sign-no-left-turn.svg │ │ │ │ ├── sign-no-parking-fill.svg │ │ │ │ ├── sign-no-parking.svg │ │ │ │ ├── sign-no-right-turn-fill.svg │ │ │ │ ├── sign-no-right-turn.svg │ │ │ │ ├── sign-railroad-fill.svg │ │ │ │ ├── sign-railroad.svg │ │ │ │ ├── sign-stop-fill.svg │ │ │ │ ├── sign-stop-lights-fill.svg │ │ │ │ ├── sign-stop-lights.svg │ │ │ │ ├── sign-stop.svg │ │ │ │ ├── sign-turn-left-fill.svg │ │ │ │ ├── sign-turn-left.svg │ │ │ │ ├── sign-turn-right-fill.svg │ │ │ │ ├── sign-turn-right.svg │ │ │ │ ├── sign-turn-slight-left-fill.svg │ │ │ │ ├── sign-turn-slight-left.svg │ │ │ │ ├── sign-turn-slight-right-fill.svg │ │ │ │ ├── sign-turn-slight-right.svg │ │ │ │ ├── sign-yield-fill.svg │ │ │ │ ├── sign-yield.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signpost-2-fill.svg │ │ │ │ ├── signpost-2.svg │ │ │ │ ├── signpost-fill.svg │ │ │ │ ├── signpost-split-fill.svg │ │ │ │ ├── signpost-split.svg │ │ │ │ ├── signpost.svg │ │ │ │ ├── sim-fill.svg │ │ │ │ ├── sim-slash-fill.svg │ │ │ │ ├── sim-slash.svg │ │ │ │ ├── sim.svg │ │ │ │ ├── sina-weibo.svg │ │ │ │ ├── skip-backward-btn-fill.svg │ │ │ │ ├── skip-backward-btn.svg │ │ │ │ ├── skip-backward-circle-fill.svg │ │ │ │ ├── skip-backward-circle.svg │ │ │ │ ├── skip-backward-fill.svg │ │ │ │ ├── skip-backward.svg │ │ │ │ ├── skip-end-btn-fill.svg │ │ │ │ ├── skip-end-btn.svg │ │ │ │ ├── skip-end-circle-fill.svg │ │ │ │ ├── skip-end-circle.svg │ │ │ │ ├── skip-end-fill.svg │ │ │ │ ├── skip-end.svg │ │ │ │ ├── skip-forward-btn-fill.svg │ │ │ │ ├── skip-forward-btn.svg │ │ │ │ ├── skip-forward-circle-fill.svg │ │ │ │ ├── skip-forward-circle.svg │ │ │ │ ├── skip-forward-fill.svg │ │ │ │ ├── skip-forward.svg │ │ │ │ ├── skip-start-btn-fill.svg │ │ │ │ ├── skip-start-btn.svg │ │ │ │ ├── skip-start-circle-fill.svg │ │ │ │ ├── skip-start-circle.svg │ │ │ │ ├── skip-start-fill.svg │ │ │ │ ├── skip-start.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slash-circle-fill.svg │ │ │ │ ├── slash-circle.svg │ │ │ │ ├── slash-lg.svg │ │ │ │ ├── slash-square-fill.svg │ │ │ │ ├── slash-square.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sliders.svg │ │ │ │ ├── sliders2-vertical.svg │ │ │ │ ├── sliders2.svg │ │ │ │ ├── smartwatch.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── snow.svg │ │ │ │ ├── snow2.svg │ │ │ │ ├── snow3.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-down-alt.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up-alt.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── soundwave.svg │ │ │ │ ├── sourceforge.svg │ │ │ │ ├── speaker-fill.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── speedometer2.svg │ │ │ │ ├── spellcheck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── square-fill.svg │ │ │ │ ├── square-half.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stack.svg │ │ │ │ ├── star-fill.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── stickies-fill.svg │ │ │ │ ├── stickies.svg │ │ │ │ ├── sticky-fill.svg │ │ │ │ ├── sticky.svg │ │ │ │ ├── stop-btn-fill.svg │ │ │ │ ├── stop-btn.svg │ │ │ │ ├── stop-circle-fill.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop-fill.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stoplights-fill.svg │ │ │ │ ├── stoplights.svg │ │ │ │ ├── stopwatch-fill.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── substack.svg │ │ │ │ ├── subtract.svg │ │ │ │ ├── suit-club-fill.svg │ │ │ │ ├── suit-club.svg │ │ │ │ ├── suit-diamond-fill.svg │ │ │ │ ├── suit-diamond.svg │ │ │ │ ├── suit-heart-fill.svg │ │ │ │ ├── suit-heart.svg │ │ │ │ ├── suit-spade-fill.svg │ │ │ │ ├── suit-spade.svg │ │ │ │ ├── suitcase-fill.svg │ │ │ │ ├── suitcase-lg-fill.svg │ │ │ │ ├── suitcase-lg.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── suitcase2-fill.svg │ │ │ │ ├── suitcase2.svg │ │ │ │ ├── sun-fill.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── sunglasses.svg │ │ │ │ ├── sunrise-fill.svg │ │ │ │ ├── sunrise.svg │ │ │ │ ├── sunset-fill.svg │ │ │ │ ├── sunset.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── symmetry-horizontal.svg │ │ │ │ ├── symmetry-vertical.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-fill.svg │ │ │ │ ├── tablet-landscape-fill.svg │ │ │ │ ├── tablet-landscape.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tag-fill.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags-fill.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── taxi-front-fill.svg │ │ │ │ ├── taxi-front.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── telephone-fill.svg │ │ │ │ ├── telephone-forward-fill.svg │ │ │ │ ├── telephone-forward.svg │ │ │ │ ├── telephone-inbound-fill.svg │ │ │ │ ├── telephone-inbound.svg │ │ │ │ ├── telephone-minus-fill.svg │ │ │ │ ├── telephone-minus.svg │ │ │ │ ├── telephone-outbound-fill.svg │ │ │ │ ├── telephone-outbound.svg │ │ │ │ ├── telephone-plus-fill.svg │ │ │ │ ├── telephone-plus.svg │ │ │ │ ├── telephone-x-fill.svg │ │ │ │ ├── telephone-x.svg │ │ │ │ ├── telephone.svg │ │ │ │ ├── tencent-qq.svg │ │ │ │ ├── terminal-dash.svg │ │ │ │ ├── terminal-fill.svg │ │ │ │ ├── terminal-plus.svg │ │ │ │ ├── terminal-split.svg │ │ │ │ ├── terminal-x.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-center.svg │ │ │ │ ├── text-indent-left.svg │ │ │ │ ├── text-indent-right.svg │ │ │ │ ├── text-left.svg │ │ │ │ ├── text-paragraph.svg │ │ │ │ ├── text-right.svg │ │ │ │ ├── text-wrap.svg │ │ │ │ ├── textarea-resize.svg │ │ │ │ ├── textarea-t.svg │ │ │ │ ├── textarea.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-high.svg │ │ │ │ ├── thermometer-low.svg │ │ │ │ ├── thermometer-snow.svg │ │ │ │ ├── thermometer-sun.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── threads-fill.svg │ │ │ │ ├── threads.svg │ │ │ │ ├── three-dots-vertical.svg │ │ │ │ ├── three-dots.svg │ │ │ │ ├── thunderbolt-fill.svg │ │ │ │ ├── thunderbolt.svg │ │ │ │ ├── ticket-detailed-fill.svg │ │ │ │ ├── ticket-detailed.svg │ │ │ │ ├── ticket-fill.svg │ │ │ │ ├── ticket-perforated-fill.svg │ │ │ │ ├── ticket-perforated.svg │ │ │ │ ├── ticket.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toggle2-off.svg │ │ │ │ ├── toggle2-on.svg │ │ │ │ ├── toggles.svg │ │ │ │ ├── toggles2.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tornado.svg │ │ │ │ ├── train-freight-front-fill.svg │ │ │ │ ├── train-freight-front.svg │ │ │ │ ├── train-front-fill.svg │ │ │ │ ├── train-front.svg │ │ │ │ ├── train-lightrail-front-fill.svg │ │ │ │ ├── train-lightrail-front.svg │ │ │ │ ├── translate.svg │ │ │ │ ├── transparency.svg │ │ │ │ ├── trash-fill.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trash2-fill.svg │ │ │ │ ├── trash2.svg │ │ │ │ ├── trash3-fill.svg │ │ │ │ ├── trash3.svg │ │ │ │ ├── tree-fill.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── triangle-fill.svg │ │ │ │ ├── triangle-half.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── trophy-fill.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tropical-storm.svg │ │ │ │ ├── truck-flatbed.svg │ │ │ │ ├── truck-front-fill.svg │ │ │ │ ├── truck-front.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tsunami.svg │ │ │ │ ├── tv-fill.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-x.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── type-bold.svg │ │ │ │ ├── type-h1.svg │ │ │ │ ├── type-h2.svg │ │ │ │ ├── type-h3.svg │ │ │ │ ├── type-h4.svg │ │ │ │ ├── type-h5.svg │ │ │ │ ├── type-h6.svg │ │ │ │ ├── type-italic.svg │ │ │ │ ├── type-strikethrough.svg │ │ │ │ ├── type-underline.svg │ │ │ │ ├── type.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── ui-checks-grid.svg │ │ │ │ ├── ui-checks.svg │ │ │ │ ├── ui-radios-grid.svg │ │ │ │ ├── ui-radios.svg │ │ │ │ ├── umbrella-fill.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── unindent.svg │ │ │ │ ├── union.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── universal-access-circle.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── unlock-fill.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upc-scan.svg │ │ │ │ ├── upc.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── usb-c-fill.svg │ │ │ │ ├── usb-c.svg │ │ │ │ ├── usb-drive-fill.svg │ │ │ │ ├── usb-drive.svg │ │ │ │ ├── usb-fill.svg │ │ │ │ ├── usb-micro-fill.svg │ │ │ │ ├── usb-micro.svg │ │ │ │ ├── usb-mini-fill.svg │ │ │ │ ├── usb-mini.svg │ │ │ │ ├── usb-plug-fill.svg │ │ │ │ ├── usb-plug.svg │ │ │ │ ├── usb-symbol.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── valentine.svg │ │ │ │ ├── valentine2.svg │ │ │ │ ├── vector-pen.svg │ │ │ │ ├── view-list.svg │ │ │ │ ├── view-stacked.svg │ │ │ │ ├── vignette.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vinyl-fill.svg │ │ │ │ ├── vinyl.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── virus2.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volume-down-fill.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute-fill.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off-fill.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up-fill.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vr.svg │ │ │ │ ├── wallet-fill.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── wallet2.svg │ │ │ │ ├── watch.svg │ │ │ │ ├── water.svg │ │ │ │ ├── webcam-fill.svg │ │ │ │ ├── webcam.svg │ │ │ │ ├── wechat.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── wifi-1.svg │ │ │ │ ├── wifi-2.svg │ │ │ │ ├── wifi-off.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wikipedia.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-dash.svg │ │ │ │ ├── window-desktop.svg │ │ │ │ ├── window-dock.svg │ │ │ │ ├── window-fullscreen.svg │ │ │ │ ├── window-plus.svg │ │ │ │ ├── window-sidebar.svg │ │ │ │ ├── window-split.svg │ │ │ │ ├── window-stack.svg │ │ │ │ ├── window-x.svg │ │ │ │ ├── window.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wrench-adjustable-circle-fill.svg │ │ │ │ ├── wrench-adjustable-circle.svg │ │ │ │ ├── wrench-adjustable.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-circle-fill.svg │ │ │ │ ├── x-circle.svg │ │ │ │ ├── x-diamond-fill.svg │ │ │ │ ├── x-diamond.svg │ │ │ │ ├── x-lg.svg │ │ │ │ ├── x-octagon-fill.svg │ │ │ │ ├── x-octagon.svg │ │ │ │ ├── x-square-fill.svg │ │ │ │ ├── x-square.svg │ │ │ │ ├── x.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yin-yang.svg │ │ │ │ ├── youtube.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ │ └── package.json │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _containers.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _helpers.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _maps.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _offcanvas.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _placeholders.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _spinners.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables-dark.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap-utilities.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── forms │ │ │ │ ├── _floating-labels.scss │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-control.scss │ │ │ │ ├── _form-range.scss │ │ │ │ ├── _form-select.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _labels.scss │ │ │ │ └── _validation.scss │ │ │ │ ├── helpers │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _color-bg.scss │ │ │ │ ├── _colored-links.scss │ │ │ │ ├── _focus-ring.scss │ │ │ │ ├── _icon-link.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _ratio.scss │ │ │ │ ├── _stacks.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text-truncation.scss │ │ │ │ ├── _visually-hidden.scss │ │ │ │ └── _vr.scss │ │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _backdrop.scss │ │ │ │ ├── _banner.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _color-mode.scss │ │ │ │ ├── _color-scheme.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _table-variants.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ ├── _utilities.scss │ │ │ │ └── _visually-hidden.scss │ │ │ │ ├── utilities │ │ │ │ └── _api.scss │ │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ ├── d3 │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── d3.js │ │ │ │ └── d3.min.js │ │ ├── monaco-yaml-prebuilt │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── 1065.js │ │ │ │ ├── 1065.js.LICENSE.txt │ │ │ │ ├── 1065.min.js │ │ │ │ ├── 1134.js │ │ │ │ ├── 1134.js.LICENSE.txt │ │ │ │ ├── 1134.min.js │ │ │ │ ├── 1147.js │ │ │ │ ├── 1147.js.LICENSE.txt │ │ │ │ ├── 1147.min.js │ │ │ │ ├── 1156.js │ │ │ │ ├── 1156.js.LICENSE.txt │ │ │ │ ├── 1156.min.js │ │ │ │ ├── 1259.js │ │ │ │ ├── 1259.js.LICENSE.txt │ │ │ │ ├── 1259.min.js │ │ │ │ ├── 1448.js │ │ │ │ ├── 1448.js.LICENSE.txt │ │ │ │ ├── 1448.min.js │ │ │ │ ├── 1471.js │ │ │ │ ├── 1471.js.LICENSE.txt │ │ │ │ ├── 1471.min.js │ │ │ │ ├── 180.js │ │ │ │ ├── 180.js.LICENSE.txt │ │ │ │ ├── 180.min.js │ │ │ │ ├── 1886.js │ │ │ │ ├── 1886.js.LICENSE.txt │ │ │ │ ├── 1886.min.js │ │ │ │ ├── 1960.js │ │ │ │ ├── 1960.js.LICENSE.txt │ │ │ │ ├── 1960.min.js │ │ │ │ ├── 1961.js │ │ │ │ ├── 1961.js.LICENSE.txt │ │ │ │ ├── 1961.min.js │ │ │ │ ├── 2060.js │ │ │ │ ├── 2060.js.LICENSE.txt │ │ │ │ ├── 2060.min.js │ │ │ │ ├── 2075.js │ │ │ │ ├── 2075.js.LICENSE.txt │ │ │ │ ├── 2075.min.js │ │ │ │ ├── 2140.js │ │ │ │ ├── 2140.js.LICENSE.txt │ │ │ │ ├── 2140.min.js │ │ │ │ ├── 2240.js │ │ │ │ ├── 2240.js.LICENSE.txt │ │ │ │ ├── 2240.min.js │ │ │ │ ├── 249.js │ │ │ │ ├── 249.js.LICENSE.txt │ │ │ │ ├── 249.min.js │ │ │ │ ├── 2571.js │ │ │ │ ├── 2571.js.LICENSE.txt │ │ │ │ ├── 2571.min.js │ │ │ │ ├── 2798.js │ │ │ │ ├── 2798.js.LICENSE.txt │ │ │ │ ├── 2798.min.js │ │ │ │ ├── 2814.js │ │ │ │ ├── 2814.js.LICENSE.txt │ │ │ │ ├── 2814.min.js │ │ │ │ ├── 2892.js │ │ │ │ ├── 2892.js.LICENSE.txt │ │ │ │ ├── 2892.min.js │ │ │ │ ├── 2911.js │ │ │ │ ├── 2911.js.LICENSE.txt │ │ │ │ ├── 2911.min.js │ │ │ │ ├── 2954.js │ │ │ │ ├── 2954.js.LICENSE.txt │ │ │ │ ├── 2954.min.js │ │ │ │ ├── 3036.js │ │ │ │ ├── 3036.js.LICENSE.txt │ │ │ │ ├── 3036.min.js │ │ │ │ ├── 3585.js │ │ │ │ ├── 3585.js.LICENSE.txt │ │ │ │ ├── 3585.min.js │ │ │ │ ├── 3632.js │ │ │ │ ├── 3632.js.LICENSE.txt │ │ │ │ ├── 3632.min.js │ │ │ │ ├── 3682.js │ │ │ │ ├── 3682.js.LICENSE.txt │ │ │ │ ├── 3682.min.js │ │ │ │ ├── 3760.js │ │ │ │ ├── 3760.js.LICENSE.txt │ │ │ │ ├── 3760.min.js │ │ │ │ ├── 3919.js │ │ │ │ ├── 3919.js.LICENSE.txt │ │ │ │ ├── 3919.min.js │ │ │ │ ├── 4028.js │ │ │ │ ├── 4028.js.LICENSE.txt │ │ │ │ ├── 4028.min.js │ │ │ │ ├── 4129.js │ │ │ │ ├── 4129.js.LICENSE.txt │ │ │ │ ├── 4129.min.js │ │ │ │ ├── 4188.js │ │ │ │ ├── 4188.js.LICENSE.txt │ │ │ │ ├── 4188.min.js │ │ │ │ ├── 4368.js │ │ │ │ ├── 4368.js.LICENSE.txt │ │ │ │ ├── 4368.min.js │ │ │ │ ├── 4386.js │ │ │ │ ├── 4386.js.LICENSE.txt │ │ │ │ ├── 4386.min.js │ │ │ │ ├── 4407.js │ │ │ │ ├── 4407.js.LICENSE.txt │ │ │ │ ├── 4407.min.js │ │ │ │ ├── 4902.js │ │ │ │ ├── 4902.js.LICENSE.txt │ │ │ │ ├── 4902.min.js │ │ │ │ ├── 4912.js │ │ │ │ ├── 4912.js.LICENSE.txt │ │ │ │ ├── 4912.min.js │ │ │ │ ├── 4946.js │ │ │ │ ├── 4946.js.LICENSE.txt │ │ │ │ ├── 4946.min.js │ │ │ │ ├── 5062.js │ │ │ │ ├── 5062.js.LICENSE.txt │ │ │ │ ├── 5062.min.js │ │ │ │ ├── 525.js │ │ │ │ ├── 525.js.LICENSE.txt │ │ │ │ ├── 525.min.js │ │ │ │ ├── 5288.js │ │ │ │ ├── 5288.js.LICENSE.txt │ │ │ │ ├── 5288.min.js │ │ │ │ ├── 5377.js │ │ │ │ ├── 5377.js.LICENSE.txt │ │ │ │ ├── 5377.min.js │ │ │ │ ├── 5593.js │ │ │ │ ├── 5593.js.LICENSE.txt │ │ │ │ ├── 5593.min.js │ │ │ │ ├── 5703.js │ │ │ │ ├── 5703.js.LICENSE.txt │ │ │ │ ├── 5703.min.js │ │ │ │ ├── 5849.js │ │ │ │ ├── 5849.js.LICENSE.txt │ │ │ │ ├── 5849.min.js │ │ │ │ ├── 5880.js │ │ │ │ ├── 5880.js.LICENSE.txt │ │ │ │ ├── 5880.min.js │ │ │ │ ├── 5962.js │ │ │ │ ├── 5962.js.LICENSE.txt │ │ │ │ ├── 5962.min.js │ │ │ │ ├── 6082.js │ │ │ │ ├── 6082.js.LICENSE.txt │ │ │ │ ├── 6082.min.js │ │ │ │ ├── 6241.js │ │ │ │ ├── 6241.js.LICENSE.txt │ │ │ │ ├── 6241.min.js │ │ │ │ ├── 6423.js │ │ │ │ ├── 6423.js.LICENSE.txt │ │ │ │ ├── 6423.min.js │ │ │ │ ├── 6424.js │ │ │ │ ├── 6424.js.LICENSE.txt │ │ │ │ ├── 6424.min.js │ │ │ │ ├── 6449.js │ │ │ │ ├── 6449.js.LICENSE.txt │ │ │ │ ├── 6449.min.js │ │ │ │ ├── 6489.js │ │ │ │ ├── 6489.js.LICENSE.txt │ │ │ │ ├── 6489.min.js │ │ │ │ ├── 6587.js │ │ │ │ ├── 6587.js.LICENSE.txt │ │ │ │ ├── 6587.min.js │ │ │ │ ├── 665.js │ │ │ │ ├── 665.js.LICENSE.txt │ │ │ │ ├── 665.min.js │ │ │ │ ├── 6717.js │ │ │ │ ├── 6717.js.LICENSE.txt │ │ │ │ ├── 6717.min.js │ │ │ │ ├── 7043.js │ │ │ │ ├── 7043.js.LICENSE.txt │ │ │ │ ├── 7043.min.js │ │ │ │ ├── 7131.js │ │ │ │ ├── 7131.js.LICENSE.txt │ │ │ │ ├── 7131.min.js │ │ │ │ ├── 7287.js │ │ │ │ ├── 7287.js.LICENSE.txt │ │ │ │ ├── 7287.min.js │ │ │ │ ├── 7562.js │ │ │ │ ├── 7562.js.LICENSE.txt │ │ │ │ ├── 7562.min.js │ │ │ │ ├── 7637.js │ │ │ │ ├── 7637.js.LICENSE.txt │ │ │ │ ├── 7637.min.js │ │ │ │ ├── 7778.js │ │ │ │ ├── 7778.js.LICENSE.txt │ │ │ │ ├── 7778.min.js │ │ │ │ ├── 7835.js │ │ │ │ ├── 7835.js.LICENSE.txt │ │ │ │ ├── 7835.min.js │ │ │ │ ├── 8070.js │ │ │ │ ├── 8070.js.LICENSE.txt │ │ │ │ ├── 8070.min.js │ │ │ │ ├── 8084.js │ │ │ │ ├── 8084.js.LICENSE.txt │ │ │ │ ├── 8084.min.js │ │ │ │ ├── 8180.js │ │ │ │ ├── 8180.js.LICENSE.txt │ │ │ │ ├── 8180.min.js │ │ │ │ ├── 8401.js │ │ │ │ ├── 8401.min.js │ │ │ │ ├── 8424.js │ │ │ │ ├── 8424.js.LICENSE.txt │ │ │ │ ├── 8424.min.js │ │ │ │ ├── 848.js │ │ │ │ ├── 848.js.LICENSE.txt │ │ │ │ ├── 848.min.js │ │ │ │ ├── 854.js │ │ │ │ ├── 854.js.LICENSE.txt │ │ │ │ ├── 854.min.js │ │ │ │ ├── 8670.js │ │ │ │ ├── 8670.js.LICENSE.txt │ │ │ │ ├── 8670.min.js │ │ │ │ ├── 8715.js │ │ │ │ ├── 8715.js.LICENSE.txt │ │ │ │ ├── 8715.min.js │ │ │ │ ├── 8719.js │ │ │ │ ├── 8719.js.LICENSE.txt │ │ │ │ ├── 8719.min.js │ │ │ │ ├── 8906.js │ │ │ │ ├── 8906.js.LICENSE.txt │ │ │ │ ├── 8906.min.js │ │ │ │ ├── 8946.js │ │ │ │ ├── 8946.js.LICENSE.txt │ │ │ │ ├── 8946.min.js │ │ │ │ ├── 911.js │ │ │ │ ├── 911.js.LICENSE.txt │ │ │ │ ├── 911.min.js │ │ │ │ ├── 9343.js │ │ │ │ ├── 9343.js.LICENSE.txt │ │ │ │ ├── 9343.min.js │ │ │ │ ├── 9398.js │ │ │ │ ├── 9398.js.LICENSE.txt │ │ │ │ ├── 9398.min.js │ │ │ │ ├── 9400.js │ │ │ │ ├── 9400.js.LICENSE.txt │ │ │ │ ├── 9400.min.js │ │ │ │ ├── 9537.js │ │ │ │ ├── 9537.js.LICENSE.txt │ │ │ │ ├── 9537.min.js │ │ │ │ ├── 9684.js │ │ │ │ ├── 9684.js.LICENSE.txt │ │ │ │ ├── 9684.min.js │ │ │ │ ├── 9907.js │ │ │ │ ├── 9907.js.LICENSE.txt │ │ │ │ ├── 9907.min.js │ │ │ │ ├── 996.js │ │ │ │ ├── 996.js.LICENSE.txt │ │ │ │ ├── 996.min.js │ │ │ │ ├── b797181c93b3755f4fa1.ttf │ │ │ │ ├── editor.worker.js │ │ │ │ ├── editor.worker.min.js │ │ │ │ ├── json.worker.js │ │ │ │ ├── json.worker.js.LICENSE.txt │ │ │ │ ├── json.worker.min.js │ │ │ │ ├── monaco-editor.js │ │ │ │ ├── monaco-editor.js.LICENSE.txt │ │ │ │ ├── monaco-editor.min.js │ │ │ │ ├── yaml.worker.js │ │ │ │ └── yaml.worker.min.js │ │ │ └── package.json │ │ └── neuroglia │ │ │ └── event-drops │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.min.js │ │ │ ├── style.css │ │ │ └── style.min.css │ │ └── synapse.webmanifest ├── operator │ └── Synapse.Operator │ │ ├── Configuration │ │ └── OperatorOptions.cs │ │ ├── Dockerfile │ │ ├── Extensions │ │ └── CronExpressionExtensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── Interfaces │ │ │ ├── IOperatorController.cs │ │ │ ├── IWorkflowController.cs │ │ │ └── IWorkflowScheduler.cs │ │ ├── OperatorApplication.cs │ │ ├── OperatorController.cs │ │ ├── RunnerConfigurationMonitor.cs │ │ ├── WorkflowController.cs │ │ ├── WorkflowInstanceController.cs │ │ ├── WorkflowInstanceHandler.cs │ │ └── WorkflowScheduler.cs │ │ ├── Synapse.Operator.csproj │ │ ├── Usings.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── runner │ └── Synapse.Runner │ │ ├── Configuration │ │ ├── RunnerCertificateOptions.cs │ │ ├── RunnerCloudEventOptions.cs │ │ ├── RunnerContainerOptions.cs │ │ ├── RunnerExecutionMode.cs │ │ ├── RunnerLoggingOptions.cs │ │ ├── RunnerOptions.cs │ │ ├── RunnerSecretsOptions.cs │ │ ├── ServiceAccountOptions.cs │ │ └── WorkflowOptions.cs │ │ ├── DateTimeDescriptor.cs │ │ ├── Dockerfile │ │ ├── Epoch.cs │ │ ├── ErrorRaisedException.cs │ │ ├── Extensions │ │ ├── DateTimeOffsetExtensions.cs │ │ ├── DoTaskDefinitionExtensions.cs │ │ ├── IDictionaryExtensions.cs │ │ ├── IExpressionEvaluatorExtensions.cs │ │ ├── ITaskExecutionContextExtensions.cs │ │ ├── IWorkflowExecutionContextExtensions.cs │ │ ├── OperationTypeExtensions.cs │ │ └── WorkflowDefinitionExtensions.cs │ │ ├── IStreamedCloudEvent.cs │ │ ├── ITaskLifeCycleEvent.cs │ │ ├── IWorkflowLifeCycleEvent.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── RunnerDefaults.cs │ │ ├── RuntimeDescriptor.cs │ │ ├── Services │ │ ├── ConnectedWorkflowExecutionContext.cs │ │ ├── Executors │ │ │ ├── AsyncApiCallExecutor.cs │ │ │ ├── ContainerProcessExecutor.cs │ │ │ ├── DoTaskExecutor.cs │ │ │ ├── EmitTaskExecutor.cs │ │ │ ├── ExtensionTaskExecutor.cs │ │ │ ├── ForTaskExecutor.cs │ │ │ ├── ForkTaskExecutor.cs │ │ │ ├── FunctionCallExecutor.cs │ │ │ ├── GrpcCallExecutor.cs │ │ │ ├── HttpCallExecutor.cs │ │ │ ├── ListenTaskExecutor.cs │ │ │ ├── OpenApiCallExecutor.cs │ │ │ ├── RaiseTaskExecutor.cs │ │ │ ├── ScriptProcessExecutor.cs │ │ │ ├── SetTaskExecutor.cs │ │ │ ├── ShellProcessExecutor.cs │ │ │ ├── SwitchTaskExecutor.cs │ │ │ ├── TryTaskExecutor.cs │ │ │ ├── WaitTaskExecutor.cs │ │ │ └── WorkflowProcessExecutor.cs │ │ ├── Interfaces │ │ │ ├── ITaskExecutionContext.cs │ │ │ ├── ITaskExecutionContextFactory.cs │ │ │ ├── ITaskExecutor.cs │ │ │ ├── ITaskExecutorFactory.cs │ │ │ ├── IWorkflowExecutionContext.cs │ │ │ └── IWorkflowExecutor.cs │ │ ├── MemoryDocumentManager.cs │ │ ├── RunnerApplication.cs │ │ ├── SecretsManager.cs │ │ ├── StandAloneWorkflowExecutionContext.cs │ │ ├── TaskExecutionContext.cs │ │ ├── TaskExecutionContextFactory.cs │ │ ├── TaskExecutor.cs │ │ ├── TaskExecutorFactory.cs │ │ └── WorkflowExecutor.cs │ │ ├── StreamedCloudEvent.cs │ │ ├── Synapse.Runner.csproj │ │ ├── TaskDescriptor.cs │ │ ├── TaskLifeCycleEvent.cs │ │ ├── TaskLifeCycleEventType.cs │ │ ├── Usings.cs │ │ ├── WorkflowDescriptor.cs │ │ ├── WorkflowLifeCycleEvent.cs │ │ ├── WorkflowLifeCycleEventType.cs │ │ ├── WorkflowOutputFormat.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── runtime │ ├── Synapse.Runtime.Abstractions │ ├── Services │ │ ├── Interfaces │ │ │ ├── IWorkflowProcess.cs │ │ │ └── IWorkflowRuntime.cs │ │ ├── WorkflowProcessBase.cs │ │ └── WorkflowRuntimeBase.cs │ ├── Synapse.Runtime.Abstractions.csproj │ └── Usings.cs │ ├── Synapse.Runtime.Docker │ ├── Extensions │ │ └── ConfigExtensions.cs │ ├── Services │ │ ├── DockerRuntime.cs │ │ └── DockerWorkflowProcess.cs │ ├── Synapse.Runtime.Docker.csproj │ └── Usings.cs │ ├── Synapse.Runtime.Kubernetes │ ├── Extensions │ │ └── V1ContainerExtensions.cs │ ├── Services │ │ ├── KubernetesRuntime.cs │ │ └── KubernetesWorkflowProcess.cs │ └── Synapse.Runtime.Kubernetes.csproj │ └── Synapse.Runtime.Native │ ├── Extensions │ └── ProcessExtensions.cs │ ├── Services │ ├── NativeProcess.cs │ └── NativeRuntime.cs │ ├── Synapse.Runtime.Native.csproj │ └── Usings.cs └── tests ├── Synapse.IntegrationTests ├── Attributes │ └── PriorityAttribute.cs ├── Cases │ └── Api │ │ ├── ControllerTestsBase.cs │ │ └── Controllers │ │ ├── NamespacesControllerTests.cs │ │ ├── WorkflowDataControllerTests.cs │ │ ├── WorkflowInstancesControllerTests.cs │ │ └── WorkflowsControllerTests.cs ├── Containers │ └── RedisContainerBuilder.cs ├── Services │ ├── ContainerBootstrapper.cs │ ├── HttpApiFactory.cs │ ├── PriorityTestCaseOrderer.cs │ ├── WorkflowDefinitionFactory.cs │ └── WorkflowInstanceFactory.cs └── Synapse.IntegrationTests.csproj └── Synapse.UnitTests ├── Cases ├── Conformance │ ├── ConformanceTestsBase.cs │ └── Features │ │ ├── BranchFeatureTests.cs │ │ ├── CallFeatureTests.cs │ │ ├── DataFlowDirectiveFeatureTests.cs │ │ ├── DoFeatureTests.cs │ │ ├── EmitFeatureTests.cs │ │ ├── FlowFeatureTests.cs │ │ ├── ForFeatureTests.cs │ │ ├── RaiseFeatureTests.cs │ │ ├── SetFeatureTests.cs │ │ ├── SwitchFeatureTests.cs │ │ ├── TryFeatureTests.cs │ │ ├── branch.feature │ │ ├── call.feature │ │ ├── data-flow.feature │ │ ├── do.feature │ │ ├── emit.feature │ │ ├── flow.feature │ │ ├── for.feature │ │ ├── raise.feature │ │ ├── set.feature │ │ ├── switch.feature │ │ └── try.feature ├── Correlator │ └── CorrelatorHandlerTests.cs ├── Runner │ ├── ExtensionTests.cs │ ├── RunnerTestsBase.cs │ ├── TaskExecutorTests.cs │ ├── TaskExecutors │ │ ├── CustomFunctionCallExecutorTests.cs │ │ ├── DoTaskExecutorTests.cs │ │ ├── EmitTaskExecutorTests.cs │ │ ├── ForTaskExecutorTests.cs │ │ ├── ForkTaskExecutorTests.cs │ │ ├── FunctionCallExecutorTests.cs │ │ ├── GrpcCallExecutorTests.cs │ │ ├── HttpCallExecutorTests.cs │ │ ├── OpenApiCallExecutorTests.cs │ │ ├── ProcessTaskExecutorTests.cs │ │ ├── RaiseTaskExecutorTests.cs │ │ ├── SetTaskExecutorTests.cs │ │ ├── SwitchTaskExecutorTests.cs │ │ ├── TryTaskExecutorTests.cs │ │ └── WaitTaskExecutorTests.cs │ └── WorkflowExecutorTests.cs └── Runtime │ ├── NativeRuntimeTests.cs │ └── WorkflowRuntimeTestsBase.cs ├── Containers └── RedisContainerBuilder.cs ├── Services ├── ContainerBootstrapper.cs ├── ErrorDefinitionFactory.cs ├── EventDefinitionFactory.cs ├── EventFilterDefinitionFactory.cs ├── MockCloudFlowsApiClient.cs ├── MockClusterResourceApiClient.cs ├── MockDocumentApiClient.cs ├── MockEventApiClient.cs ├── MockNamespacedResourceApiClient.cs ├── MockResourceRepository.cs ├── MockTaskExecutionContextFactory.cs ├── MockTextDocumentRepository.cs ├── MockWorkflowExecutionContextFactory.cs ├── MockWorkflowInstanceApiClient.cs ├── TaskDefinitionFactory.cs ├── TestHostEnvironment.cs └── WorkflowDefinitionFactory.cs ├── Synapse.UnitTests.csproj └── Usings.cs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: [] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build-dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/build-dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/ci-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/helm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/helm.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/versioning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.github/workflows/versioning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Synapse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/Synapse.sln -------------------------------------------------------------------------------- /assets/fonts/Aquatico-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/fonts/Aquatico-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/Aquatico-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/fonts/Aquatico-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Aquatico-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/fonts/Aquatico-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Aquatico-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/fonts/Aquatico-Regular.woff2 -------------------------------------------------------------------------------- /assets/images/architecture-c4-l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/architecture-c4-l2.png -------------------------------------------------------------------------------- /assets/images/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/fonts.txt -------------------------------------------------------------------------------- /assets/images/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo.eps -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/logo_background.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_background.eps -------------------------------------------------------------------------------- /assets/images/logo_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_background.svg -------------------------------------------------------------------------------- /assets/images/logo_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_black.eps -------------------------------------------------------------------------------- /assets/images/logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_black.svg -------------------------------------------------------------------------------- /assets/images/logo_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_white.eps -------------------------------------------------------------------------------- /assets/images/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logo_white.svg -------------------------------------------------------------------------------- /assets/images/logomark.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark.eps -------------------------------------------------------------------------------- /assets/images/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark.svg -------------------------------------------------------------------------------- /assets/images/logomark_background.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_background.eps -------------------------------------------------------------------------------- /assets/images/logomark_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_background.svg -------------------------------------------------------------------------------- /assets/images/logomark_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_black.eps -------------------------------------------------------------------------------- /assets/images/logomark_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_black.svg -------------------------------------------------------------------------------- /assets/images/logomark_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_white.eps -------------------------------------------------------------------------------- /assets/images/logomark_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/logomark_white.svg -------------------------------------------------------------------------------- /assets/images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/preview.gif -------------------------------------------------------------------------------- /assets/images/transparent_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logo.png -------------------------------------------------------------------------------- /assets/images/transparent_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logo_black.png -------------------------------------------------------------------------------- /assets/images/transparent_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logo_white.png -------------------------------------------------------------------------------- /assets/images/transparent_logomark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logomark.ico -------------------------------------------------------------------------------- /assets/images/transparent_logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logomark.png -------------------------------------------------------------------------------- /assets/images/transparent_logomark_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logomark_256.png -------------------------------------------------------------------------------- /assets/images/transparent_logomark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logomark_black.png -------------------------------------------------------------------------------- /assets/images/transparent_logomark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/assets/images/transparent_logomark_white.png -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/community/README.md -------------------------------------------------------------------------------- /deployments/docker-compose/.env: -------------------------------------------------------------------------------- 1 | REDIS_URI=redis:6379 -------------------------------------------------------------------------------- /deployments/docker-compose/.gitignore: -------------------------------------------------------------------------------- 1 | secrets/ -------------------------------------------------------------------------------- /deployments/docker-compose/config/tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/docker-compose/config/tokens.yaml -------------------------------------------------------------------------------- /deployments/docker-compose/docker-compose.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/docker-compose/docker-compose.build.yml -------------------------------------------------------------------------------- /deployments/docker-compose/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/docker-compose/docker-compose.dcproj -------------------------------------------------------------------------------- /deployments/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /deployments/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/Chart.yaml -------------------------------------------------------------------------------- /deployments/helm/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/templates/configmap.yaml -------------------------------------------------------------------------------- /deployments/helm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/templates/deployment.yaml -------------------------------------------------------------------------------- /deployments/helm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/templates/ingress.yaml -------------------------------------------------------------------------------- /deployments/helm/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/templates/services.yaml -------------------------------------------------------------------------------- /deployments/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/helm/values.yaml -------------------------------------------------------------------------------- /deployments/kubernetes/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/kubernetes/api.yaml -------------------------------------------------------------------------------- /deployments/kubernetes/correlator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/kubernetes/correlator.yaml -------------------------------------------------------------------------------- /deployments/kubernetes/garnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/kubernetes/garnet.yaml -------------------------------------------------------------------------------- /deployments/kubernetes/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: synapse -------------------------------------------------------------------------------- /deployments/kubernetes/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/deployments/kubernetes/operator.yaml -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Documents/CreateDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Documents/CreateDocumentCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Documents/UpdateDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Documents/UpdateDocumentCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Events/PublishCloudEventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Events/PublishCloudEventCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Resources/CreateResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Resources/CreateResourceCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Resources/DeleteResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Resources/DeleteResourceCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Commands/Resources/PatchResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Commands/Resources/PatchResourceCommand.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Configuration/ApiServerCloudEventOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Configuration/ApiServerCloudEventOptions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Configuration/ApiServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Configuration/ApiServerOptions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Configuration/DatabaseSeedingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Configuration/DatabaseSeedingOptions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Configuration/OidcAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Configuration/OidcAuthenticationOptions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Documents/GetDocumentQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Documents/GetDocumentQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Resources/GetResourceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Resources/GetResourceQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Resources/GetResourcesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Resources/GetResourcesQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Resources/ListResourcesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Resources/ListResourcesQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Resources/WatchResourcesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Resources/WatchResourcesQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Queries/Users/GetUserProfileQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Queries/Users/GetUserProfileQuery.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/ServiceAccountSigningKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/ServiceAccountSigningKey.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Services/CloudEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Services/CloudEventPublisher.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Services/DatabaseProvisioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Services/DatabaseProvisioner.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Services/Interfaces/ICloudEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Services/Interfaces/ICloudEventPublisher.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Services/ServiceAccountClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Services/ServiceAccountClientStore.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Services/ServiceAccountProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Services/ServiceAccountProfileService.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Synapse.Api.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Synapse.Api.Application.csproj -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/SynapseApiDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/SynapseApiDefaults.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Application/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Application/Usings.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/ICloudEventApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/ICloudEventApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IClusterResourceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IClusterResourceApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IDocumentApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IDocumentApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/INamespacedResourceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/INamespacedResourceApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IResourceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IResourceApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IResourceEventWatchHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IResourceEventWatchHub.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IResourceEventWatchHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IResourceEventWatchHubClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/ISynapseApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/ISynapseApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IUserApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IUserApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Services/IWorkflowInstanceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Services/IWorkflowInstanceApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Synapse.Api.Client.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Synapse.Api.Client.Core.csproj -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Core/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Core/Usings.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Extensions/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Extensions/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Extensions/ISynapseApiClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Extensions/ISynapseApiClientExtensions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/ApiClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/ApiClientBase.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/CloudEventHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/CloudEventHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/DocumentHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/DocumentHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/ResourceHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/ResourceHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/ResourceWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/ResourceWatch.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/ResourceWatchEventHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/ResourceWatchEventHubClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/SynapseHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/SynapseHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/UserHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/UserHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Services/WorkflowInstanceHttpApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Services/WorkflowInstanceHttpApiClient.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Synapse.Api.Client.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Synapse.Api.Client.Http.csproj -------------------------------------------------------------------------------- /src/api/Synapse.Api.Client.Http/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Client.Http/Usings.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/ClusterResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/ClusterResourceController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/CorrelationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/CorrelationsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/CorrelatorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/CorrelatorsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/CustomFunctionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/CustomFunctionsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/DocumentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/DocumentsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/EventsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/EventsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/NamespacesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/NamespacesController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/OperatorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/OperatorsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/ServiceAccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/ServiceAccountsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/UsersController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/WorkflowInstancesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/WorkflowInstancesController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Controllers/WorkflowsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Controllers/WorkflowsController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Hubs/ResourceEventWatchHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Hubs/ResourceEventWatchHub.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/NamespacedResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/NamespacedResourceController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/ResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/ResourceController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Services/ResourceWatchEventHubController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Services/ResourceWatchEventHubController.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Synapse.Api.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Synapse.Api.Http.csproj -------------------------------------------------------------------------------- /src/api/Synapse.Api.Http/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Http/Usings.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/Dockerfile -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/FallbackPolicySchemeDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/FallbackPolicySchemeDefaults.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/Program.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/ServiceAccountAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/ServiceAccountAuthenticationDefaults.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/StaticBearerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/StaticBearerDefaults.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/Synapse.Api.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/Synapse.Api.Server.csproj -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/Usings.cs -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/appsettings.Development.json -------------------------------------------------------------------------------- /src/api/Synapse.Api.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/api/Synapse.Api.Server/appsettings.json -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/CliConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/CliConstants.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Command.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Config/DeleteApiCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Config/DeleteApiCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Config/GetApisCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Config/GetApisCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Config/SetApiCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Config/SetApiCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Config/UseApiCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Config/UseApiCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/ConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/ConfigCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/CorrelationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/CorrelationCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Correlations/CreateCorrelationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Correlations/CreateCorrelationCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Correlations/DeleteCorrelationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Correlations/DeleteCorrelationCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Correlations/ListCorrelationsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Correlations/ListCorrelationsCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/CorrelatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/CorrelatorCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Correlators/GetCorrelatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Correlators/GetCorrelatorCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Correlators/ListCorrelatorsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Correlators/ListCorrelatorsCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/NamespaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/NamespaceCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Namespaces/CreateNamespaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Namespaces/CreateNamespaceCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Namespaces/DeleteNamespaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Namespaces/DeleteNamespaceCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Namespaces/ListNamespacesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Namespaces/ListNamespacesCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/OperatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/OperatorCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Operators/GetOperatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Operators/GetOperatorCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Operators/ListOperatorsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Operators/ListOperatorsCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/ServiceAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/ServiceAccountCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/ServiceAccounts/CreateServiceAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/ServiceAccounts/CreateServiceAccountCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/ServiceAccounts/DeleteServiceAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/ServiceAccounts/DeleteServiceAccountCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/ServiceAccounts/ListServiceAccountsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/ServiceAccounts/ListServiceAccountsCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/WorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/WorkflowCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/WorkflowInstanceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/WorkflowInstanceCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Workflows/CreateWorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Workflows/CreateWorkflowCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Workflows/DeleteWorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Workflows/DeleteWorkflowCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Workflows/GetWorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Workflows/GetWorkflowCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Workflows/ListWorkflowsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Workflows/ListWorkflowsCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Commands/Workflows/RunWorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Commands/Workflows/RunWorkflowCommand.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Configuration/ApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Configuration/ApiConfiguration.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Configuration/ApplicationApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Configuration/ApplicationApiOptions.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Configuration/ApplicationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Configuration/ApplicationOptions.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Program.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Sample/workflow-fake-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Sample/workflow-fake-2.yaml -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Sample/workflow-fake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Sample/workflow-fake.yaml -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Services/IOptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Services/IOptionsManager.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Synapse.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Synapse.Cli.csproj -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/cli/Synapse.Cli/Usings.cs -------------------------------------------------------------------------------- /src/cli/Synapse.Cli/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure.Containers.Docker/DockerContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure.Containers.Docker/DockerContainer.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure.Containers.Docker/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure.Containers.Docker/Usings.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/AsyncLock.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/AuthorizationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/AuthorizationInfo.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/OAuth2Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/OAuth2Token.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/ApplicationUserAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/ApplicationUserAccessor.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/AvroSchemaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/AvroSchemaHandler.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/CorrelationValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/CorrelationValidator.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/DatabaseInitializer.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/ExternalResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/ExternalResourceProvider.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/Interfaces/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/Interfaces/IContainer.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/Interfaces/ISchemaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/Interfaces/ISchemaHandler.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/Interfaces/ISecretsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/Interfaces/ISecretsManager.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/JsonSchemaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/JsonSchemaHandler.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/OAuth2TokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/OAuth2TokenManager.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/SchemaHandlerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/SchemaHandlerProvider.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/WorkflowInstanceMutator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/WorkflowInstanceMutator.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Services/XmlSchemaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Services/XmlSchemaHandler.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Synapse.Core.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Synapse.Core.Infrastructure.csproj -------------------------------------------------------------------------------- /src/core/Synapse.Core.Infrastructure/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core.Infrastructure/Usings.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Annotations/CloudEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Annotations/CloudEventAttribute.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Annotations/SemanticVersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Annotations/SemanticVersionAttribute.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/ConcurrentHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/ConcurrentHashSet.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/ContainerPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/ContainerPlatform.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/CorrelationContextStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/CorrelationContextStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/CorrelationOutcomeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/CorrelationOutcomeType.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/CorrelationStatusPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/CorrelationStatusPhase.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/CorrelatorStatusPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/CorrelatorStatusPhase.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Error.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/RetryingTaskEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/RetryingTaskEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskCancelledEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskCancelledEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskCompletedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskCompletedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskCreatedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskCreatedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskEndedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskEndedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskFaultedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskFaultedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskResumedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskResumedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskSkippedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskSkippedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskStartedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskStartedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Tasks/TaskSuspendedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Tasks/TaskSuspendedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowCancelledEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowCancelledEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowCompletedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowCompletedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowEndedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowEndedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowFaultedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowFaultedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowResumedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowResumedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowStartedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowStartedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Events/Workflows/WorkflowSuspendedEventV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Events/Workflows/WorkflowSuspendedEventV1.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/AvroSchemaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/AvroSchemaExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/AvroTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/AvroTypeExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/CorrelationContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/CorrelationContextExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/TaskDefinitionMapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/TaskDefinitionMapExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/TaskDefinitionVersionMapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/TaskDefinitionVersionMapExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/WorkflowDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/WorkflowDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Extensions/XmlSchemaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Extensions/XmlSchemaExtensions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/ImagePullPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/ImagePullPolicy.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/OperatorRuntimeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/OperatorRuntimeMode.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/OperatorStatusPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/OperatorStatusPhase.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelateWorkflowOutcomeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelateWorkflowOutcomeDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Correlation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Correlation.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Correlation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Correlation.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationContext.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationLifetime.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationOutcomeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationOutcomeDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelationStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Correlator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Correlator.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Correlator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Correlator.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelatorResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelatorResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelatorSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelatorSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CorrelatorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CorrelatorStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CustomFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CustomFunction.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CustomFunction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CustomFunction.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CustomFunctionResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CustomFunctionResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/CustomFunctionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/CustomFunctionSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/DockerApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/DockerApiConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/DockerRuntimeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/DockerRuntimeConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/DockerRuntimeSecretsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/DockerRuntimeSecretsConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Document.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/KubernetesRuntimeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/KubernetesRuntimeConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/KubernetesRuntimeSecretsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/KubernetesRuntimeSecretsConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/NativeRuntimeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/NativeRuntimeConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Operator.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Operator.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/OperatorCleanupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/OperatorCleanupOptions.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/OperatorResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/OperatorResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/OperatorSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/OperatorSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/OperatorStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/OperatorStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/RetryAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/RetryAttempt.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/RunnerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/RunnerConfiguration.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/RuntimeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/RuntimeDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/ServiceAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/ServiceAccount.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/ServiceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/ServiceAccount.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/ServiceAccountResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/ServiceAccountResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/ServiceAccountSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/ServiceAccountSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/StartWorkflowOutcomeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/StartWorkflowOutcomeDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/TaskInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/TaskInstance.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/TaskInstanceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/TaskInstanceStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/TaskRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/TaskRun.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Workflow.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/Workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/Workflow.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowDefinitionReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowDefinitionReference.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstance.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstance.yaml -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstanceCorrelationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstanceCorrelationStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstanceResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstanceResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstanceSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstanceSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowInstanceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowInstanceStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowResourceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowResourceDefinition.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowRun.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowSpec.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Resources/WorkflowVersionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Resources/WorkflowVersionStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Synapse.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Synapse.Core.csproj -------------------------------------------------------------------------------- /src/core/Synapse.Core/SynapseDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/SynapseDefaults.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/TaskInstanceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/TaskInstanceStatus.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/Usings.cs -------------------------------------------------------------------------------- /src/core/Synapse.Core/WorkflowInstanceStatusPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/core/Synapse.Core/WorkflowInstanceStatusPhase.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Configuration/CorrelatorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Configuration/CorrelatorOptions.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Controllers/CloudEventsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Controllers/CloudEventsController.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Dockerfile -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Program.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Services/CorrelationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Services/CorrelationController.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Services/CorrelationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Services/CorrelationHandler.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Services/CorrelatorApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Services/CorrelatorApplication.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Services/CorrelatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Services/CorrelatorController.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Services/RedisCloudEventIngestor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Services/RedisCloudEventIngestor.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Synapse.Correlator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Synapse.Correlator.csproj -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/Usings.cs -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/appsettings.Development.json -------------------------------------------------------------------------------- /src/correlator/Synapse.Correlator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/correlator/Synapse.Correlator/appsettings.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/ActionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/ActionContext.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/ComponentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/ComponentStore.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/DispatchDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/DispatchDelegate.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Dispatcher.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Effect.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/EffectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/EffectContext.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Feature.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IDispatcher.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IEffect.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IFeature.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IMiddleware.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IReducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IReducer.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IState.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Interfaces/IStore.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Reducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Reducer.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard.StateManagement/StoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard.StateManagement/StoreFactory.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/App.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/CheckboxState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/CheckboxState.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/Breadcrumb/Breadcrumb.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/Breadcrumb/Breadcrumb.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/Breadcrumb/BreadcrumbItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/Breadcrumb/BreadcrumbItem.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/Breadcrumb/Breadcrumbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/Breadcrumb/Breadcrumbs.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/DocumentDetails/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/DocumentDetails/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/DocumentDetails/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/DocumentDetails/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/DynamicForm/DynamicForm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/DynamicForm/DynamicForm.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/Loader/Loader.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/Loader/Loader.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/MonacoEditor/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/MonacoEditor/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/MonacoEditor/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/MonacoEditor/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/ResourceEditor/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/ResourceEditor/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/ResourceEditor/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/ResourceEditor/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/WorkflowInstanceLogs/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/WorkflowInstanceLogs/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Components/WorkflowInstanceLogs/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Components/WorkflowInstanceLogs/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Configuration/ApplicationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Configuration/ApplicationOptions.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Configuration/AuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Configuration/AuthenticationOptions.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Extensions/StatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Extensions/StatusExtensions.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/ApplicationLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/ApplicationLayout.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/ApplicationTitle.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/ApplicationTitle.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/EmptyLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/EmptyLayout.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/IApplicationLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/IApplicationLayout.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.min.css -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/MainLayout.razor.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Layout/RedirectToLogin.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Layout/RedirectToLogin.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/About/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/About/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Authentication/Bearer/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Authentication/Bearer/Login.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Authentication/Oidc/Oidc.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Authentication/Oidc/Oidc.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Authentication/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Authentication/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Correlations/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Correlations/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Correlators/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Correlators/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Functions/Create/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Functions/Create/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Functions/Create/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Functions/Create/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Functions/Create/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Functions/Create/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Functions/List/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Functions/List/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Functions/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Functions/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Namespaces/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Namespaces/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Operators/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Operators/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/ServiceAccounts/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/ServiceAccounts/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Users/Profile.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Users/Profile.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/WorkflowInstances/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Create/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/Details/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/List/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/List/State.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/List/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/List/Store.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Pages/Workflows/List/View.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Pages/Workflows/List/View.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Program.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/BreadcrumbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/BreadcrumbManager.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/Interfaces/IBreadcrumbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/Interfaces/IBreadcrumbManager.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/Interfaces/ILocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/Interfaces/ILocalStorage.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/JsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/JsInterop.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/LocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/LocalStorage.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/MonacoInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/MonacoInterop.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/SecurityTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/SecurityTokenManager.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/SpecificationSchemaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/SpecificationSchemaManager.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Services/WorkflowGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Services/WorkflowGraphBuilder.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/StatefulComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/StatefulComponent.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Synapse.Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Synapse.Dashboard.csproj -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/Usings.cs -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/_Imports.razor -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/compilerconfig.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/compilerconfig.json.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/compilerconfig.json.defaults -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/libman.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/package-lock.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/appsettings.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/app.min.css -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/app.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/blazor-loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/blazor-loading.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/graph.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/horizontal-collapse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/horizontal-collapse.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/scrollbar.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/status.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/table.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/text-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/text-editor.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/theme/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/theme/_variables.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/theme/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/theme/theme.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/css/timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/css/timeline.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.otf -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.ttf -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.woff -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/fonts/Aquatico-Regular.woff2 -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/apple-touch-icon.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/favicon-16x16.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/favicon-32x32.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/favicon.ico -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/github-logo.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_background.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_background.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_background.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_black.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_black.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_white.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logo_white.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_background.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_background.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_background.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_black.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_black.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_white.eps -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/logomark_white.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/openapi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/openapi-logo.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo_black.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logo_white.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/img/transparent_logomark.png -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/index.html -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/js/js-interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/js/js-interop.js -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/LICENSE -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/README.md -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/123.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/123.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/alt.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/amd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/amd.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/app.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/at.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/bag.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/ban.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/box.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/bug.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/cpu.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/cup.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/dot.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/ear.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/egg.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/eye.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/fan.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/gem.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/geo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/geo.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/git.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/hdd.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/hr.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/key.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/map.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/mic.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/nut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/nut.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pc.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pen.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pin.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/pip.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/rss.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/sim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/sim.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/sun.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/tag.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/tv.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/upc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/upc.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/usb.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/vr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/vr.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/icons/x.svg -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap-icons/package.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_maps.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/LICENSE -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/dist/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/dist/d3.js -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/dist/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/d3/dist/d3.min.js -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/lib/neuroglia/event-drops/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/lib/neuroglia/event-drops/LICENSE -------------------------------------------------------------------------------- /src/dashboard/Synapse.Dashboard/wwwroot/synapse.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/dashboard/Synapse.Dashboard/wwwroot/synapse.webmanifest -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Configuration/OperatorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Configuration/OperatorOptions.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Dockerfile -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Extensions/CronExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Extensions/CronExpressionExtensions.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Program.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/Interfaces/IOperatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/Interfaces/IOperatorController.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/Interfaces/IWorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/Interfaces/IWorkflowController.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/Interfaces/IWorkflowScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/Interfaces/IWorkflowScheduler.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/OperatorApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/OperatorApplication.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/OperatorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/OperatorController.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/RunnerConfigurationMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/RunnerConfigurationMonitor.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/WorkflowController.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/WorkflowInstanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/WorkflowInstanceController.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/WorkflowInstanceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/WorkflowInstanceHandler.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Services/WorkflowScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Services/WorkflowScheduler.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Synapse.Operator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Synapse.Operator.csproj -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/Usings.cs -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/appsettings.Development.json -------------------------------------------------------------------------------- /src/operator/Synapse.Operator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/operator/Synapse.Operator/appsettings.json -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerCertificateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerCertificateOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerCloudEventOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerCloudEventOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerContainerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerContainerOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerExecutionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerExecutionMode.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerLoggingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerLoggingOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/RunnerSecretsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/RunnerSecretsOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/ServiceAccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/ServiceAccountOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Configuration/WorkflowOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Configuration/WorkflowOptions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/DateTimeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/DateTimeDescriptor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Dockerfile -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Epoch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Epoch.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/ErrorRaisedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/ErrorRaisedException.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/DateTimeOffsetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/DateTimeOffsetExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/DoTaskDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/DoTaskDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/IDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/IDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/IExpressionEvaluatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/IExpressionEvaluatorExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/ITaskExecutionContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/ITaskExecutionContextExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/OperationTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/OperationTypeExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Extensions/WorkflowDefinitionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Extensions/WorkflowDefinitionExtensions.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/IStreamedCloudEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/IStreamedCloudEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/ITaskLifeCycleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/ITaskLifeCycleEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/IWorkflowLifeCycleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/IWorkflowLifeCycleEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Program.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/RunnerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/RunnerDefaults.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/RuntimeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/RuntimeDescriptor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/ConnectedWorkflowExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/ConnectedWorkflowExecutionContext.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/AsyncApiCallExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/AsyncApiCallExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ContainerProcessExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ContainerProcessExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/DoTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/DoTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/EmitTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/EmitTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ExtensionTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ExtensionTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ForTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ForTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ForkTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ForkTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/FunctionCallExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/FunctionCallExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/GrpcCallExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/GrpcCallExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/HttpCallExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/HttpCallExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ListenTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ListenTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/OpenApiCallExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/OpenApiCallExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/RaiseTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/RaiseTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ScriptProcessExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ScriptProcessExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/SetTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/SetTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/ShellProcessExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/ShellProcessExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/SwitchTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/SwitchTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/TryTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/TryTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/WaitTaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/WaitTaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Executors/WorkflowProcessExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Executors/WorkflowProcessExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutionContext.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Interfaces/ITaskExecutorFactory.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/Interfaces/IWorkflowExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/Interfaces/IWorkflowExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/MemoryDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/MemoryDocumentManager.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/RunnerApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/RunnerApplication.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/SecretsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/SecretsManager.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/StandAloneWorkflowExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/StandAloneWorkflowExecutionContext.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/TaskExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/TaskExecutionContext.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/TaskExecutionContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/TaskExecutionContextFactory.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/TaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/TaskExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/TaskExecutorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/TaskExecutorFactory.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Services/WorkflowExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Services/WorkflowExecutor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/StreamedCloudEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/StreamedCloudEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Synapse.Runner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Synapse.Runner.csproj -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/TaskDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/TaskDescriptor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/TaskLifeCycleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/TaskLifeCycleEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/TaskLifeCycleEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/TaskLifeCycleEventType.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/Usings.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/WorkflowDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/WorkflowDescriptor.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/WorkflowLifeCycleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/WorkflowLifeCycleEvent.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/WorkflowLifeCycleEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/WorkflowLifeCycleEventType.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/WorkflowOutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/WorkflowOutputFormat.cs -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/appsettings.Development.json -------------------------------------------------------------------------------- /src/runner/Synapse.Runner/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runner/Synapse.Runner/appsettings.json -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Abstractions/Services/WorkflowProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Abstractions/Services/WorkflowProcessBase.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Abstractions/Services/WorkflowRuntimeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Abstractions/Services/WorkflowRuntimeBase.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Abstractions/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Abstractions/Usings.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Docker/Extensions/ConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Docker/Extensions/ConfigExtensions.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Docker/Services/DockerRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Docker/Services/DockerRuntime.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Docker/Services/DockerWorkflowProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Docker/Services/DockerWorkflowProcess.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Docker/Synapse.Runtime.Docker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Docker/Synapse.Runtime.Docker.csproj -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Docker/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Docker/Usings.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Kubernetes/Services/KubernetesRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Kubernetes/Services/KubernetesRuntime.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Kubernetes/Synapse.Runtime.Kubernetes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Kubernetes/Synapse.Runtime.Kubernetes.csproj -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Native/Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Native/Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Native/Services/NativeProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Native/Services/NativeProcess.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Native/Services/NativeRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Native/Services/NativeRuntime.cs -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Native/Synapse.Runtime.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Native/Synapse.Runtime.Native.csproj -------------------------------------------------------------------------------- /src/runtime/Synapse.Runtime.Native/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/src/runtime/Synapse.Runtime.Native/Usings.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Attributes/PriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Attributes/PriorityAttribute.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Cases/Api/ControllerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Cases/Api/ControllerTestsBase.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Containers/RedisContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Containers/RedisContainerBuilder.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Services/ContainerBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Services/ContainerBootstrapper.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Services/HttpApiFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Services/HttpApiFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Services/PriorityTestCaseOrderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Services/PriorityTestCaseOrderer.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Services/WorkflowDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Services/WorkflowDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Services/WorkflowInstanceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Services/WorkflowInstanceFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.IntegrationTests/Synapse.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.IntegrationTests/Synapse.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/ConformanceTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/ConformanceTestsBase.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/BranchFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/BranchFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/CallFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/CallFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/DoFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/DoFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/EmitFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/EmitFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/FlowFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/FlowFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/ForFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/ForFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/RaiseFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/RaiseFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/SetFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/SetFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/SwitchFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/SwitchFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/TryFeatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/TryFeatureTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/branch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/branch.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/call.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/call.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/data-flow.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/data-flow.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/do.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/do.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/emit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/emit.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/flow.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/flow.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/for.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/for.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/raise.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/raise.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/set.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/set.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/switch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/switch.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Conformance/Features/try.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Conformance/Features/try.feature -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Correlator/CorrelatorHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Correlator/CorrelatorHandlerTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runner/ExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runner/ExtensionTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runner/RunnerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runner/RunnerTestsBase.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runner/TaskExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runner/TaskExecutorTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runner/TaskExecutors/DoTaskExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runner/TaskExecutors/DoTaskExecutorTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runner/WorkflowExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runner/WorkflowExecutorTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runtime/NativeRuntimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runtime/NativeRuntimeTests.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Cases/Runtime/WorkflowRuntimeTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Cases/Runtime/WorkflowRuntimeTestsBase.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Containers/RedisContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Containers/RedisContainerBuilder.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/ContainerBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/ContainerBootstrapper.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/ErrorDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/ErrorDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/EventDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/EventDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/EventFilterDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/EventFilterDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockCloudFlowsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockCloudFlowsApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockClusterResourceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockClusterResourceApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockDocumentApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockDocumentApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockEventApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockEventApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockNamespacedResourceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockNamespacedResourceApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockResourceRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockResourceRepository.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockTaskExecutionContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockTaskExecutionContextFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockTextDocumentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockTextDocumentRepository.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockWorkflowExecutionContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockWorkflowExecutionContextFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/MockWorkflowInstanceApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/MockWorkflowInstanceApiClient.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/TaskDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/TaskDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/TestHostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/TestHostEnvironment.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Services/WorkflowDefinitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Services/WorkflowDefinitionFactory.cs -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Synapse.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Synapse.UnitTests.csproj -------------------------------------------------------------------------------- /tests/Synapse.UnitTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlessworkflow/synapse/HEAD/tests/Synapse.UnitTests/Usings.cs --------------------------------------------------------------------------------