Skip to content

Commit 4ec4dfc

Browse files
committed
## Terraform SDK Changes Detected:
* `SDK.Closing Reason.createClosingReason()`: `request` **Changed** **Breaking** ⚠️ * `SDK.Workflows.createDefinition()`: * `request` **Changed** * `response` **Changed** **Breaking** ⚠️ * `SDK.Flows V2.createFlowTemplate()`: **Added** * `SDK.Flows V2.searchFlowTemplates()`: **Added** * `SDK.Closing Reason.deleteClosingReason()`: **Added** * `SDK.Flows V2.deleteFlowTemplate()`: **Added** * `SDK.Flows V2.duplicateFlowTemplate()`: **Added** * `SDK.Flows V2.getFlowTemplate()`: **Added** * `SDK.Flows V2.listFlowTemplates()`: **Added** * `SDK.Closing Reason.updateClosingReason()`: **Added** * `SDK.Flows V2.updateFlowTemplate()`: **Added** * `SDK.Closing Reason.getClosingReasonV1()`: **Added** * `SDK.Closing Reason.getClosingReason()`: **Added** * `SDK.Workflows.getDefinition()`: `response` **Changed** * `SDK.Workflows.getDefinitions()`: `response.[]` **Changed** * `SDK.Workflows.updateDefinition()`: * `request.WorkflowDefinition` **Changed** * `response` **Changed**
1 parent 2be2d90 commit 4ec4dfc

File tree

161 files changed

+6268
-13868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+6268
-13868
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.env
2+
.env.local
13
**/.speakeasy/temp/
24
**/.speakeasy/logs/
35
.terraform

.speakeasy/gen.lock

Lines changed: 54 additions & 75 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
speakeasyVersion: 1.606.10
1+
speakeasyVersion: 1.636.3
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:2ee81d075cfd43eeb48662bce1ecc240dd0dd642c3f5a17946ecdd6902fea272
6-
sourceBlobDigest: sha256:ca57c9f570036cc2e6be6bc717859bdf514add526b696920bca75f1801c7cace
5+
sourceRevisionDigest: sha256:c52c4814735af276d55ea024eae3b463e0da0fdb4be3bb5350fd5d2a835eb3af
6+
sourceBlobDigest: sha256:457ebd0c094bdb65d3284268d8780ae9973f9bc7dc728d0ff6bacfda53966852
77
tags:
88
- latest
9+
- speakeasy-sdk-regen-1759279029
910
- 1.0.0
1011
targets:
1112
terraform:
1213
source: my-source
1314
sourceNamespace: my-source
14-
sourceRevisionDigest: sha256:2ee81d075cfd43eeb48662bce1ecc240dd0dd642c3f5a17946ecdd6902fea272
15-
sourceBlobDigest: sha256:ca57c9f570036cc2e6be6bc717859bdf514add526b696920bca75f1801c7cace
15+
sourceRevisionDigest: sha256:c52c4814735af276d55ea024eae3b463e0da0fdb4be3bb5350fd5d2a835eb3af
16+
sourceBlobDigest: sha256:457ebd0c094bdb65d3284268d8780ae9973f9bc7dc728d0ff6bacfda53966852
1617
workflow:
1718
workflowVersion: 1.0.0
1819
speakeasyVersion: latest

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ terraform {
6161
required_providers {
6262
epilot-workflow = {
6363
source = "epilot-dev/epilot-workflow"
64-
version = "0.19.0"
64+
version = "0.20.0"
6565
}
6666
}
6767
}
@@ -114,19 +114,24 @@ provider_installation {
114114
```
115115
<!-- End Testing the provider locally [usage] -->
116116

117+
<!-- Start Authentication [security] -->
118+
## Authentication
119+
120+
This provider supports authentication configuration via provider configuration.
121+
122+
Available configuration:
123+
124+
| Provider Attribute | Description |
125+
|---|---|
126+
| `bearer_auth` | HTTP Bearer. |
127+
<!-- End Authentication [security] -->
128+
117129
<!-- Start Available Resources and Data Sources [operations] -->
118130
## Available Resources and Data Sources
119131

120132
### Resources
121133

122-
* [epilot-workflow_closing_reason](docs/resources/closing_reason.md)
123-
* [epilot-workflow_flow_template](docs/resources/flow_template.md)
124-
* [epilot-workflow_workflow_definition](docs/resources/workflow_definition.md)
125134
### Data Sources
126-
127-
* [epilot-workflow_closing_reason](docs/data-sources/closing_reason.md)
128-
* [epilot-workflow_flow_template](docs/data-sources/flow_template.md)
129-
* [epilot-workflow_workflow_definition](docs/data-sources/workflow_definition.md)
130135
<!-- End Available Resources and Data Sources [operations] -->
131136

132137
<!-- Start Summary [summary] -->
@@ -141,6 +146,7 @@ Workflows Definitions: Service for Workflow Definitions for different processes
141146
* [epilot-workflow](#epilot-workflow)
142147
* [Installation](#installation)
143148
* [Testing the provider locally](#testing-the-provider-locally)
149+
* [Authentication](#authentication)
144150
* [Available Resources and Data Sources](#available-resources-and-data-sources)
145151

146152
<!-- End Table of Contents [toc] -->

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,14 @@ Based on:
2222
- OpenAPI Doc 1.0.0
2323
- Speakeasy CLI 1.303.0 (2.339.1) https://github.com/speakeasy-api/speakeasy
2424
### Generated
25-
- [terraform v0.8.2] .
25+
- [terraform v0.8.2] .
26+
27+
## 2025-10-15 00:33:28
28+
### Changes
29+
Based on:
30+
- OpenAPI Doc
31+
- Speakeasy CLI 1.636.3 (2.723.11) https://github.com/speakeasy-api/speakeasy
32+
### Generated
33+
- [terraform v0.20.0] .
34+
### Releases
35+
- [Terraform v0.20.0] https://registry.terraform.io/providers/epilot-dev/epilot-workflow/0.20.0 - .

docs/data-sources/closing_reason.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)