1+ > [ !CAUTION]
2+ > This is a legacy branch. It is not officially supported by the ServerlessWorkflow organisation anymore but still accepts community contributions.
3+
14![ 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 )
25
36# Serverless Workflow Specification - Typescript SDK
@@ -17,6 +20,7 @@ With the SDK you can:
1720| [ v1.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.6] ( https://github.com/serverlessworkflow/specification/tree/0.6.x ) |
1821| [ v2.0.0] ( https://github.com/serverlessworkflow/sdk-typescript/releases/ ) | [ v0.7] ( https://github.com/serverlessworkflow/specification/tree/0.7.x ) |
1922| [ 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 ) |
2024
2125
2226
@@ -39,7 +43,6 @@ npm install && npm run build && npm run test
3943
4044
4145##### Version >= 4.0.0
42- Note: Version 4.0.0 has not been released yet.
4346``` sh
4447npm i @serverlessworkflow/sdk-typescript
4548```
@@ -59,7 +62,7 @@ import { workflowBuilder, injectstateBuilder, Specification } from '@serverlessw
5962
6063const workflow: Specification .Workflow = workflowBuilder ()
6164 .id (" helloworld" )
62- .specVersion (" 0.8 " )
65+ .specVersion (" 0.9 " )
6366 .version (" 1.0" )
6467 .name (" Hello World Workflow" )
6568 .description (" Inject Hello World" )
@@ -107,7 +110,7 @@ import { workflowBuilder, injectstateBuilder, Specification } from '@serverlessw
107110const workflow: Specification .Workflow = workflowBuilder ()
108111 .id (" helloworld" )
109112 .version (" 1.0" )
110- .specVersion (" 0.8 " )
113+ .specVersion (" 0.9 " )
111114 .name (" Hello World Workflow" )
112115 .description (" Inject Hello World" )
113116 .start (" Hello State" )
@@ -162,7 +165,7 @@ import {Workflow} from "./workflow";
162165const workflow = {
163166 id: ' helloworld' ,
164167 version: ' 1.0' ,
165- specVersion: ' 0.3 ' ,
168+ specVersion: ' 0.9 ' ,
166169 name: ' Hello World Workflow' ,
167170 description: ' Inject Hello World' ,
168171 start: ' Hello State' ,
0 commit comments