Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 0.4.0 ., Speakeasy CLI 1.376.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Aug 21, 2024
1 parent c44e886 commit 9c11b8f
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
lockVersion: 2.0.0
id: f5719c92-1297-4aa0-bc5f-37116859d1e3
management:
docChecksum: 7e5374ccd8317cf07089c151d486221b
docChecksum: a1c6af4bc670e02f54fbf8545a634a04
docVersion: 0.4.0 .
speakeasyVersion: 1.368.0
generationVersion: 2.399.0
releaseVersion: 4.2.18
configChecksum: fb6100a2af4b005fd97ac04595d2e34d
speakeasyVersion: 1.376.1
generationVersion: 2.402.5
releaseVersion: 4.2.19
configChecksum: 7d4d3acdec3e08f9f75dbdf2d76c4109
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-ruby.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-ruby
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
speakeasy_client_sdk_ruby (4.2.18)
speakeasy_client_sdk_ruby (4.2.19)
faraday
faraday-multipart
rack
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1058,4 +1058,14 @@ Based on:
### Generated
- [ruby v4.2.18] .
### Releases
- [Ruby Gems v4.2.18] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.18 - .
- [Ruby Gems v4.2.18] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.18 - .

## 2024-08-21 00:03:23
### Changes
Based on:
- OpenAPI Doc 0.4.0 . https://docs.speakeasyapi.dev/openapi.yaml
- Speakeasy CLI 1.376.1 (2.402.5) https://github.com/speakeasy-api/speakeasy
### Generated
- [ruby v4.2.19] .
### Releases
- [Ruby Gems v4.2.19] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.2.19 - .
1 change: 1 addition & 0 deletions docs/models/shared/githubtriggeractionrequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ A request to trigger an action on a GitHub target

| Field | Type | Required | Description |
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ |
| `force` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | Force an SDK generation |
| `gen_lock_id` | *::String* | :heavy_check_mark: | The generation lock ID |
| `org` | *::String* | :heavy_check_mark: | The GitHub organization name |
| `repo_name` | *::String* | :heavy_check_mark: | The GitHub repository name |
Expand Down
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
ruby:
version: 4.2.18
version: 4.2.19
author: Speakeasy
description: Ruby Client SDK Generated by Speakeasy
imports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ class GithubTriggerActionRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented
field :org, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('org') } }
# The GitHub repository name
field :repo_name, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('repo_name') } }
# Force an SDK generation
field :force, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('force') } }
# A version to override the SDK too in workflow dispatch
field :set_version, T.nilable(::String), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('set_version') } }
# The target name for the action
field :target_name, T.nilable(::String), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('target_name') } }


sig { params(gen_lock_id: ::String, org: ::String, repo_name: ::String, set_version: T.nilable(::String), target_name: T.nilable(::String)).void }
def initialize(gen_lock_id: nil, org: nil, repo_name: nil, set_version: nil, target_name: nil)
sig { params(gen_lock_id: ::String, org: ::String, repo_name: ::String, force: T.nilable(T::Boolean), set_version: T.nilable(::String), target_name: T.nilable(::String)).void }
def initialize(gen_lock_id: nil, org: nil, repo_name: nil, force: nil, set_version: nil, target_name: nil)
@gen_lock_id = gen_lock_id
@org = org
@repo_name = repo_name
@force = force
@set_version = set_version
@target_name = target_name
end
Expand Down
6 changes: 3 additions & 3 deletions lib/speakeasy_client_sdk/sdkconfiguration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def initialize(client, security, server_url, server, globals)
@globals = globals.nil? ? {} : globals
@language = 'ruby'
@openapi_doc_version = '0.4.0 .'
@sdk_version = '4.2.18'
@gen_version = '2.399.0'
@user_agent = 'speakeasy-sdk/ruby 4.2.18 2.399.0 0.4.0 . speakeasy_client_sdk_ruby'
@sdk_version = '4.2.19'
@gen_version = '2.402.5'
@user_agent = 'speakeasy-sdk/ruby 4.2.19 2.402.5 0.4.0 . speakeasy_client_sdk_ruby'
end

sig { returns([String, T::Hash[Symbol, String]]) }
Expand Down
2 changes: 1 addition & 1 deletion speakeasy_client_sdk_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.push File.expand_path('lib', __dir__)

Gem::Specification.new do |s|
s.name = 'speakeasy_client_sdk_ruby'
s.version = '4.2.18'
s.version = '4.2.19'
s.platform = Gem::Platform::RUBY
s.licenses = ['Apache-2.0']
s.summary = ''
Expand Down

0 comments on commit 9c11b8f

Please sign in to comment.