Skip to content

Commit 65b0749

Browse files
authored
small improvements (#517)
Signed-off-by: Antonio Mendoza Pérez <[email protected]>
1 parent bd29ecd commit 65b0749

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-green.svg?style=flat)](https://github.com/serverlessworkflow/specification/issues)
22
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/serverlessworkflow/specification/blob/master/LICENSE)
33
[<img src="http://img.shields.io/badge/slack-@serverless--workflow-red?style=social&logo=slack">](https://cloud-native.slack.com/messages/serverless-workflow)
4-
[<img src="http://img.shields.io/badge/web-serverlessworkflow.io-red?style=social&logo=google-chrome">](https://cloud-native.slack.com/messages/serverless-workflow)
4+
[<img src="http://img.shields.io/badge/web-serverlessworkflow.io-red?style=social&logo=google-chrome">](https://serverlessworkflow.io/)
55
[<img src="https://img.shields.io/twitter/follow/CNCFWorkflow?style=social">](https://twitter.com/CNCFWorkflow)
66

77
## About
@@ -23,8 +23,8 @@ Cloud Native Sandbox level project on July 14, 2020.
2323

2424
- [CNCF Landscape](#CNCF-Landscape)
2525
- [Releases](#Releases)
26-
- [SDKs](#SDKs)
2726
- [Runtimes](#Runtimes)
27+
- [SDKs](#SDKs)
2828
- [Tooling](#Tooling)
2929
- [Community](#Community)
3030
- [Communication](#Communication)

specification.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
+ [Data Merging](#data-merging)
2525
* [Workflow Functions](#workflow-functions)
2626
+ [Using Functions for RESTful Service Invocations](#using-functions-for-restful-service-invocations)
27-
+ [Using Functions for Async API Invocations](#using-functions-for-async-api-invocations)
27+
+ [Using Functions for Async API Service Invocations](#using-functions-for-async-api-service-invocations)
2828
+ [Using Functions for RPC Service Invocations](#using-functions-for-rpc-service-invocations)
2929
+ [Using Functions for GraphQL Service Invocations](#using-functions-for-graphql-service-invocations)
3030
- [Invoking a GraphQL `Query`](#invoking-a-graphql-query)
3131
- [Invoking a GraphQL `Mutation`](#invoking-a-graphql-mutation)
32-
+ [Using Functions for OData Service Invocations](#using-functions-for-odata-service-invocations)
32+
+ [Using Functions for OData Service Invocations](#using-functions-for-odata-service-invocations)
3333
- [Creating an OData Function Definition](#creating-an-odata-function-definition)
3434
- [Invoking an OData Function Definition](#invoking-an-odata-function-definition)
3535
+ [Using Functions for Expression Evaluation](#using-functions-for-expression-evaluation)
36-
+ [Defining custom Function types](#defining-custom-function-types)
36+
+ [Defining custom function types](#defining-custom-function-types)
3737
* [Workflow Expressions](#workflow-expressions)
3838
* [Workflow Definition Structure](#workflow-definition-structure)
3939
+ [Workflow States](#workflow-states)
@@ -49,6 +49,9 @@
4949
- [Function Definition](#function-definition)
5050
- [Event Definition](#event-definition)
5151
- [Auth Definition](#auth-definition)
52+
- [Basic Properties Definition](#basic-properties-definition)
53+
- [Bearer Properties Definition](#bearer-properties-definition)
54+
- [OAuth2 Properties Definition](#oauth2-properties-definition)
5255
- [Correlation Definition](#correlation-definition)
5356
- [OnEvents Definition](#onevents-definition)
5457
- [Action Definition](#action-definition)
@@ -72,7 +75,7 @@
7275
- [Additional Properties](#additional-properties)
7376
* [Workflow Error Handling](#workflow-error-handling)
7477
+ [Defining Errors](#defining-errors)
75-
* [Action Retries](#action-retries)
78+
* [Action retries](#action-retries)
7679
+ [Retry actions on known errors](#retry-actions-on-known-errors)
7780
+ [Automatic retries on known and unknown errors](#automatic-retries-on-known-and-unknown-errors)
7881
* [Workflow Timeouts](#workflow-timeouts)
@@ -127,7 +130,7 @@ Serverless Workflow focuses on defining a **vendor-neutral**, **platform-indepen
127130
language that targets the serverless computing technology domain.
128131
It can be used to significantly bridge the gap between your unique business domain and the target technology domain.
129132

130-
### Why we need a specification
133+
### Why we need a specification?
131134

132135
The lack of a common way to define and model workflows means that we must constantly re-learn
133136
how to write them. This also limits the potential for common libraries, tooling and
@@ -165,8 +168,7 @@ The specification has multiple components:
165168

166169
* Definitions of the workflow language. This is defined via the [Workflow JSON Schema](schema/workflow.json). You can use both
167170
[JSON](https://www.json.org/json-en.html) and [YAML](https://yaml.org/) formats to model your workflows.
168-
* Software Development Kits (SDKs) for both [Go](https://github.com/serverlessworkflow/sdk-go) and [Java](https://github.com/serverlessworkflow/sdk-java),
169-
and we plan to add them for more languages in the future.
171+
* Software Development Kits (SDKs) for [Go](https://github.com/serverlessworkflow/sdk-go), [Java](https://github.com/serverlessworkflow/sdk-java), [.NET](https://github.com/serverlessworkflow/sdk-net) and [Typescript](https://github.com/serverlessworkflow/sdk-typescript), and we plan to add them for more languages in the future.
170172
* Set of [Workflow Extensions](extensions/README.md) which
171173
allow users to define additional, non-execution-related workflow information. This information can be used to improve
172174
workflow performance.

0 commit comments

Comments
 (0)