Skip to content

Commit 6030aa0

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0 ., Speakeasy CLI 1.331.0
1 parent 4d8e6b5 commit 6030aa0

File tree

8 files changed

+35
-21
lines changed

8 files changed

+35
-21
lines changed

.speakeasy/gen.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
lockVersion: 2.0.0
22
id: f5719c92-1297-4aa0-bc5f-37116859d1e3
33
management:
4-
docChecksum: e4cb9ecada8b35163db080ecaaf60fe3
4+
docChecksum: f5cf06d8d5f2ec68226ab161d7a73cba
55
docVersion: 0.4.0 .
6-
speakeasyVersion: 1.318.0
7-
generationVersion: 2.352.0
8-
releaseVersion: 4.2.10
9-
configChecksum: 87bced91a3dc262014b38d92b4e36db7
6+
speakeasyVersion: 1.331.0
7+
generationVersion: 2.365.0
8+
releaseVersion: 4.2.11
9+
configChecksum: 0cb11c6e585150ad6e89e8e5988f0380
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-ruby.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-ruby
1313
published: true
1414
features:
1515
ruby:
16-
core: 3.2.14
16+
core: 3.2.15
1717
deprecations: 2.81.1
1818
examples: 2.81.3
1919
globalSecurity: 2.81.6

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
speakeasy_client_sdk_ruby (4.2.10)
4+
speakeasy_client_sdk_ruby (4.2.11)
55
faraday
66
faraday-multipart
77
rack

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,4 +978,14 @@ Based on:
978978
### Generated
979979
- [ruby v4.2.10] .
980980
### Releases
981-
- [Ruby Gems v4.2.10] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.10 - .
981+
- [Ruby Gems v4.2.10] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.10 - .
982+
983+
## 2024-07-11 00:03:17
984+
### Changes
985+
Based on:
986+
- OpenAPI Doc 0.4.0 . https://docs.speakeasyapi.dev/openapi.yaml
987+
- Speakeasy CLI 1.331.0 (2.365.0) https://github.com/speakeasy-api/speakeasy
988+
### Generated
989+
- [ruby v4.2.11] .
990+
### Releases
991+
- [Ruby Gems v4.2.11] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.11 - .

docs/models/shared/githubconfiguremintlifyreporequest.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ A request to configure a GitHub repository for mintlify
55

66
## Fields
77

8-
| Field | Type | Required | Description |
9-
| ---------------------------- | ---------------------------- | ---------------------------- | ---------------------------- |
10-
| `input` | *::String* | :heavy_check_mark: | The input OpenAPI document |
11-
| `org` | *::String* | :heavy_check_mark: | The GitHub organization name |
12-
| `overlays` | T::Array<*::String*> | :heavy_check_mark: | The overlays to apply |
13-
| `repo` | *::String* | :heavy_check_mark: | The GitHub repository name |
8+
| Field | Type | Required | Description |
9+
| ---------------------------------------- | ---------------------------------------- | ---------------------------------------- | ---------------------------------------- |
10+
| `input` | *::String* | :heavy_check_mark: | The input OpenAPI document |
11+
| `org` | *::String* | :heavy_check_mark: | The GitHub organization name |
12+
| `overlays` | T::Array<*::String*> | :heavy_check_mark: | The overlays to apply |
13+
| `repo` | *::String* | :heavy_check_mark: | The GitHub repository name |
14+
| `subdirectory` | *T.nilable(::String)* | :heavy_minus_sign: | The subdirectory (location of mint.json) |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
ruby:
13-
version: 4.2.10
13+
version: 4.2.11
1414
author: Speakeasy
1515
description: Ruby Client SDK Generated by Speakeasy
1616
imports:

lib/speakeasy_client_sdk/models/shared/githubconfiguremintlifyreporequest.rb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@ class GithubConfigureMintlifyRepoRequest < ::SpeakeasyClientSDK::Utils::FieldAug
1919
field :overlays, T::Array[::String], { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('overlays') } }
2020
# The GitHub repository name
2121
field :repo, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('repo') } }
22+
# The subdirectory (location of mint.json)
23+
field :subdirectory, T.nilable(::String), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('subdirectory') } }
2224

2325

24-
sig { params(input: ::String, org: ::String, overlays: T::Array[::String], repo: ::String).void }
25-
def initialize(input: nil, org: nil, overlays: nil, repo: nil)
26+
sig { params(input: ::String, org: ::String, overlays: T::Array[::String], repo: ::String, subdirectory: T.nilable(::String)).void }
27+
def initialize(input: nil, org: nil, overlays: nil, repo: nil, subdirectory: nil)
2628
@input = input
2729
@org = org
2830
@overlays = overlays
2931
@repo = repo
32+
@subdirectory = subdirectory
3033
end
3134
end
3235
end

lib/speakeasy_client_sdk/sdkconfiguration.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def initialize(client, security, server_url, server, globals)
4141
@globals = globals.nil? ? {} : globals
4242
@language = 'ruby'
4343
@openapi_doc_version = '0.4.0 .'
44-
@sdk_version = '4.2.10'
45-
@gen_version = '2.352.0'
46-
@user_agent = 'speakeasy-sdk/ruby 4.2.10 2.352.0 0.4.0 . speakeasy_client_sdk_ruby'
44+
@sdk_version = '4.2.11'
45+
@gen_version = '2.365.0'
46+
@user_agent = 'speakeasy-sdk/ruby 4.2.11 2.365.0 0.4.0 . speakeasy_client_sdk_ruby'
4747
end
4848

4949
sig { returns([String, T::Hash[Symbol, String]]) }

speakeasy_client_sdk_ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $LOAD_PATH.push File.expand_path('lib', __dir__)
44

55
Gem::Specification.new do |s|
66
s.name = 'speakeasy_client_sdk_ruby'
7-
s.version = '4.2.10'
7+
s.version = '4.2.11'
88
s.platform = Gem::Platform::RUBY
99
s.licenses = ['Apache-2.0']
1010
s.summary = ''

0 commit comments

Comments
 (0)