1
+ > [ !CAUTION]
2
+ > This is a legacy branch. It is not officially supported by the ServerlessWorkflow organisation anymore but still accepts community contributions.
3
+
1
4
![ Node CI] ( https://github.com/serverlessworkflow/sdk-typescript/workflows/Node%20CI/badge.svg ) [ ![ Gitpod ready-to-code] ( https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod )] ( https://gitpod.io/#https://github.com/serverlessworkflow/sdk-typescript )
2
5
3
6
# Serverless Workflow Specification - Typescript SDK
@@ -17,6 +20,7 @@ With the SDK you can:
17
20
| [ v1.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.6] ( https://github.com/serverlessworkflow/specification/tree/0.6.x ) |
18
21
| [ v2.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.7] ( https://github.com/serverlessworkflow/specification/tree/0.7.x ) |
19
22
| [ v3.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.8] ( https://github.com/serverlessworkflow/specification/tree/0.8.x ) |
23
+ | [ v4.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.9] ( https://github.com/serverlessworkflow/specification/tree/0.9.x ) |
20
24
21
25
22
26
@@ -39,7 +43,6 @@ npm install && npm run build && npm run test
39
43
40
44
41
45
##### Version >= 4.0.0
42
- Note: Version 4.0.0 has not been released yet.
43
46
``` sh
44
47
npm i @serverlessworkflow/sdk-typescript
45
48
```
@@ -59,7 +62,7 @@ import { workflowBuilder, injectstateBuilder, Specification } from '@serverlessw
59
62
60
63
const workflow: Specification .Workflow = workflowBuilder ()
61
64
.id (" helloworld" )
62
- .specVersion (" 0.8 " )
65
+ .specVersion (" 0.9 " )
63
66
.version (" 1.0" )
64
67
.name (" Hello World Workflow" )
65
68
.description (" Inject Hello World" )
@@ -107,7 +110,7 @@ import { workflowBuilder, injectstateBuilder, Specification } from '@serverlessw
107
110
const workflow: Specification .Workflow = workflowBuilder ()
108
111
.id (" helloworld" )
109
112
.version (" 1.0" )
110
- .specVersion (" 0.8 " )
113
+ .specVersion (" 0.9 " )
111
114
.name (" Hello World Workflow" )
112
115
.description (" Inject Hello World" )
113
116
.start (" Hello State" )
@@ -162,7 +165,7 @@ import {Workflow} from "./workflow";
162
165
const workflow = {
163
166
id: ' helloworld' ,
164
167
version: ' 1.0' ,
165
- specVersion: ' 0.3 ' ,
168
+ specVersion: ' 0.9 ' ,
166
169
name: ' Hello World Workflow' ,
167
170
description: ' Inject Hello World' ,
168
171
start: ' Hello State' ,
0 commit comments