├── .eslintignore ├── .eslintrc.json ├── .gcloudignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ ├── ci-cd.yml │ └── codeql-analysis.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── settings.json └── vsicons-custom-icons │ ├── file_type_Aggregate.svg │ ├── file_type_Command.svg │ ├── file_type_Event.svg │ ├── file_type_Policy.svg │ ├── file_type_Projector.svg │ ├── file_type_System.svg │ ├── folder_type_Aggregate.svg │ ├── folder_type_Aggregate_opened.svg │ ├── folder_type_Command.svg │ ├── folder_type_Command_opened.svg │ ├── folder_type_Event.svg │ ├── folder_type_Event_opened.svg │ ├── folder_type_Message.svg │ ├── folder_type_Message_opened.svg │ ├── folder_type_Policy.svg │ ├── folder_type_Policy_opened.svg │ ├── folder_type_Projector.svg │ ├── folder_type_Projector_opened.svg │ ├── folder_type_System.svg │ └── folder_type_System_opened.svg ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── console.png ├── coverage-failed.png ├── coverage.png ├── hotel-project.png ├── hotel.png ├── microservice.png └── openapi.png ├── docker-compose.yml ├── docker ├── firestore-emulator │ ├── Dockerfile │ └── restart.sh └── restart-pg.sh ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── _rotorsoft_eventually.ActorConcurrencyError.html │ ├── _rotorsoft_eventually.AuthenticationError.html │ ├── _rotorsoft_eventually.AuthorizationError.html │ ├── _rotorsoft_eventually.Builder.html │ ├── _rotorsoft_eventually.ConcurrencyError.html │ ├── _rotorsoft_eventually.InMemoryApp.html │ ├── _rotorsoft_eventually.InvariantError.html │ ├── _rotorsoft_eventually.RegistrationError.html │ ├── _rotorsoft_eventually.ValidationError.html │ └── _rotorsoft_eventually_express.ExpressApp.html ├── functions │ ├── _rotorsoft_eventually.BadRequest.html │ ├── _rotorsoft_eventually.Conflict.html │ ├── _rotorsoft_eventually.Forbidden.html │ ├── _rotorsoft_eventually.HttpProxy.html │ ├── _rotorsoft_eventually.InMemoryBroker.html │ ├── _rotorsoft_eventually.InMemoryClient.html │ ├── _rotorsoft_eventually.InMemoryProjectorStore.html │ ├── _rotorsoft_eventually.InMemoryStore.html │ ├── _rotorsoft_eventually.InMemorySubscriptionStore.html │ ├── _rotorsoft_eventually.InternalServerError.html │ ├── _rotorsoft_eventually.NotFound.html │ ├── _rotorsoft_eventually.Ok.html │ ├── _rotorsoft_eventually.Unauthorized.html │ ├── _rotorsoft_eventually._imps.html │ ├── _rotorsoft_eventually.agg-1.html │ ├── _rotorsoft_eventually.app.html │ ├── _rotorsoft_eventually.bind.html │ ├── _rotorsoft_eventually.bootstrap.html │ ├── _rotorsoft_eventually.breaker-1.html │ ├── _rotorsoft_eventually.broker-1.html │ ├── _rotorsoft_eventually.camelize.html │ ├── _rotorsoft_eventually.client-1.html │ ├── _rotorsoft_eventually.cmd.html │ ├── _rotorsoft_eventually.command.html │ ├── _rotorsoft_eventually.conditions.html │ ├── _rotorsoft_eventually.config.html │ ├── _rotorsoft_eventually.dateReviver.html │ ├── _rotorsoft_eventually.debounce.html │ ├── _rotorsoft_eventually.decamelize.html │ ├── _rotorsoft_eventually.dispose.html │ ├── _rotorsoft_eventually.drain.html │ ├── _rotorsoft_eventually.emit.html │ ├── _rotorsoft_eventually.event.html │ ├── _rotorsoft_eventually.extend.html │ ├── _rotorsoft_eventually.formatTime.html │ ├── _rotorsoft_eventually.httpError.html │ ├── _rotorsoft_eventually.invoke.html │ ├── _rotorsoft_eventually.load.html │ ├── _rotorsoft_eventually.log.html │ ├── _rotorsoft_eventually.logAdapterCreated.html │ ├── _rotorsoft_eventually.logAdapterDisposed.html │ ├── _rotorsoft_eventually.patch-1.html │ ├── _rotorsoft_eventually.poll.html │ ├── _rotorsoft_eventually.port.html │ ├── _rotorsoft_eventually.prj.html │ ├── _rotorsoft_eventually.project.html │ ├── _rotorsoft_eventually.query.html │ ├── _rotorsoft_eventually.read.html │ ├── _rotorsoft_eventually.scheduler.html │ ├── _rotorsoft_eventually.seed.html │ ├── _rotorsoft_eventually.sleep.html │ ├── _rotorsoft_eventually.store-1.html │ ├── _rotorsoft_eventually.subscriptions.html │ ├── _rotorsoft_eventually.throttle.html │ ├── _rotorsoft_eventually.toProjectionQuery.html │ ├── _rotorsoft_eventually.toProjectionQueryString.html │ ├── _rotorsoft_eventually.toRestAggQuery.html │ ├── _rotorsoft_eventually.toRestProjectionQuery.html │ ├── _rotorsoft_eventually.validate.html │ ├── _rotorsoft_eventually.validateMessage.html │ ├── _rotorsoft_eventually_express.ActorMiddleware.html │ ├── _rotorsoft_eventually_express.commandHandler.html │ ├── _rotorsoft_eventually_express.errorHandler.html │ ├── _rotorsoft_eventually_express.eventHandler.html │ ├── _rotorsoft_eventually_express.getHandler.html │ ├── _rotorsoft_eventually_express.getStreamHandler.html │ ├── _rotorsoft_eventually_express.invokeHandler.html │ ├── _rotorsoft_eventually_express.projectHandler.html │ ├── _rotorsoft_eventually_express.queryHandler.html │ ├── _rotorsoft_eventually_express.readHandler.html │ ├── _rotorsoft_eventually_express.sse.html │ ├── _rotorsoft_eventually_express.statsHandler.html │ ├── _rotorsoft_eventually_express.subscriptionsHandler.html │ ├── _rotorsoft_eventually_pg.PostgresProjectorStore.html │ ├── _rotorsoft_eventually_pg.PostgresStore.html │ └── _rotorsoft_eventually_pg.PostgresSubscriptionStore.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── _rotorsoft_eventually.Breaker.html │ ├── _rotorsoft_eventually.Broker.html │ ├── _rotorsoft_eventually.Disposable.html │ ├── _rotorsoft_eventually.Logger.html │ ├── _rotorsoft_eventually.ProjectorStore.html │ ├── _rotorsoft_eventually.Schedule.html │ ├── _rotorsoft_eventually.Store.html │ └── _rotorsoft_eventually.SubscriptionStore.html ├── media │ ├── ExpressApp.ts │ ├── README-1.md │ ├── README-2.md │ ├── README.md │ ├── broker.png │ ├── eventually.png │ ├── flow.png │ ├── hotel.png │ ├── lego.png │ ├── patterns.png │ └── ports.png ├── modules │ ├── _rotorsoft_eventually.html │ ├── _rotorsoft_eventually_express.html │ └── _rotorsoft_eventually_pg.html ├── types │ ├── _rotorsoft_eventually.Action.html │ ├── _rotorsoft_eventually.Actor.html │ ├── _rotorsoft_eventually.ActorHandler.html │ ├── _rotorsoft_eventually.Agg.html │ ├── _rotorsoft_eventually.AggQuery.html │ ├── _rotorsoft_eventually.AggResult.html │ ├── _rotorsoft_eventually.Aggregate.html │ ├── _rotorsoft_eventually.AggregateFactory.html │ ├── _rotorsoft_eventually.AggregateSchemas.html │ ├── _rotorsoft_eventually.AllQuery.html │ ├── _rotorsoft_eventually.Artifact.html │ ├── _rotorsoft_eventually.ArtifactFactory.html │ ├── _rotorsoft_eventually.ArtifactMetadata.html │ ├── _rotorsoft_eventually.ArtifactType.html │ ├── _rotorsoft_eventually.BreakerOptions.html │ ├── _rotorsoft_eventually.BreakerResponse.html │ ├── _rotorsoft_eventually.Client.html │ ├── _rotorsoft_eventually.CommandAdapter.html │ ├── _rotorsoft_eventually.CommandAdapterFactory.html │ ├── _rotorsoft_eventually.CommandAdapterSchemas.html │ ├── _rotorsoft_eventually.CommandHandler.html │ ├── _rotorsoft_eventually.CommandHandlerFactory.html │ ├── _rotorsoft_eventually.CommandHandlingArtifact.html │ ├── _rotorsoft_eventually.CommandTarget.html │ ├── _rotorsoft_eventually.CommitPredicate.html │ ├── _rotorsoft_eventually.CommittedEvent.html │ ├── _rotorsoft_eventually.CommittedEventMetadata.html │ ├── _rotorsoft_eventually.Condition.html │ ├── _rotorsoft_eventually.DeepPartial.html │ ├── _rotorsoft_eventually.Disposer.html │ ├── _rotorsoft_eventually.Empty.html │ ├── _rotorsoft_eventually.Environment.html │ ├── _rotorsoft_eventually.EventHandlerFactory.html │ ├── _rotorsoft_eventually.EventHandlingArtifact.html │ ├── _rotorsoft_eventually.EventReducer.html │ ├── _rotorsoft_eventually.EventResponse.html │ ├── _rotorsoft_eventually.ExitCode.html │ ├── _rotorsoft_eventually.HttpResponse.html │ ├── _rotorsoft_eventually.HttpStatusCode.html │ ├── _rotorsoft_eventually.Infer.html │ ├── _rotorsoft_eventually.InferAggregate.html │ ├── _rotorsoft_eventually.InferCommandAdapter.html │ ├── _rotorsoft_eventually.InferPolicy.html │ ├── _rotorsoft_eventually.InferProcessManager.html │ ├── _rotorsoft_eventually.InferProjector.html │ ├── _rotorsoft_eventually.Invariant.html │ ├── _rotorsoft_eventually.Lease.html │ ├── _rotorsoft_eventually.LogLevel.html │ ├── _rotorsoft_eventually.Message.html │ ├── _rotorsoft_eventually.MessageMetadata.html │ ├── _rotorsoft_eventually.Messages.html │ ├── _rotorsoft_eventually.Operator.html │ ├── _rotorsoft_eventually.Patch.html │ ├── _rotorsoft_eventually.Policy.html │ ├── _rotorsoft_eventually.PolicyFactory.html │ ├── _rotorsoft_eventually.PolicySchemas.html │ ├── _rotorsoft_eventually.PollOptions.html │ ├── _rotorsoft_eventually.ProcessManager.html │ ├── _rotorsoft_eventually.ProcessManagerFactory.html │ ├── _rotorsoft_eventually.ProcessManagerSchemas.html │ ├── _rotorsoft_eventually.Projection.html │ ├── _rotorsoft_eventually.ProjectionMap.html │ ├── _rotorsoft_eventually.ProjectionPatch.html │ ├── _rotorsoft_eventually.ProjectionQuery.html │ ├── _rotorsoft_eventually.ProjectionRecord.html │ ├── _rotorsoft_eventually.ProjectionResults.html │ ├── _rotorsoft_eventually.ProjectionSort.html │ ├── _rotorsoft_eventually.ProjectionWhere.html │ ├── _rotorsoft_eventually.Projector.html │ ├── _rotorsoft_eventually.ProjectorFactory.html │ ├── _rotorsoft_eventually.ProjectorReducer.html │ ├── _rotorsoft_eventually.ProjectorSchemas.html │ ├── _rotorsoft_eventually.Proxy.html │ ├── _rotorsoft_eventually.Reducible.html │ ├── _rotorsoft_eventually.ReducibleFactory.html │ ├── _rotorsoft_eventually.RestAggQuery.html │ ├── _rotorsoft_eventually.RestProjectionQuery.html │ ├── _rotorsoft_eventually.Schema.html │ ├── _rotorsoft_eventually.Schemas.html │ ├── _rotorsoft_eventually.Scope.html │ ├── _rotorsoft_eventually.Seeder.html │ ├── _rotorsoft_eventually.Snapshot.html │ ├── _rotorsoft_eventually.State.html │ ├── _rotorsoft_eventually.StateReducer.html │ ├── _rotorsoft_eventually.States.html │ ├── _rotorsoft_eventually.Status.html │ ├── _rotorsoft_eventually.StoreStat.html │ ├── _rotorsoft_eventually.Streamable.html │ ├── _rotorsoft_eventually.StreamableFactory.html │ ├── _rotorsoft_eventually.Subscription.html │ ├── _rotorsoft_eventually.WithDescription.html │ └── _rotorsoft_eventually.WithOptions.html └── variables │ ├── _rotorsoft_eventually.Environments.html │ ├── _rotorsoft_eventually.Errors.html │ ├── _rotorsoft_eventually.ExitCodes.html │ ├── _rotorsoft_eventually.LogLevels.html │ ├── _rotorsoft_eventually.Operators.html │ ├── _rotorsoft_eventually.STATE_EVENT.html │ ├── _rotorsoft_eventually.Scopes.html │ ├── _rotorsoft_eventually.ZodEmpty.html │ └── _rotorsoft_eventually_pg.config.html ├── jest.config.js ├── libs ├── calculator-artifacts │ ├── README.md │ ├── assets │ │ └── calculator.png │ ├── model.esml.json │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── all-stream.spec.ts │ │ │ ├── calculator.commit-state.spec.ts │ │ │ ├── calculator.spec.ts │ │ │ ├── ignored-handler.spec.ts │ │ │ ├── messages.ts │ │ │ ├── projector.spec.ts │ │ │ └── trace.spec.ts │ │ ├── calculator.aggregate.ts │ │ ├── calculator.projector.ts │ │ ├── calculator.schemas.ts │ │ ├── counter.policy.ts │ │ ├── index.ts │ │ └── presskey.adapter.ts │ └── tsconfig.json ├── eventually-aws │ ├── README.md │ ├── package.json │ ├── src │ │ ├── DynamoProjectorStore.ts │ │ ├── DynamoStore.ts │ │ ├── DynamoSubscriptionStore.ts │ │ ├── NotSupportedError.ts │ │ ├── __tests__ │ │ │ ├── lambda.spec.ts │ │ │ ├── projector.spec.ts │ │ │ ├── proxyEvent.ts │ │ │ └── store.spec.ts │ │ ├── config.ts │ │ ├── index.ts │ │ └── lambda │ │ │ ├── command.ts │ │ │ ├── drain.ts │ │ │ ├── http.ts │ │ │ ├── index.ts │ │ │ ├── load.ts │ │ │ ├── query.ts │ │ │ └── seed.ts │ └── tsconfig.json ├── eventually-azure │ ├── README.md │ ├── package.json │ ├── src │ │ ├── CosmosProjectorStore.ts │ │ ├── CosmosStore.ts │ │ ├── config.ts │ │ └── index.ts │ └── tsconfig.json ├── eventually-broker │ ├── README.md │ ├── assets │ │ └── ports.png │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── channels.errors.spec.ts │ │ │ ├── channels.spec.ts │ │ │ ├── cluster.spec.ts │ │ │ ├── crud.spec.ts │ │ │ ├── events.ts │ │ │ ├── hbs-helpers.spec.ts │ │ │ ├── listener.spec.ts │ │ │ ├── queries.spec.ts │ │ │ ├── swagger.doc.ts │ │ │ ├── swagger.spec.ts │ │ │ ├── utils.spec.ts │ │ │ ├── utils.ts │ │ │ ├── views.errors.spec.ts │ │ │ └── views.spec.ts │ │ ├── adapters │ │ │ ├── InMemorySubscriptionStore.ts │ │ │ └── index.ts │ │ ├── app.ts │ │ ├── broker.ts │ │ ├── channels │ │ │ ├── CronPullChannel.ts │ │ │ ├── HttpPostPushChannel.ts │ │ │ ├── PostgresPullChannel.ts │ │ │ ├── VoidPullChannel.ts │ │ │ ├── VoidPushChannel.ts │ │ │ └── index.ts │ │ ├── cluster │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── state.ts │ │ │ ├── types.ts │ │ │ └── worker.ts │ │ ├── config.ts │ │ ├── hbs-helpers.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── models.ts │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── broker.png │ │ │ │ ├── external-link.svg │ │ │ │ └── eye.svg │ │ │ ├── js │ │ │ │ ├── contracts.js │ │ │ │ ├── correlation.js │ │ │ │ ├── d3-layouts.js │ │ │ │ ├── edit-service.js │ │ │ │ ├── edit-subscription.js │ │ │ │ ├── events.js │ │ │ │ ├── graph.js │ │ │ │ ├── sort-table.js │ │ │ │ ├── subscriptions.js │ │ │ │ ├── utils.js │ │ │ │ └── wait.js │ │ │ └── style.css │ │ ├── queries.ts │ │ ├── routes │ │ │ ├── about.ts │ │ │ ├── api.ts │ │ │ ├── command.ts │ │ │ ├── contracts.ts │ │ │ ├── correlations.ts │ │ │ ├── graph.ts │ │ │ ├── index.ts │ │ │ ├── monitor.ts │ │ │ ├── regex.ts │ │ │ ├── schemas.ts │ │ │ ├── services.ts │ │ │ └── subscriptions.ts │ │ ├── specs.ts │ │ ├── stores │ │ │ ├── PostgresStreamListener.ts │ │ │ ├── PostgresSubscriptionStore.ts │ │ │ ├── index.ts │ │ │ └── seed.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── views │ │ │ ├── add-service.hbs │ │ │ ├── add-subscription.hbs │ │ │ ├── contracts.hbs │ │ │ ├── correlations.hbs │ │ │ ├── edit-service.hbs │ │ │ ├── edit-subscription.hbs │ │ │ ├── events.hbs │ │ │ ├── graph.hbs │ │ │ ├── layouts │ │ │ └── main.hbs │ │ │ ├── partials │ │ │ ├── alert.hbs │ │ │ ├── joi-schema.hbs │ │ │ ├── schema.hbs │ │ │ ├── service-bc.hbs │ │ │ ├── service-form.hbs │ │ │ ├── subscription-bc.hbs │ │ │ └── subscription-form.hbs │ │ │ ├── services.hbs │ │ │ ├── subscriptions.hbs │ │ │ └── wait.hbs │ └── tsconfig.json ├── eventually-express │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ExpressApp.ts │ │ ├── __tests__ │ │ │ └── express.spec.ts │ │ ├── handlers.ts │ │ ├── index.ts │ │ ├── middleware.ts │ │ └── sse.ts │ ├── tsconfig.json │ └── typedoc.json ├── eventually-gcp │ ├── README.md │ ├── package.json │ ├── src │ │ ├── FirestoreProjectorStore.ts │ │ ├── FirestoreStore.ts │ │ ├── FirestoreSubscriptionStore.ts │ │ ├── NotSupportedError.ts │ │ ├── __tests__ │ │ │ ├── projector.spec.ts │ │ │ └── store.spec.ts │ │ ├── config.ts │ │ ├── firestore.ts │ │ └── index.ts │ └── tsconfig.json ├── eventually-openapi │ ├── README.md │ ├── package.json │ ├── src │ │ ├── HttpClient.ts │ │ ├── __tests__ │ │ │ ├── esml.spec.ts │ │ │ └── zod-openapi.spec.ts │ │ ├── config.ts │ │ ├── home │ │ │ ├── artifacts.ts │ │ │ ├── esml.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── oas.ts │ │ │ ├── schemas.ts │ │ │ ├── specs.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── zod-openapi.ts │ └── tsconfig.json ├── eventually-pg │ ├── README.md │ ├── package.json │ ├── src │ │ ├── PostgresMessageQueue.ts │ │ ├── PostgresOrderedMessageQueue.ts │ │ ├── PostgresProjectorStore.ts │ │ ├── PostgresStore.ts │ │ ├── PostgresSubscriptionStore.ts │ │ ├── __tests__ │ │ │ ├── calc.projector.spec.ts │ │ │ ├── commit.error.spec.ts │ │ │ ├── message-queue.spec.ts │ │ │ ├── ordered-message-queue.spec.ts │ │ │ ├── projector.spec.ts │ │ │ ├── sites │ │ │ │ ├── Posts.projector.ts │ │ │ │ ├── Site.aggregate.ts │ │ │ │ ├── Site.spec.ts │ │ │ │ ├── Sites.projector.ts │ │ │ │ └── schemas │ │ │ │ │ ├── CreatePost.schema.ts │ │ │ │ │ ├── CreateSite.schema.ts │ │ │ │ │ ├── DeletePost.schema.ts │ │ │ │ │ ├── DeleteSite.schema.ts │ │ │ │ │ ├── Post.schema.ts │ │ │ │ │ ├── PostCreated.schema.ts │ │ │ │ │ ├── PostDeleted.schema.ts │ │ │ │ │ ├── PostUpdated.schema.ts │ │ │ │ │ ├── Posts.schema.ts │ │ │ │ │ ├── Posts.ts │ │ │ │ │ ├── Site.schema.ts │ │ │ │ │ ├── Site.ts │ │ │ │ │ ├── SiteCreated.schema.ts │ │ │ │ │ ├── SiteDeleted.schema.ts │ │ │ │ │ ├── SiteUpdated.schema.ts │ │ │ │ │ ├── Sites.schema.ts │ │ │ │ │ ├── Sites.ts │ │ │ │ │ ├── UpdatePost.schema.ts │ │ │ │ │ └── UpdateSite.schema.ts │ │ │ ├── store.spec.ts │ │ │ └── utils.ts │ │ ├── config.ts │ │ ├── index.ts │ │ └── seed.ts │ ├── tsconfig.json │ └── typedoc.json ├── eventually-service-expg │ ├── README.md │ ├── assets │ │ └── layers.png │ ├── package.json │ ├── src │ │ ├── config.ts │ │ └── index.ts │ └── tsconfig.json ├── eventually-trpc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── oas.ts │ └── tsconfig.json └── eventually │ ├── README.md │ ├── assets │ ├── aggregate.png │ ├── broker.png │ ├── command.png │ ├── event.png │ ├── eventually.png │ ├── flow.png │ ├── lego.png │ ├── patterns.png │ ├── policy.png │ ├── ports.png │ ├── process-manager.png │ ├── projector.png │ ├── read-model.png │ └── system.png │ ├── package.json │ ├── src │ ├── __tests__ │ │ ├── breaker.spec.ts │ │ ├── builder.spec.ts │ │ ├── dev.logger.spec.ts │ │ ├── plain.logger.spec.ts │ │ ├── ports.spec.ts │ │ ├── projection │ │ │ ├── Match.projector.ts │ │ │ ├── events.ts │ │ │ ├── match.projector.spec.ts │ │ │ ├── schemas.ts │ │ │ └── steps.ts │ │ ├── projector.spec.ts │ │ ├── scheduler.spec.ts │ │ └── utils.spec.ts │ ├── adapters │ │ ├── InMemoryApp.ts │ │ ├── InMemoryBroker.ts │ │ ├── InMemoryClient.ts │ │ ├── InMemoryProjectorStore.ts │ │ ├── InMemoryStore.ts │ │ ├── InMemorySubscriptionStore.ts │ │ └── index.ts │ ├── builder.ts │ ├── config.ts │ ├── handlers │ │ ├── agg.ts │ │ ├── command.ts │ │ ├── commit.ts │ │ ├── event.ts │ │ ├── index.ts │ │ ├── invoke.ts │ │ ├── load.ts │ │ ├── message.ts │ │ ├── poll.ts │ │ ├── project.ts │ │ ├── query.ts │ │ └── read.ts │ ├── index.ts │ ├── interfaces │ │ ├── broker.ts │ │ ├── generic.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ └── stores.ts │ ├── loggers.ts │ ├── port.ts │ ├── ports.ts │ ├── types │ │ ├── artifacts.ts │ │ ├── client.ts │ │ ├── enums.ts │ │ ├── errors.ts │ │ ├── factories.ts │ │ ├── handlers.ts │ │ ├── index.ts │ │ ├── messages.ts │ │ ├── projection.ts │ │ └── store.ts │ └── utils │ │ ├── binding.ts │ │ ├── breaker.ts │ │ ├── formatting.ts │ │ ├── http.ts │ │ ├── index.ts │ │ ├── patch.ts │ │ ├── query.ts │ │ ├── scheduler.ts │ │ ├── seed.ts │ │ ├── utils.ts │ │ └── validation.ts │ ├── tsconfig.json │ └── typedoc.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── bump.sh ├── clean.sh ├── clinic.sh ├── deploy-app.sh ├── deploy-function.sh ├── dev.sh └── publish.sh ├── services ├── broker │ ├── package.json │ ├── sql │ │ └── seed-local-broker.pgsql │ ├── src │ │ ├── index.ts │ │ └── modules.d.ts │ └── tsconfig.json ├── calculator │ ├── http │ │ ├── calculator.http │ │ ├── counter.http │ │ ├── projector.http │ │ ├── stream.http │ │ └── swagger.http │ ├── package.json │ ├── security.json │ ├── src │ │ ├── __tests__ │ │ │ ├── allstream.express.spec.ts │ │ │ ├── calculator.express.proxy.spec.ts │ │ │ ├── calculator.express.spec.ts │ │ │ ├── express.store.errors.spec.ts │ │ │ ├── messages.ts │ │ │ ├── projector.express.spec.ts │ │ │ └── statelesscounter.spec.ts │ │ └── index.ts │ └── tsconfig.json └── hotel │ ├── package.json │ ├── src │ ├── Hotel.projector.ts │ ├── Next30Days.projector.ts │ ├── Room.aggregate.ts │ ├── Room.models.ts │ ├── Room.schemas.ts │ ├── __tests__ │ │ ├── Room.spec.ts │ │ └── process-manager │ │ │ ├── monthly-bookings.policy.ts │ │ │ ├── pm.spec.ts │ │ │ ├── pm.workers.spec.ts │ │ │ ├── room.aggregate.ts │ │ │ ├── schemas.ts │ │ │ ├── spawn-ts.ts │ │ │ ├── utils.ts │ │ │ └── worker.ts │ ├── http │ │ └── Room.http │ ├── index.ts │ ├── routes │ │ ├── home.ts │ │ └── index.ts │ ├── utils.ts │ └── views │ │ ├── home.hbs │ │ └── layouts │ │ └── main.hbs │ └── tsconfig.json ├── sites └── eventually-site │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ └── page.tsx │ ├── components.json │ ├── components │ ├── home.tsx │ └── ui │ │ ├── button.tsx │ │ └── card.tsx │ ├── lib │ ├── animation.ts │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── tailwind.config.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── tsconfig.eslint.json ├── tsconfig.json └── typedoc.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_Aggregate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_Aggregate.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_Command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_Command.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_Event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_Event.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_Policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_Policy.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_Projector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_Projector.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/file_type_System.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/file_type_System.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Aggregate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Aggregate.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Aggregate_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Aggregate_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Command.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Command_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Command_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Event.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Event_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Event_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Message.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Message_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Message_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Policy.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Policy_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Policy_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Projector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Projector.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_Projector_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_Projector_opened.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_System.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_System.svg -------------------------------------------------------------------------------- /.vscode/vsicons-custom-icons/folder_type_System_opened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/.vscode/vsicons-custom-icons/folder_type_System_opened.svg -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/console.png -------------------------------------------------------------------------------- /assets/coverage-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/coverage-failed.png -------------------------------------------------------------------------------- /assets/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/coverage.png -------------------------------------------------------------------------------- /assets/hotel-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/hotel-project.png -------------------------------------------------------------------------------- /assets/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/hotel.png -------------------------------------------------------------------------------- /assets/microservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/microservice.png -------------------------------------------------------------------------------- /assets/openapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/assets/openapi.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/firestore-emulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docker/firestore-emulator/Dockerfile -------------------------------------------------------------------------------- /docker/firestore-emulator/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docker/firestore-emulator/restart.sh -------------------------------------------------------------------------------- /docker/restart-pg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docker/restart-pg.sh -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.ActorConcurrencyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.ActorConcurrencyError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.AuthenticationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.AuthenticationError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.AuthorizationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.AuthorizationError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.Builder.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.ConcurrencyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.ConcurrencyError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.InMemoryApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.InMemoryApp.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.InvariantError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.InvariantError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.RegistrationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.RegistrationError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually.ValidationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually.ValidationError.html -------------------------------------------------------------------------------- /docs/classes/_rotorsoft_eventually_express.ExpressApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/classes/_rotorsoft_eventually_express.ExpressApp.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.BadRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.BadRequest.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.Conflict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.Conflict.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.Forbidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.Forbidden.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.HttpProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.HttpProxy.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InMemoryBroker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InMemoryBroker.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InMemoryClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InMemoryClient.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InMemoryProjectorStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InMemoryProjectorStore.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InMemoryStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InMemoryStore.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InMemorySubscriptionStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InMemorySubscriptionStore.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.InternalServerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.InternalServerError.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.NotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.NotFound.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.Ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.Ok.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.Unauthorized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.Unauthorized.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually._imps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually._imps.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.agg-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.agg-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.app.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.bind.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.bootstrap.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.breaker-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.breaker-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.broker-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.broker-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.camelize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.camelize.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.client-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.client-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.cmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.cmd.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.command.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.conditions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.conditions.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.config.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.dateReviver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.dateReviver.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.debounce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.debounce.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.decamelize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.decamelize.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.dispose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.dispose.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.drain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.drain.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.emit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.emit.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.event.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.extend.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.formatTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.formatTime.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.httpError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.httpError.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.invoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.invoke.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.load.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.log.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.logAdapterCreated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.logAdapterCreated.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.logAdapterDisposed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.logAdapterDisposed.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.patch-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.patch-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.poll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.poll.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.port.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.port.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.prj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.prj.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.project.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.query.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.read.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.scheduler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.seed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.seed.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.sleep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.sleep.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.store-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.store-1.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.subscriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.subscriptions.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.throttle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.throttle.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.toProjectionQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.toProjectionQuery.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.toProjectionQueryString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.toProjectionQueryString.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.toRestAggQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.toRestAggQuery.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.toRestProjectionQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.toRestProjectionQuery.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.validate.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually.validateMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually.validateMessage.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.ActorMiddleware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.ActorMiddleware.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.commandHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.commandHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.errorHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.errorHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.eventHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.eventHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.getHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.getHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.getStreamHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.getStreamHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.invokeHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.invokeHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.projectHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.projectHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.queryHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.queryHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.readHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.readHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.sse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.sse.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.statsHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.statsHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_express.subscriptionsHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_express.subscriptionsHandler.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_pg.PostgresProjectorStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_pg.PostgresProjectorStore.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_pg.PostgresStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_pg.PostgresStore.html -------------------------------------------------------------------------------- /docs/functions/_rotorsoft_eventually_pg.PostgresSubscriptionStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/functions/_rotorsoft_eventually_pg.PostgresSubscriptionStore.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Breaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Breaker.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Broker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Broker.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Disposable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Disposable.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Logger.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.ProjectorStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.ProjectorStore.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Schedule.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.Store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.Store.html -------------------------------------------------------------------------------- /docs/interfaces/_rotorsoft_eventually.SubscriptionStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/interfaces/_rotorsoft_eventually.SubscriptionStore.html -------------------------------------------------------------------------------- /docs/media/ExpressApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/ExpressApp.ts -------------------------------------------------------------------------------- /docs/media/README-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/README-1.md -------------------------------------------------------------------------------- /docs/media/README-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/README-2.md -------------------------------------------------------------------------------- /docs/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/README.md -------------------------------------------------------------------------------- /docs/media/broker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/broker.png -------------------------------------------------------------------------------- /docs/media/eventually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/eventually.png -------------------------------------------------------------------------------- /docs/media/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/flow.png -------------------------------------------------------------------------------- /docs/media/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/hotel.png -------------------------------------------------------------------------------- /docs/media/lego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/lego.png -------------------------------------------------------------------------------- /docs/media/patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/patterns.png -------------------------------------------------------------------------------- /docs/media/ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/media/ports.png -------------------------------------------------------------------------------- /docs/modules/_rotorsoft_eventually.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/modules/_rotorsoft_eventually.html -------------------------------------------------------------------------------- /docs/modules/_rotorsoft_eventually_express.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/modules/_rotorsoft_eventually_express.html -------------------------------------------------------------------------------- /docs/modules/_rotorsoft_eventually_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/modules/_rotorsoft_eventually_pg.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Action.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Actor.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ActorHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ActorHandler.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Agg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Agg.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.AggQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.AggQuery.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.AggResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.AggResult.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Aggregate.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.AggregateFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.AggregateFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.AggregateSchemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.AggregateSchemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.AllQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.AllQuery.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Artifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Artifact.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ArtifactFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ArtifactFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ArtifactMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ArtifactMetadata.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ArtifactType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ArtifactType.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.BreakerOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.BreakerOptions.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.BreakerResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.BreakerResponse.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Client.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandAdapter.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandAdapterFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandAdapterFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandAdapterSchemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandAdapterSchemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandHandler.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandHandlerFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandHandlerFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandHandlingArtifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandHandlingArtifact.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommandTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommandTarget.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommitPredicate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommitPredicate.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommittedEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommittedEvent.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.CommittedEventMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.CommittedEventMetadata.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Condition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Condition.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.DeepPartial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.DeepPartial.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Disposer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Disposer.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Empty.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Environment.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.EventHandlerFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.EventHandlerFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.EventHandlingArtifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.EventHandlingArtifact.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.EventReducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.EventReducer.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.EventResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.EventResponse.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ExitCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ExitCode.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.HttpResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.HttpResponse.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.HttpStatusCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.HttpStatusCode.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Infer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Infer.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.InferAggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.InferAggregate.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.InferCommandAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.InferCommandAdapter.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.InferPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.InferPolicy.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.InferProcessManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.InferProcessManager.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.InferProjector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.InferProjector.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Invariant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Invariant.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Lease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Lease.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.LogLevel.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Message.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.MessageMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.MessageMetadata.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Messages.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Operator.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Patch.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Policy.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.PolicyFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.PolicyFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.PolicySchemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.PolicySchemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.PollOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.PollOptions.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProcessManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProcessManager.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProcessManagerFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProcessManagerFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProcessManagerSchemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProcessManagerSchemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Projection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Projection.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionMap.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionPatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionPatch.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionQuery.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionRecord.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionResults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionResults.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionSort.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectionWhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectionWhere.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Projector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Projector.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectorFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectorFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectorReducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectorReducer.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ProjectorSchemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ProjectorSchemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Proxy.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Reducible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Reducible.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.ReducibleFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.ReducibleFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.RestAggQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.RestAggQuery.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.RestProjectionQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.RestProjectionQuery.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Schema.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Schemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Schemas.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Scope.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Seeder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Seeder.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Snapshot.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.State.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.StateReducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.StateReducer.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.States.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.States.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Status.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.StoreStat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.StoreStat.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Streamable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Streamable.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.StreamableFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.StreamableFactory.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.Subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.Subscription.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.WithDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.WithDescription.html -------------------------------------------------------------------------------- /docs/types/_rotorsoft_eventually.WithOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/types/_rotorsoft_eventually.WithOptions.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.Environments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.Environments.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.Errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.Errors.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.ExitCodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.ExitCodes.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.LogLevels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.LogLevels.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.Operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.Operators.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.STATE_EVENT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.STATE_EVENT.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.Scopes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.Scopes.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually.ZodEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually.ZodEmpty.html -------------------------------------------------------------------------------- /docs/variables/_rotorsoft_eventually_pg.config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/docs/variables/_rotorsoft_eventually_pg.config.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/calculator-artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/README.md -------------------------------------------------------------------------------- /libs/calculator-artifacts/assets/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/assets/calculator.png -------------------------------------------------------------------------------- /libs/calculator-artifacts/model.esml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/model.esml.json -------------------------------------------------------------------------------- /libs/calculator-artifacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/package.json -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/all-stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/all-stream.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/calculator.commit-state.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/calculator.commit-state.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/calculator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/calculator.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/ignored-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/ignored-handler.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/messages.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/projector.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/__tests__/trace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/__tests__/trace.spec.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/calculator.aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/calculator.aggregate.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/calculator.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/calculator.projector.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/calculator.schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/calculator.schemas.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/counter.policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/counter.policy.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/index.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/src/presskey.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/src/presskey.adapter.ts -------------------------------------------------------------------------------- /libs/calculator-artifacts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/calculator-artifacts/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/README.md -------------------------------------------------------------------------------- /libs/eventually-aws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/package.json -------------------------------------------------------------------------------- /libs/eventually-aws/src/DynamoProjectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/DynamoProjectorStore.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/DynamoStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/DynamoStore.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/DynamoSubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/DynamoSubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/NotSupportedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/NotSupportedError.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/__tests__/lambda.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/__tests__/lambda.spec.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/__tests__/projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/__tests__/projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/__tests__/proxyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/__tests__/proxyEvent.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/__tests__/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/__tests__/store.spec.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/command.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/drain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/drain.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/http.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/index.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/load.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/query.ts -------------------------------------------------------------------------------- /libs/eventually-aws/src/lambda/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/src/lambda/seed.ts -------------------------------------------------------------------------------- /libs/eventually-aws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-aws/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/README.md -------------------------------------------------------------------------------- /libs/eventually-azure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/package.json -------------------------------------------------------------------------------- /libs/eventually-azure/src/CosmosProjectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/src/CosmosProjectorStore.ts -------------------------------------------------------------------------------- /libs/eventually-azure/src/CosmosStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/src/CosmosStore.ts -------------------------------------------------------------------------------- /libs/eventually-azure/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-azure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-azure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-azure/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/README.md -------------------------------------------------------------------------------- /libs/eventually-broker/assets/ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/assets/ports.png -------------------------------------------------------------------------------- /libs/eventually-broker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/package.json -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/channels.errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/channels.errors.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/channels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/channels.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/cluster.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/cluster.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/crud.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/crud.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/events.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/hbs-helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/hbs-helpers.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/listener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/listener.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/queries.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/queries.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/swagger.doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/swagger.doc.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/swagger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/swagger.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/utils.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/utils.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/views.errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/views.errors.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/__tests__/views.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/__tests__/views.spec.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/adapters/InMemorySubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/adapters/InMemorySubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/adapters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./InMemorySubscriptionStore"; 2 | -------------------------------------------------------------------------------- /libs/eventually-broker/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/app.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/broker.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/CronPullChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/CronPullChannel.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/HttpPostPushChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/HttpPostPushChannel.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/PostgresPullChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/PostgresPullChannel.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/VoidPullChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/VoidPullChannel.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/VoidPushChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/VoidPushChannel.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/channels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/channels/index.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/cluster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/cluster/index.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/cluster/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/cluster/interfaces.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/cluster/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/cluster/state.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/cluster/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/cluster/types.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/cluster/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/cluster/worker.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/hbs-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/hbs-helpers.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/interfaces.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/models.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/assets/broker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/assets/broker.png -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/assets/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/assets/external-link.svg -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/assets/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/assets/eye.svg -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/contracts.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/correlation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/correlation.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/d3-layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/d3-layouts.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/edit-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/edit-service.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/edit-subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/edit-subscription.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/events.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/graph.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/sort-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/sort-table.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/subscriptions.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/utils.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/js/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/js/wait.js -------------------------------------------------------------------------------- /libs/eventually-broker/src/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/public/style.css -------------------------------------------------------------------------------- /libs/eventually-broker/src/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/queries.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/about.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/api.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/command.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/contracts.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/correlations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/correlations.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/graph.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/index.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/monitor.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/regex.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/schemas.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/services.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/routes/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/routes/subscriptions.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/specs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/specs.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/stores/PostgresStreamListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/stores/PostgresStreamListener.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/stores/PostgresSubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/stores/PostgresSubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/stores/index.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/stores/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/stores/seed.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/types.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/utils.ts -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/add-service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/add-service.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/add-subscription.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/add-subscription.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/contracts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/contracts.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/correlations.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/correlations.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/edit-service.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/edit-service.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/edit-subscription.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/edit-subscription.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/events.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/events.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/graph.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/graph.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/layouts/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/layouts/main.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/alert.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/alert.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/joi-schema.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/joi-schema.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/schema.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/schema.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/service-bc.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/service-bc.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/service-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/service-form.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/subscription-bc.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/subscription-bc.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/partials/subscription-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/partials/subscription-form.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/services.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/services.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/subscriptions.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/subscriptions.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/src/views/wait.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/src/views/wait.hbs -------------------------------------------------------------------------------- /libs/eventually-broker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-broker/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/README.md -------------------------------------------------------------------------------- /libs/eventually-express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/package.json -------------------------------------------------------------------------------- /libs/eventually-express/src/ExpressApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/ExpressApp.ts -------------------------------------------------------------------------------- /libs/eventually-express/src/__tests__/express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/__tests__/express.spec.ts -------------------------------------------------------------------------------- /libs/eventually-express/src/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/handlers.ts -------------------------------------------------------------------------------- /libs/eventually-express/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-express/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/middleware.ts -------------------------------------------------------------------------------- /libs/eventually-express/src/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/src/sse.ts -------------------------------------------------------------------------------- /libs/eventually-express/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-express/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-express/typedoc.json -------------------------------------------------------------------------------- /libs/eventually-gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/README.md -------------------------------------------------------------------------------- /libs/eventually-gcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/package.json -------------------------------------------------------------------------------- /libs/eventually-gcp/src/FirestoreProjectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/FirestoreProjectorStore.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/FirestoreStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/FirestoreStore.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/FirestoreSubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/FirestoreSubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/NotSupportedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/NotSupportedError.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/__tests__/projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/__tests__/projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/__tests__/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/__tests__/store.spec.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/firestore.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-gcp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-gcp/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/README.md -------------------------------------------------------------------------------- /libs/eventually-openapi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/package.json -------------------------------------------------------------------------------- /libs/eventually-openapi/src/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/HttpClient.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/__tests__/esml.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/__tests__/esml.spec.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/__tests__/zod-openapi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/__tests__/zod-openapi.spec.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/home/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/home/artifacts.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/home/esml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/home/esml.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/home/index.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/index.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/oas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/oas.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/schemas.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/specs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/specs.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/types.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/utils.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/src/utils/zod-openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/src/utils/zod-openapi.ts -------------------------------------------------------------------------------- /libs/eventually-openapi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-openapi/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-pg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/README.md -------------------------------------------------------------------------------- /libs/eventually-pg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/package.json -------------------------------------------------------------------------------- /libs/eventually-pg/src/PostgresMessageQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/PostgresMessageQueue.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/PostgresOrderedMessageQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/PostgresOrderedMessageQueue.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/PostgresProjectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/PostgresProjectorStore.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/PostgresStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/PostgresStore.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/PostgresSubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/PostgresSubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/calc.projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/calc.projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/commit.error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/commit.error.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/message-queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/message-queue.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/ordered-message-queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/ordered-message-queue.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/Posts.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/Posts.projector.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/Site.aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/Site.aggregate.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/Site.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/Site.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/Sites.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/Sites.projector.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/CreatePost.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/CreatePost.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/CreateSite.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/CreateSite.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/DeletePost.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/DeletePost.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/DeleteSite.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/DeleteSite.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Post.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Post.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/PostCreated.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/PostCreated.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/PostDeleted.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/PostDeleted.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/PostUpdated.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/PostUpdated.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Posts.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Posts.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Posts.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Site.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Site.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Site.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/SiteCreated.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/SiteCreated.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/SiteDeleted.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/SiteDeleted.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/SiteUpdated.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/SiteUpdated.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Sites.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Sites.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/Sites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/Sites.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/UpdatePost.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/UpdatePost.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/sites/schemas/UpdateSite.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/sites/schemas/UpdateSite.schema.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/store.spec.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/__tests__/utils.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-pg/src/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/src/seed.ts -------------------------------------------------------------------------------- /libs/eventually-pg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-pg/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-pg/typedoc.json -------------------------------------------------------------------------------- /libs/eventually-service-expg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/README.md -------------------------------------------------------------------------------- /libs/eventually-service-expg/assets/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/assets/layers.png -------------------------------------------------------------------------------- /libs/eventually-service-expg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/package.json -------------------------------------------------------------------------------- /libs/eventually-service-expg/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/src/config.ts -------------------------------------------------------------------------------- /libs/eventually-service-expg/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-service-expg/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-service-expg/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually-trpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-trpc/README.md -------------------------------------------------------------------------------- /libs/eventually-trpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-trpc/package.json -------------------------------------------------------------------------------- /libs/eventually-trpc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-trpc/src/index.ts -------------------------------------------------------------------------------- /libs/eventually-trpc/src/oas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-trpc/src/oas.ts -------------------------------------------------------------------------------- /libs/eventually-trpc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually-trpc/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/README.md -------------------------------------------------------------------------------- /libs/eventually/assets/aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/aggregate.png -------------------------------------------------------------------------------- /libs/eventually/assets/broker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/broker.png -------------------------------------------------------------------------------- /libs/eventually/assets/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/command.png -------------------------------------------------------------------------------- /libs/eventually/assets/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/event.png -------------------------------------------------------------------------------- /libs/eventually/assets/eventually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/eventually.png -------------------------------------------------------------------------------- /libs/eventually/assets/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/flow.png -------------------------------------------------------------------------------- /libs/eventually/assets/lego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/lego.png -------------------------------------------------------------------------------- /libs/eventually/assets/patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/patterns.png -------------------------------------------------------------------------------- /libs/eventually/assets/policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/policy.png -------------------------------------------------------------------------------- /libs/eventually/assets/ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/ports.png -------------------------------------------------------------------------------- /libs/eventually/assets/process-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/process-manager.png -------------------------------------------------------------------------------- /libs/eventually/assets/projector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/projector.png -------------------------------------------------------------------------------- /libs/eventually/assets/read-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/read-model.png -------------------------------------------------------------------------------- /libs/eventually/assets/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/assets/system.png -------------------------------------------------------------------------------- /libs/eventually/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/package.json -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/breaker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/breaker.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/builder.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/dev.logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/dev.logger.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/plain.logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/plain.logger.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/ports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/ports.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projection/Match.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projection/Match.projector.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projection/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projection/events.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projection/match.projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projection/match.projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projection/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projection/schemas.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projection/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projection/steps.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/projector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/projector.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/scheduler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/scheduler.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/__tests__/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/__tests__/utils.spec.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemoryApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemoryApp.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemoryBroker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemoryBroker.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemoryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemoryClient.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemoryProjectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemoryProjectorStore.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemoryStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemoryStore.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/InMemorySubscriptionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/InMemorySubscriptionStore.ts -------------------------------------------------------------------------------- /libs/eventually/src/adapters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/adapters/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/builder.ts -------------------------------------------------------------------------------- /libs/eventually/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/config.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/agg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/agg.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/command.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/commit.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/event.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/invoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/invoke.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/load.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/message.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/poll.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/project.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/query.ts -------------------------------------------------------------------------------- /libs/eventually/src/handlers/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/handlers/read.ts -------------------------------------------------------------------------------- /libs/eventually/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/interfaces/broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/interfaces/broker.ts -------------------------------------------------------------------------------- /libs/eventually/src/interfaces/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/interfaces/generic.ts -------------------------------------------------------------------------------- /libs/eventually/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/interfaces/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/interfaces/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/interfaces/logger.ts -------------------------------------------------------------------------------- /libs/eventually/src/interfaces/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/interfaces/stores.ts -------------------------------------------------------------------------------- /libs/eventually/src/loggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/loggers.ts -------------------------------------------------------------------------------- /libs/eventually/src/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/port.ts -------------------------------------------------------------------------------- /libs/eventually/src/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/ports.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/artifacts.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/client.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/enums.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/errors.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/factories.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/handlers.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/messages.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/projection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/projection.ts -------------------------------------------------------------------------------- /libs/eventually/src/types/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/types/store.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/binding.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/breaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/breaker.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/formatting.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/http.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/index.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/patch.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/query.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/scheduler.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/seed.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/utils.ts -------------------------------------------------------------------------------- /libs/eventually/src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/src/utils/validation.ts -------------------------------------------------------------------------------- /libs/eventually/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/tsconfig.json -------------------------------------------------------------------------------- /libs/eventually/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/libs/eventually/typedoc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/bump.sh -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/clinic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/clinic.sh -------------------------------------------------------------------------------- /scripts/deploy-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/deploy-app.sh -------------------------------------------------------------------------------- /scripts/deploy-function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/deploy-function.sh -------------------------------------------------------------------------------- /scripts/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/dev.sh -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /services/broker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/broker/package.json -------------------------------------------------------------------------------- /services/broker/sql/seed-local-broker.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/broker/sql/seed-local-broker.pgsql -------------------------------------------------------------------------------- /services/broker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/broker/src/index.ts -------------------------------------------------------------------------------- /services/broker/src/modules.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@okta/oidc-middleware"; 2 | -------------------------------------------------------------------------------- /services/broker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/broker/tsconfig.json -------------------------------------------------------------------------------- /services/calculator/http/calculator.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/http/calculator.http -------------------------------------------------------------------------------- /services/calculator/http/counter.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/http/counter.http -------------------------------------------------------------------------------- /services/calculator/http/projector.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/http/projector.http -------------------------------------------------------------------------------- /services/calculator/http/stream.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/http/stream.http -------------------------------------------------------------------------------- /services/calculator/http/swagger.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/http/swagger.http -------------------------------------------------------------------------------- /services/calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/package.json -------------------------------------------------------------------------------- /services/calculator/security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/security.json -------------------------------------------------------------------------------- /services/calculator/src/__tests__/allstream.express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/allstream.express.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/calculator.express.proxy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/calculator.express.proxy.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/calculator.express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/calculator.express.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/express.store.errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/express.store.errors.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/messages.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/projector.express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/projector.express.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/__tests__/statelesscounter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/__tests__/statelesscounter.spec.ts -------------------------------------------------------------------------------- /services/calculator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/src/index.ts -------------------------------------------------------------------------------- /services/calculator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/calculator/tsconfig.json -------------------------------------------------------------------------------- /services/hotel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/package.json -------------------------------------------------------------------------------- /services/hotel/src/Hotel.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/Hotel.projector.ts -------------------------------------------------------------------------------- /services/hotel/src/Next30Days.projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/Next30Days.projector.ts -------------------------------------------------------------------------------- /services/hotel/src/Room.aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/Room.aggregate.ts -------------------------------------------------------------------------------- /services/hotel/src/Room.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/Room.models.ts -------------------------------------------------------------------------------- /services/hotel/src/Room.schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/Room.schemas.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/Room.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/Room.spec.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/monthly-bookings.policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/monthly-bookings.policy.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/pm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/pm.spec.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/pm.workers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/pm.workers.spec.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/room.aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/room.aggregate.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/schemas.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/spawn-ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/spawn-ts.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/utils.ts -------------------------------------------------------------------------------- /services/hotel/src/__tests__/process-manager/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/__tests__/process-manager/worker.ts -------------------------------------------------------------------------------- /services/hotel/src/http/Room.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/http/Room.http -------------------------------------------------------------------------------- /services/hotel/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/index.ts -------------------------------------------------------------------------------- /services/hotel/src/routes/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/routes/home.ts -------------------------------------------------------------------------------- /services/hotel/src/routes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./home"; 2 | -------------------------------------------------------------------------------- /services/hotel/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/utils.ts -------------------------------------------------------------------------------- /services/hotel/src/views/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/views/home.hbs -------------------------------------------------------------------------------- /services/hotel/src/views/layouts/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/src/views/layouts/main.hbs -------------------------------------------------------------------------------- /services/hotel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/services/hotel/tsconfig.json -------------------------------------------------------------------------------- /sites/eventually-site/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/.eslintrc.json -------------------------------------------------------------------------------- /sites/eventually-site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/.gitignore -------------------------------------------------------------------------------- /sites/eventually-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/README.md -------------------------------------------------------------------------------- /sites/eventually-site/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/favicon.ico -------------------------------------------------------------------------------- /sites/eventually-site/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /sites/eventually-site/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /sites/eventually-site/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/globals.css -------------------------------------------------------------------------------- /sites/eventually-site/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/layout.tsx -------------------------------------------------------------------------------- /sites/eventually-site/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/app/page.tsx -------------------------------------------------------------------------------- /sites/eventually-site/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/components.json -------------------------------------------------------------------------------- /sites/eventually-site/components/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/components/home.tsx -------------------------------------------------------------------------------- /sites/eventually-site/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/components/ui/button.tsx -------------------------------------------------------------------------------- /sites/eventually-site/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/components/ui/card.tsx -------------------------------------------------------------------------------- /sites/eventually-site/lib/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/lib/animation.ts -------------------------------------------------------------------------------- /sites/eventually-site/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/lib/utils.ts -------------------------------------------------------------------------------- /sites/eventually-site/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/next.config.mjs -------------------------------------------------------------------------------- /sites/eventually-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/package.json -------------------------------------------------------------------------------- /sites/eventually-site/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/postcss.config.mjs -------------------------------------------------------------------------------- /sites/eventually-site/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/tailwind.config.ts -------------------------------------------------------------------------------- /sites/eventually-site/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/tsconfig.eslint.json -------------------------------------------------------------------------------- /sites/eventually-site/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/sites/eventually-site/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rotorsoft/eventually-monorepo/HEAD/typedoc.json --------------------------------------------------------------------------------