Skip to content
Open
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
1 change: 0 additions & 1 deletion .build-tools/component-folders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ componentFolders:
- pubsub
- secretstores
- state
- workflows
- conversation

excludeFolders:
Expand Down
5 changes: 0 additions & 5 deletions .build-tools/pkg/metadataanalyzer/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,6 @@ func GenerateMetadataAnalyzer(contribRoot string, componentFolders []string, out
if methodFinderErr == nil {
methodFound = true
}
case "workflows":
method, methodFinderErr = getConstructorMethod("workflows.Workflow", parsedFile)
if methodFinderErr == nil {
methodFound = true
}
case "configuration":
method, methodFinderErr = getConstructorMethod("configuration.Store", parsedFile)
if methodFinderErr == nil {
Comment on lines 113 to 115
Expand Down
2 changes: 1 addition & 1 deletion .build-tools/pkg/metadataschema/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type ComponentMetadata struct {
// Version of the component metadata schema.
SchemaVersion string `json:"schemaVersion" yaml:"schemaVersion" jsonschema:"enum=v1"`
// Component type, of one of the allowed values.
Type string `json:"type" yaml:"type" jsonschema:"enum=bindings,enum=state,enum=secretstores,enum=pubsub,enum=workflows,enum=configuration,enum=lock,enum=middleware,enum=crypto,enum=nameresolution,enum=conversation"`
Type string `json:"type" yaml:"type" jsonschema:"enum=bindings,enum=state,enum=secretstores,enum=pubsub,enum=configuration,enum=lock,enum=middleware,enum=crypto,enum=nameresolution,enum=conversation"`
// Name of the component (without the inital type, e.g. "http" instead of "bindings.http").
Name string `json:"name" yaml:"name"`
// Version of the component, with the leading "v", e.g. "v1".
Expand Down
1 change: 0 additions & 1 deletion component-metadata-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@
"state",
"secretstores",
"pubsub",
"workflows",
"configuration",
"lock",
"middleware",
Expand Down
3 changes: 1 addition & 2 deletions metadata/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ const (
MiddlewareType ComponentType = "middleware"
CryptoType ComponentType = "crypto"
NameResolutionType ComponentType = "nameresolution"
WorkflowType ComponentType = "workflows"
ConversationType ComponentType = "conversation"
)

Expand All @@ -160,7 +159,7 @@ func (t ComponentType) IsValid() bool {
SecretStoreType, PubSubType,
LockStoreType, ConfigurationStoreType,
MiddlewareType, CryptoType,
NameResolutionType, WorkflowType,
NameResolutionType,
ConversationType:
return true
default:
Expand Down
3 changes: 0 additions & 3 deletions tests/config/workflows/tests.yml

This file was deleted.

58 changes: 0 additions & 58 deletions tests/conformance/workflow_test.go

This file was deleted.

111 changes: 0 additions & 111 deletions tests/conformance/workflows/workflows.go

This file was deleted.

11 changes: 0 additions & 11 deletions workflows/README.md

This file was deleted.

21 changes: 0 additions & 21 deletions workflows/metadata.go

This file was deleted.

45 changes: 0 additions & 45 deletions workflows/requests.go

This file was deleted.

20 changes: 0 additions & 20 deletions workflows/responses.go

This file was deleted.

35 changes: 0 additions & 35 deletions workflows/workflow.go

This file was deleted.

Loading