Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename: some remaining akkaserverless to kalix renaming #308

Merged
merged 1 commit into from
Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Each sample under `samples` can be run locally. See their READMEs for details.

## TCK

To run the Akka Serverless TCK, see [tck/README.md].
To run the Kalix TCK, see [tck/README.md].


## Docs
Expand Down
2 changes: 1 addition & 1 deletion codegen/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ lazy val commonSettings =
|
|""".stripMargin)),
// Publishing
publishTo := Some("Cloudsmith API".at("https://maven.cloudsmith.io/lightbend/akkaserverless/")),
publishTo := Some("Cloudsmith API".at("https://maven.cloudsmith.io/lightbend/kalix/")),
pomIncludeRepository := { x => false },
credentials += Credentials(
"Cloudsmith API",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ IFS=$'\n\t'
# Re-generates sample proto file descriptors from the source
# Usage: ./generate-from-samples.sh /path/to/kalix-proxy

if [ $# -lt 2 ]; then
if [ $# -lt 1 ]; then
echo "Required arguments not supplied"
echo "Usage: ./generate-from-samples.sh /path/to/kalix-proxy
echo "Usage: ./generate-from-samples.sh /path/to/kalix-proxy"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion codegen/js-gen-cli/src/it/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
kalix-npm-js {
# By default, we assume the akkaserverless npm-js project is checked out next to this repository
# By default, we assume the kalix npm-js project is checked out next to this repository
path = "../kalix-npm-js"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object EntityServiceSourceGenerator {
val typedefPath =
sourceDirectory.toAbsolutePath
.relativize(generatedSourceDirectory.toAbsolutePath)
.resolve(service.fqn.name.toLowerCase())
.resolve(entity.fqn.name.toLowerCase())
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small fix, the generated files use the entity name not the service name, typedef imports were wrong

.toString

val entityType = entity match {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ class EntityServiceSourceGeneratorSuite extends munit.FunSuite {
| * A TypeScript aware editor such as VS Code will be able to leverage them to provide hinting and validation.
| *
| * State; the serialisable and persistable state of the entity
| * @typedef { import("../../lib/generated/myservice").State } State
| * @typedef { import("../../lib/generated/myentity").State } State
| *
| * Event; the union of all possible event types
| * @typedef { import("../../lib/generated/myservice").Event } Event
| * @typedef { import("../../lib/generated/myentity").Event } Event
| *
| * MyService; a strongly typed extension of EventSourcedEntity derived from your proto source
| * @typedef { import("../../lib/generated/myservice").MyService } MyService
| * @typedef { import("../../lib/generated/myentity").MyService } MyService
| */
|
|/**
Expand Down Expand Up @@ -124,10 +124,10 @@ class EntityServiceSourceGeneratorSuite extends munit.FunSuite {
| * A TypeScript aware editor such as VS Code will be able to leverage them to provide hinting and validation.
| *
| * State; the serialisable and persistable state of the entity
| * @typedef { import("../../lib/generated/myservice").State } State
| * @typedef { import("../../lib/generated/myvalueentity").State } State
| *
| * MyService; a strongly typed extension of ValueEntity derived from your proto source
| * @typedef { import("../../lib/generated/myservice").MyService } MyService
| * @typedef { import("../../lib/generated/myvalueentity").MyService } MyService
| */
|
|/**
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ managed_attachments := ${src_managed}/modules/${module}/attachments
managed_examples := ${src_managed}/modules/${module}/examples
managed_partials := ${src_managed}/modules/${module}/partials

antora_docker_image := gcr.io/akkaserverless-public/akkaserverless-docbuilder
antora_docker_image := gcr.io/kalix-public/kalix-docbuilder
antora_docker_image_tag := 0.0.5
root_dir := $(shell git rev-parse --show-toplevel)
base_path := $(shell git rev-parse --show-prefix)
Expand Down
6 changes: 3 additions & 3 deletions npm-js/create-kalix-entity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ This tool can be used to generate a project suitable for the general development

There are two templates available to select from:

- `value-entity` (default); provides the starting point to develop a [Value Entity](https://docs.akkaserverless.dev/js-services/value-entity.html)
- `event-sourced-entity`; provides the starting point to develop an [Event Sourced Entity](https://docs.akkaserverless.dev/js-services/eventsourced.html)
- `value-entity` (default); provides the starting point to develop a [Value Entity](https://docs.kalix.io/javascript/value-entity.html)
- `event-sourced-entity`; provides the starting point to develop an [Event Sourced Entity](https://docs.kalix.io/javascript/eventsourced.html)

To create the initial codebase for a new entity with npm:

Expand Down Expand Up @@ -49,7 +49,7 @@ npm pack
...and then install locally (substituting <some-version> with the version that the above `npm pack` reports):

```sh
npm install -g lightbend-create-kalix-entity-<some-version>.tgz
npm install -g kalix-io-create-kalix-entity-<some-version>.tgz
```

As the `create-kalix-entity` command is now locally installed, you are able to run:
Expand Down
2 changes: 1 addition & 1 deletion npm-js/create-kalix-entity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"yargs": "^17.0.1"
},
"bin": {
"create-kalix-entity": ""
"create-kalix-entity": "create-kalix-entity.js"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was important, otherwise the create-kalix-entity doesn't work

},
"scripts": {
"prepublishOnly": "npm version --no-git-tag-version $(../../sdk/bin/version.sh)"
Expand Down
2 changes: 1 addition & 1 deletion npm-js/create-kalix-entity/template/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to the project generated by Kalix code generation tools! The tools have
No additional tooling is required to develop locally. To package and deploy to Kalix, you will need the following:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Project overview

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.0.0-M2
command: -Dconfig.resource=dev-mode.conf -Dakkaserverless.proxy.eventing.support=google-pubsub-emulator
command: -Dconfig.resource=dev-mode.conf -kalix.proxy.eventing.support=google-pubsub-emulator
ports:
- "9000:9000"
extra_hosts:
Expand Down
6 changes: 3 additions & 3 deletions npm-js/create-kalix-entity/template/base/test/testkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class MockValueEntity {

/**
* Generic mock CommandContext for any Kalix entity
* @type { import("../lib/akkaserverless").CommandContext }
* @type { import("../lib/kalix").CommandContext }
*/
export class MockCommandContext {
effects = [];
Expand Down Expand Up @@ -154,7 +154,7 @@ export class MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").EventSourcedCommandContext<unknown> }
* @type { import("../lib/kalix").EventSourcedCommandContext<unknown> }
*/
export class MockEventSourcedCommandContext extends MockCommandContext {
events = [];
Expand All @@ -171,7 +171,7 @@ export class MockEventSourcedCommandContext extends MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").ValueEntityCommandContext<unknown> }
* @type { import("../lib/kalix").ValueEntityCommandContext<unknown> }
*/
export class MockValueEntityCommandContext extends MockCommandContext {
updatedState = undefined;
Expand Down
2 changes: 1 addition & 1 deletion npm-js/kalix-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "Create a Kalix entity codebase with a single command.",
"main": "kalix-scripts.js",
"repository": "https://github.com/lightbend/akkaserverless-npm-js",
"repository": "https://github.com/lightbend/kalix-javascript-sdk",
"author": "Lightbend Inc",
"license": "Copyright (c) Lightbend Inc. 2021",
"engines": {
Expand Down
Binary file removed samples/js/js-doc-snippets/user-function.desc
Binary file not shown.
2 changes: 1 addition & 1 deletion samples/js/js-eventsourced-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to the project generated by Kalix code generation tools! The tools have
No additional tooling is required to develop locally. To package and deploy to Kalix, you will need the following:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Project overview

Expand Down
6 changes: 3 additions & 3 deletions samples/js/js-eventsourced-shopping-cart/test/testkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class MockValueEntity {

/**
* Generic mock CommandContext for any Kalix entity
* @type { import("../lib/akkaserverless").CommandContext }
* @type { import("../lib/kalix").CommandContext }
*/
export class MockCommandContext {
effects = [];
Expand Down Expand Up @@ -170,7 +170,7 @@ export class MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").EventSourcedCommandContext<unknown> }
* @type { import("../lib/kalix").EventSourcedCommandContext<unknown> }
*/
export class MockEventSourcedCommandContext extends MockCommandContext {
events = [];
Expand All @@ -187,7 +187,7 @@ export class MockEventSourcedCommandContext extends MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").ValueEntityCommandContext<unknown> }
* @type { import("../lib/kalix").ValueEntityCommandContext<unknown> }
*/
export class MockValueEntityCommandContext extends MockCommandContext {
updatedState = undefined;
Expand Down
2 changes: 1 addition & 1 deletion samples/js/js-replicated-entity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ particular the [JavaScript section](https://docs.kalix.io/javascript/index.html)
No additional tooling is required for local development. To build and deploy to a cluster:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Building

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.0.0-M2
command: -Dconfig.resource=dev-mode.conf -Dakkaserverless.proxy.eventing.support=google-pubsub-emulator
command: -Dconfig.resource=dev-mode.conf -Dkalix.proxy.eventing.support=google-pubsub-emulator
ports:
- "9000:9000"
extra_hosts:
Expand Down
2 changes: 1 addition & 1 deletion samples/js/js-valueentity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and in particular the [JavaScript section](https://docs.kalix.io/javascript/inde
No additional tooling is required for local development. To build and deploy to a cluster:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Building

Expand Down
4 changes: 2 additions & 2 deletions samples/js/js-valueentity-shopping-cart/test/testkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").EventSourcedCommandContext<unknown> }
* @type { import("../lib/kalix").EventSourcedCommandContext<unknown> }
*/
export class MockEventSourcedCommandContext extends MockCommandContext {
events = [];
Expand All @@ -187,7 +187,7 @@ export class MockEventSourcedCommandContext extends MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").ValueEntityCommandContext<unknown> }
* @type { import("../lib/kalix").ValueEntityCommandContext<unknown> }
*/
export class MockValueEntityCommandContext extends MockCommandContext {
updatedState = undefined;
Expand Down
2 changes: 1 addition & 1 deletion samples/js/valueentity-counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and in particular the [JavaScript section](https://docs.kalix.io/javascript/inde
No additional tooling is required for local development. To build and deploy to a cluster:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Building

Expand Down
2 changes: 1 addition & 1 deletion samples/ts/ts-customer-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ npm start
Start the proxy:

```
docker run --rm -e USER_FUNCTION_HOST=host.docker.internal -p 9000:9000 gcr.io/kalix-public/akkaserverless-proxy
docker run --rm -e USER_FUNCTION_HOST=host.docker.internal -p 9000:9000 gcr.io/kalix-public/kalix-proxy
```

Create a customer:
Expand Down
4 changes: 2 additions & 2 deletions samples/ts/ts-customer-registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"prestart": "npm run build",
"start": "node dist/index.js",
"start-no-prestart": "node dist/index.js",
"docker-build": "docker build -f Dockerfile -t ${DOCKER_PUBLISH_TO:-akkaserverless}/ts-customer-registry:$(../../../sdk/bin/version.sh) ../../..",
"docker-push": "docker push ${DOCKER_PUBLISH_TO:-akkaserverless}/ts-customer-registry:$(../../../sdk/bin/version.sh)",
"docker-build": "docker build -f Dockerfile -t ${DOCKER_PUBLISH_TO:-kalix}/ts-customer-registry:$(../../../sdk/bin/version.sh) ../../..",
"docker-push": "docker push ${DOCKER_PUBLISH_TO:-kalix}/ts-customer-registry:$(../../../sdk/bin/version.sh)",
"docker-build-push": "npm run docker-build && npm run docker-push"
}
}
2 changes: 1 addition & 1 deletion samples/ts/ts-eventsourced-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to the project generated by Kalix code generation tools! The tools have
No additional tooling is required to develop locally. To package and deploy to Kalix, you will need the following:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Project overview

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.0.0-M2
command: -Dconfig.resource=dev-mode.conf -Dakkaserverless.proxy.eventing.support=google-pubsub-emulator
command: -Dconfig.resource=dev-mode.conf -Dkalix.proxy.eventing.support=google-pubsub-emulator
ports:
- "9000:9000"
extra_hosts:
Expand Down
2 changes: 1 addition & 1 deletion samples/ts/ts-eventsourced-shopping-cart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"test": "ts-mocha test/**/*.test.ts",
"integration-test": "ts-mocha integration-test/**/*.integration-test.ts",
"test-all": "npm run test && npm run integration-test",
"build": "kalix-scripts build && rimraf {src,test,integration-test}/**/*.js && rimraf lib/**/*{akkaserverless,shoppingcart,index}.{js,d.ts} && tsc",
"build": "kalix-scripts build && rimraf {src,test,integration-test}/**/*.js && rimraf lib/**/*{kalix,shoppingcart,index}.{js,d.ts} && tsc",
"package": "kalix-scripts package",
"deploy": "kalix-scripts deploy"
}
Expand Down
4 changes: 2 additions & 2 deletions samples/ts/ts-eventsourced-shopping-cart/test/testkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class MockEventSourcedEntity<S> {

/**
* Generic mock CommandContext for any Kalix entity
* @type { import("../lib/akkaserverless").CommandContext }
* @type { import("../lib/kalix").CommandContext }
*/
export class MockCommandContext {
effects: Array<any> = [];
Expand Down Expand Up @@ -125,7 +125,7 @@ export class MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emmitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").EventSourcedCommandContext<unknown> }
* @type { import("../lib/kalix").EventSourcedCommandContext<unknown> }
*/
export class MockEventSourcedCommandContext
extends MockCommandContext
Expand Down
4 changes: 2 additions & 2 deletions samples/ts/ts-replicated-entity-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"prestart": "npm run build",
"start": "node dist/index.js",
"start-no-prestart": "node dist/index.js",
"docker-build": "docker build -f Dockerfile -t ${DOCKER_PUBLISH_TO:-akkaserverless}/ts-replicated-entity-example:$(../../../sdk/bin/version.sh) ../../..",
"docker-push": "docker push ${DOCKER_PUBLISH_TO:-akkaserverless}/ts-replicated-entity-example:$(../../../sdk/bin/version.sh)",
"docker-build": "docker build -f Dockerfile -t ${DOCKER_PUBLISH_TO:-kalix}/ts-replicated-entity-example:$(../../../sdk/bin/version.sh) ../../..",
"docker-push": "docker push ${DOCKER_PUBLISH_TO:-kalix}/ts-replicated-entity-example:$(../../../sdk/bin/version.sh)",
"docker-build-push": "npm run docker-build && npm run docker-push"
}
}
2 changes: 1 addition & 1 deletion samples/ts/ts-replicated-entity-shopping-cart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ particular the [JavaScript section](https://docs.kalix.io/javascript/index.html)
No additional tooling is required for local development. To build and deploy to a cluster:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Building

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.0.0-M2
command: -Dconfig.resource=dev-mode.conf -Dakkaserverless.proxy.eventing.support=google-pubsub-emulator
command: -Dconfig.resource=dev-mode.conf -Dkalix.proxy.eventing.support=google-pubsub-emulator
ports:
- "9000:9000"
extra_hosts:
Expand Down
2 changes: 1 addition & 1 deletion samples/ts/ts-valueentity-counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and in particular the [JavaScript section](https://docs.kalix.io/javascript/inde
No additional tooling is required for local development. To build and deploy to a cluster:

- Docker; see https://docs.docker.com/engine/install/
- Kalix CLI (`akkasls`); see https://docs.kalix.io/getting-started/set-up-development-env.html#_akka_serverless_cli
- Kalix CLI (`kalix`); see https://docs.kalix.io/kalix/install-kalix.html

## Building

Expand Down
2 changes: 1 addition & 1 deletion samples/ts/ts-valueentity-counter/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.0.0-M2
command: -Dconfig.resource=dev-mode.conf -Dakkaserverless.proxy.eventing.support=google-pubsub-emulator
command: -Dconfig.resource=dev-mode.conf -Dkalix.proxy.eventing.support=google-pubsub-emulator
ports:
- "9000:9000"
extra_hosts:
Expand Down
2 changes: 1 addition & 1 deletion samples/ts/ts-valueentity-counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"start": "node dist/index.js",
"test": "ts-mocha test/**/*.test.ts",
"integration-test": "ts-mocha integration-test/**/*.test.ts",
"build": "kalix-scripts build && rimraf {src,test,integration-test}/**/*.js && rimraf lib/**/*{akkaserverless,counter,index}.{js,d.ts} && tsc",
"build": "kalix-scripts build && rimraf {src,test,integration-test}/**/*.js && rimraf lib/**/*{kalix,counter,index}.{js,d.ts} && tsc",
"package": "kalix-scripts package",
"deploy": "kalix-scripts deploy"
}
Expand Down
4 changes: 2 additions & 2 deletions samples/ts/ts-valueentity-counter/test/testkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class MockValueEntity<S extends object> {

/**
* Generic mock CommandContext for any Kalix entity
* @type { import("../lib/akkaserverless").CommandContext }
* @type { import("../lib/kalix").CommandContext }
*/
export class MockCommandContext {
effects: Array<any> = [];
Expand Down Expand Up @@ -119,7 +119,7 @@ export class MockCommandContext {
* construct their own instance of this class, however for making assertions on
* forwarding or emmitted effects you may provide your own.
*
* @type { import("../lib/akkaserverless").ValueEntityCommandContext<unknown> }
* @type { import("../lib/kalix").ValueEntityCommandContext<unknown> }
*/
export class MockValueEntityCommandContext
extends MockCommandContext
Expand Down
Loading