docs: added documentation pages for experimental features (#5671)

* docs: added documentation pages for experimental features

* fix content lint issues

* fixed lint errors

* added migration step

* added workflows introduction

* add installation guides

* added installation guides for modules + generated workflows reference

* added missing workflows reference link

* Added warning message for experimental features

* fix note
This commit is contained in:
Shahed Nasser
2023-11-27 16:49:12 +00:00
committed by GitHub
parent cf0939aab2
commit cdc1da5df7
148 changed files with 14225 additions and 435 deletions

View File

@@ -0,0 +1,17 @@
---
displayed_sidebar: workflowsSidebar
---
import ParameterTypes from "@site/src/components/ParameterTypes"
# MODULE\_RESOURCE\_TYPE
## ISOLATED
**ISOLATED** = `"isolated"`
___
## SHARED
**SHARED** = `"shared"`

View File

@@ -0,0 +1,17 @@
---
displayed_sidebar: workflowsSidebar
---
import ParameterTypes from "@site/src/components/ParameterTypes"
# TransactionHandlerType
## COMPENSATE
**COMPENSATE** = `"compensate"`
___
## INVOKE
**INVOKE** = `"invoke"`

View File

@@ -0,0 +1,59 @@
---
displayed_sidebar: workflowsSidebar
---
import ParameterTypes from "@site/src/components/ParameterTypes"
# TransactionState
## COMPENSATING
**COMPENSATING** = `"compensating"`
___
## DONE
**DONE** = `"done"`
___
## DORMANT
**DORMANT** = `"dormant"`
___
## FAILED
**FAILED** = `"failed"`
___
## INVOKING
**INVOKING** = `"invoking"`
___
## NOT\_STARTED
**NOT\_STARTED** = `"not_started"`
___
## REVERTED
**REVERTED** = `"reverted"`
___
## SKIPPED
**SKIPPED** = `"skipped"`
___
## WAITING\_TO\_COMPENSATE
**WAITING\_TO\_COMPENSATE** = `"waiting_to_compensate"`

View File

@@ -0,0 +1,35 @@
---
displayed_sidebar: workflowsSidebar
---
import ParameterTypes from "@site/src/components/ParameterTypes"
# TransactionStepStatus
## IDLE
**IDLE** = `"idle"`
___
## OK
**OK** = `"ok"`
___
## PERMANENT\_FAILURE
**PERMANENT\_FAILURE** = `"permanent_failure"`
___
## TEMPORARY\_FAILURE
**TEMPORARY\_FAILURE** = `"temp_failure"`
___
## WAITING
**WAITING** = `"waiting_response"`