Skip to content

Commit 9b8da98

Browse files
committed
3.0.2
1 parent f59e76a commit 9b8da98

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

.speakeasy/gen.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 11c8545a-deb6-44f9-ba56-e71722af6a51
33
management:
4-
docChecksum: cd63d8083349a83e5d42c5a83bf021cb
4+
docChecksum: 4a37279f1d52df01fa6401ce82dafd22
55
docVersion: 0.2.0
66
speakeasyVersion: 1.366.0
77
generationVersion: 2.396.0
8-
releaseVersion: 0.3.1
9-
configChecksum: 65f613c701790505d581747b9bee0581
8+
releaseVersion: 0.3.2
9+
configChecksum: 548423f365245b7e1c5d53a8ed3cc0d1
1010
repoURL: https://github.com/epilot-dev/terraform-provider-epilot-file.git
1111
repoSubDirectory: .
1212
published: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ terraform {
5959
required_providers {
6060
epilot-file = {
6161
source = "epilot-dev/epilot-file"
62-
version = "0.3.1"
62+
version = "0.3.2"
6363
}
6464
}
6565
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
required_providers {
1818
epilot-file = {
1919
source = "epilot-dev/epilot-file"
20-
version = "0.3.1"
20+
version = "0.3.2"
2121
}
2222
}
2323
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
epilot-file = {
44
source = "epilot-dev/epilot-file"
5-
version = "0.3.1"
5+
version = "0.3.2"
66
}
77
}
88
}

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ go:
2727
outputModelSuffix: output
2828
packageName: openapi
2929
terraform:
30-
version: 0.3.1
30+
version: 0.3.2
3131
additionalDataSources: []
3232
additionalDependencies: {}
3333
additionalResources: []

internal/sdk/file.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,8 +1082,6 @@ func (s *File) SaveFileV2(ctx context.Context, request *shared.SaveFilePayloadV2
10821082

10831083
switch {
10841084
case httpRes.StatusCode == 200:
1085-
fallthrough
1086-
case httpRes.StatusCode == 201:
10871085
switch {
10881086
case utils.MatchContentType(httpRes.Header.Get("Content-Type"), `application/json`):
10891087
var out shared.FileEntity

internal/sdk/models/operations/savefilev2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
type SaveFileV2Response struct {
1111
// HTTP response content type for this operation
1212
ContentType string
13-
// Updated File Entity
13+
// Created File Entity
1414
FileEntity *shared.FileEntity
1515
// HTTP response status code for this operation
1616
StatusCode int

0 commit comments

Comments
 (0)