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

Merge clients sdks #4657

Merged
merged 4 commits into from
Dec 5, 2024
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
11 changes: 0 additions & 11 deletions docs/apis-tools/community-clients/c-sharp.md

This file was deleted.

12 changes: 6 additions & 6 deletions docs/apis-tools/community-clients/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Camunda extensions found in the [Camunda Community Hub](https://github.com/camun
:::

:::tip
Camunda now officially supports the [Javascript SDK](/apis-tools/node-js-sdk.md) and the [Spring Zeebe SDK](/apis-tools/spring-zeebe-sdk/getting-started.md).
Camunda now officially supports the [JavaScript SDK](/apis-tools/node-js-sdk.md) and the [Spring Zeebe SDK](/apis-tools/spring-zeebe-sdk/getting-started.md).
:::

In addition to the core Camunda-maintained clients, there are a number of community-maintained component libraries:
Expand All @@ -29,16 +29,16 @@ In addition to the core Camunda-maintained clients, there are a number of commun
<TabItem value='zeebe'>

- [Ballerina](https://github.com/camunda-community-hub/ballerina-zeebe)
- [C#](c-sharp.md)
- [C#](https://github.com/camunda-community-hub/zeebe-client-csharp)
- [CLI](cli-client/index.md)
- [Delphi](https://github.com/camunda-community-hub/DelphiZeeBeClient)
- [EJB](https://github.com/camunda-community-hub/zeebe-ejb-client)
- [Go](go-client/index.md)
- [Micronaut](https://github.com/camunda-community-hub/micronaut-zeebe-client)
- [Python](python.md)
- [Ruby](ruby.md)
- [Rust](rust.md)
- [Quarkus](quarkus.md)
- [Python](https://gitlab.com/stephane.ludwig/zeebe_python_grpc)
- [Quarkus](https://github.com/quarkiverse/quarkus-zeebe)
- [Ruby](https://github.com/zeebe-io/zeebe-client-ruby)
- [Rust](https://github.com/camunda-community-hub/zeebest)

</TabItem>

Expand Down
15 changes: 0 additions & 15 deletions docs/apis-tools/community-clients/micronaut.md

This file was deleted.

18 changes: 0 additions & 18 deletions docs/apis-tools/community-clients/python.md

This file was deleted.

15 changes: 0 additions & 15 deletions docs/apis-tools/community-clients/quarkus.md

This file was deleted.

9 changes: 0 additions & 9 deletions docs/apis-tools/community-clients/ruby.md

This file was deleted.

13 changes: 0 additions & 13 deletions docs/apis-tools/community-clients/rust.md

This file was deleted.

171 changes: 85 additions & 86 deletions optimize_sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -2290,122 +2290,121 @@ module.exports = {
},

{
Clients: [
"Clients & SDKs": [
{
"Java client": [
docsLink("Quick reference", "apis-tools/java-client/"),
docsLink("Job worker", "apis-tools/java-client/job-worker/"),
docsLink("Logging", "apis-tools/java-client/logging/"),
docsLink(
"Zeebe Process Test",
"apis-tools/java-client/zeebe-process-test/"
),
SDKs: [
docsLink("Node.js", "apis-tools/node-js-sdk/"),

{
Examples: [
docsLink("Overview", "apis-tools/java-client-examples/"),
"Spring Zeebe": [
docsLink(
"Deploy a process",
"apis-tools/java-client-examples/process-deploy/"
"Getting started",
"apis-tools/spring-zeebe-sdk/getting-started/"
),
docsLink(
"Create a process instance",
"apis-tools/java-client-examples/process-instance-create/"
),
docsLink(
"Create non-blocking process instances",
"apis-tools/java-client-examples/process-instance-create-nonblocking/"
),
docsLink(
"Create a process instance with results",
"apis-tools/java-client-examples/process-instance-create-with-result/"
),
docsLink(
"Evaluate a decision",
"apis-tools/java-client-examples/decision-evaluate/"
),
docsLink(
"Open a job worker",
"apis-tools/java-client-examples/job-worker-open/"
),
docsLink(
"Handle variables as POJO",
"apis-tools/java-client-examples/data-pojo/"
),
docsLink(
"Request cluster topology",
"apis-tools/java-client-examples/cluster-topology-request/"
"Configuration",
"apis-tools/spring-zeebe-sdk/configuration/"
),
],
},
],
},

{
"Community clients": [
docsLink("Component clients", "apis-tools/community-clients/"),

Clients: [
{
"Zeebe clients": [
docsLink("C#", "apis-tools/community-clients/c-sharp/"),
"Java client": [
docsLink("Quick reference", "apis-tools/java-client/"),
docsLink("Job worker", "apis-tools/java-client/job-worker/"),
docsLink("Logging", "apis-tools/java-client/logging/"),
docsLink(
"JavaScript/Node.js",
"apis-tools/community-clients/javascript/"
"Zeebe Process Test",
"apis-tools/java-client/zeebe-process-test/"
),
docsLink(
"Micronaut",
"apis-tools/community-clients/micronaut/"
),
docsLink("Python", "apis-tools/community-clients/python/"),
docsLink("Ruby", "apis-tools/community-clients/ruby/"),
docsLink("Rust", "apis-tools/community-clients/rust/"),
docsLink("Spring", "apis-tools/community-clients/spring/"),
docsLink("Quarkus", "apis-tools/community-clients/quarkus/"),

{
"CLI client": [
docsLink("Quick reference", "apis-tools/cli-client/"),
Examples: [
docsLink("Overview", "apis-tools/java-client-examples/"),
docsLink(
"Deploy a process",
"apis-tools/java-client-examples/process-deploy/"
),
docsLink(
"Create a process instance",
"apis-tools/java-client-examples/process-instance-create/"
),
docsLink(
"Create non-blocking process instances",
"apis-tools/java-client-examples/process-instance-create-nonblocking/"
),
docsLink(
"Create a process instance with results",
"apis-tools/java-client-examples/process-instance-create-with-result/"
),
docsLink(
"Evaluate a decision",
"apis-tools/java-client-examples/decision-evaluate/"
),
docsLink(
"Open a job worker",
"apis-tools/java-client-examples/job-worker-open/"
),
docsLink(
"Handle variables as POJO",
"apis-tools/java-client-examples/data-pojo/"
),
docsLink(
"Getting started with the CLI client",
"apis-tools/cli-client/cli-get-started/"
"Request cluster topology",
"apis-tools/java-client-examples/cluster-topology-request/"
),
],
},
],
},

{
"Community clients": [
docsLink("Component clients", "apis-tools/community-clients/"),

{
"Go client": [
docsLink("Quick reference", "apis-tools/go-client/"),
"Zeebe clients": [
docsLink(
"Getting started with the Go client",
"apis-tools/go-client/go-get-started/"
"JavaScript/Node.js",
"apis-tools/community-clients/javascript/"
),
docsLink("Job worker", "apis-tools/go-client/job-worker/"),
docsLink("Spring", "apis-tools/community-clients/spring/"),
{
"CLI client": [
docsLink("Quick reference", "apis-tools/cli-client/"),
docsLink(
"Getting started with the CLI client",
"apis-tools/cli-client/cli-get-started/"
),
],
},

{
"Go client": [
docsLink("Quick reference", "apis-tools/go-client/"),
docsLink(
"Getting started with the Go client",
"apis-tools/go-client/go-get-started/"
),
docsLink(
"Job worker",
"apis-tools/go-client/job-worker/"
),
],
},
],
},
docsLink(
"Build your own client",
"apis-tools/build-your-own-client/"
),
],
},
],
},

docsLink("Build your own client", "apis-tools/build-your-own-client/"),
],
},

{
SDKs: [
docsLink("Node.js", "apis-tools/node-js-sdk/"),

{
"Spring Zeebe": [
docsLink(
"Getting started",
"apis-tools/spring-zeebe-sdk/getting-started/"
),
docsLink(
"Configuration",
"apis-tools/spring-zeebe-sdk/configuration/"
),
],
},
],
},

Expand Down
Loading
Loading