Skip to content

Commit

Permalink
chore: update openapi yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateus Nardo committed Aug 28, 2024
1 parent 508c8d4 commit a1f4b2c
Show file tree
Hide file tree
Showing 109 changed files with 1,665 additions and 954 deletions.
17 changes: 9 additions & 8 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: 1afd37bc-cea9-4679-ac40-35ad5de414fc
management:
docChecksum: 86f4621c41ddb5ee806e79a60b3649f9
docChecksum: b9a09d98391fd5759e163be37edd17bc
docVersion: 1.0.0
speakeasyVersion: 1.346.0
generationVersion: 2.379.3
releaseVersion: 0.3.4
configChecksum: 979fdfd27829f06418fe2be5a77bb4f5
speakeasyVersion: 1.381.1
generationVersion: 2.404.9
releaseVersion: 0.4.0
configChecksum: f83f174849770bbe062f6cc92d3b40f9
repoURL: https://github.com/epilot-dev/terraform-provider-epilot-journey.git
repoSubDirectory: .
published: true
Expand All @@ -15,8 +15,10 @@ features:
additionalDependencies: 0.1.0
additionalProperties: 0.1.2
constsAndDefaults: 0.1.4
core: 3.24.3
globalSecurity: 2.81.6
core: 3.24.7
deprecations: 2.81.1
envVarSecurityUsage: 0.1.0
globalSecurity: 2.81.8
globalServerURLs: 2.82.1
nullables: 0.0.0
retries: 2.81.1
Expand Down Expand Up @@ -67,7 +69,6 @@ generatedFiles:
- internal/sdk/.gitignore
- internal/sdk/models/operations/options.go
- internal/sdk/.gitattributes
- internal/sdk/internal/hooks/registration.go
- internal/sdk/internal/hooks/hooks.go
- internal/sdk/CONTRIBUTING.md
- examples/README.md
Expand Down
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
epilot-journey = {
source = "epilot-dev/epilot-journey"
version = "0.3.4"
version = "0.4.0"
}
}
}
Expand Down Expand Up @@ -50,12 +50,6 @@ TF_REATTACH_PROVIDERS=... terraform apply
```
<!-- End SDK Example Usage [usage] -->

<!-- Start Available Resources and Operations [operations] -->
## Available Resources and Operations


<!-- End Available Resources and Operations [operations] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->


Expand Down
6 changes: 3 additions & 3 deletions docs/data-sources/journey.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Read-Only:

- `is_required` (Boolean)
- `param_key` (String)
- `should_load_entity` (Boolean)
- `type` (String)


Expand Down Expand Up @@ -78,7 +79,8 @@ Read-Only:

Read-Only:

- `address_suggestions_file_url` (String)
- `address_suggestions_file_id` (String)
- `address_suggestions_file_url` (String) @deprecated Use addressSuggestionsFileId instead
- `description` (String)
- `design_id` (String)
- `embed_options` (Attributes) (see [below for nested schema](#nestedatt--settings--embed_options))
Expand Down Expand Up @@ -110,5 +112,3 @@ Read-Only:

- `align` (String) must be one of ["left", "center", "right"]
- `text` (String)


2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ terraform {
required_providers {
epilot-journey = {
source = "epilot-dev/epilot-journey"
version = "0.3.4"
version = "0.4.0"
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions docs/resources/journey.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "epilot-journey_journey" "my_journey" {
brand_id = "...my_brand_id..."
id = "509cdffe-424f-457a-95c2-9708c304ce77"
journey_id = "...my_journey_id..."
name = "Nathaniel Von"
name = "Tasha Macejkovic MD"
steps = "{ \"see\": \"documentation\" }"
}
```
Expand Down Expand Up @@ -47,6 +47,7 @@ Optional:

- `is_required` (Boolean)
- `param_key` (String) Not Null
- `should_load_entity` (Boolean)
- `type` (String) Not Null


Expand Down Expand Up @@ -85,7 +86,8 @@ Optional:

Optional:

- `address_suggestions_file_url` (String)
- `address_suggestions_file_id` (String)
- `address_suggestions_file_url` (String) @deprecated Use addressSuggestionsFileId instead
- `description` (String)
- `design_id` (String)
- `embed_options` (Attributes) (see [below for nested schema](#nestedatt--settings--embed_options))
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
epilot-journey = {
source = "epilot-dev/epilot-journey"
version = "0.3.4"
version = "0.4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/epilot-journey_journey/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ resource "epilot-journey_journey" "my_journey" {
brand_id = "...my_brand_id..."
id = "509cdffe-424f-457a-95c2-9708c304ce77"
journey_id = "...my_journey_id..."
name = "Nathaniel Von"
name = "Tasha Macejkovic MD"
steps = "{ \"see\": \"documentation\" }"
}
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
sdkFlattening: true
telemetryEnabled: false
terraform:
version: 0.3.4
version: 0.4.0
additionalDataSources: []
additionalDependencies: {}
additionalResources: []
Expand Down
68 changes: 39 additions & 29 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,63 +2,73 @@ module github.com/epilot-dev/terraform-provider-epilot-journey

go 1.21

toolchain go1.21.6

require (
github.com/cenkalti/backoff/v4 v4.2.0
github.com/ericlagergren/decimal v0.0.0-20221120152707-495c53812d05
github.com/hashicorp/terraform-plugin-docs v0.13.0
github.com/hashicorp/terraform-plugin-framework v1.7.0
github.com/hashicorp/terraform-plugin-framework-validators v0.10.0
github.com/hashicorp/terraform-plugin-go v0.22.1
github.com/hashicorp/terraform-plugin-docs v0.19.4
github.com/hashicorp/terraform-plugin-framework v1.10.0
github.com/hashicorp/terraform-plugin-framework-validators v0.13.0
github.com/hashicorp/terraform-plugin-go v0.23.0
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/Kunde21/markdownfmt/v3 v3.1.0 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.1.1 // indirect
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/cli v1.1.6 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.6.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hc-install v0.4.0 // indirect
github.com/hashicorp/terraform-exec v0.17.2 // indirect
github.com/hashicorp/terraform-json v0.14.0 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hc-install v0.7.0 // indirect
github.com/hashicorp/terraform-exec v0.21.0 // indirect
github.com/hashicorp/terraform-json v0.22.1 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/cli v1.1.4 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/imdario/mergo v0.3.15 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/oklog/run v1.0.0 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/russross/blackfriday v1.6.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zclconf/go-cty v1.13.1 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
github.com/yuin/goldmark v1.7.1 // indirect
github.com/yuin/goldmark-meta v1.1.0 // indirect
github.com/zclconf/go-cty v1.14.4 // indirect
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.34.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit a1f4b2c

Please sign in to comment.