Skip to content

Commit ab2f52b

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.192.1
1 parent 2ba7887 commit ab2f52b

File tree

8 files changed

+34
-16
lines changed

8 files changed

+34
-16
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: f5719c92-1297-4aa0-bc5f-37116859d1e3
33
management:
4-
docChecksum: 90bb5b2f880d4a86868122f9a6b08d40
4+
docChecksum: 10893fff3e9a4e77b8628de48190cd77
55
docVersion: 0.4.0
66
speakeasyVersion: internal
7-
generationVersion: 2.263.3
8-
releaseVersion: 4.0.5
9-
configChecksum: 0ccfedb96f8bbae17a80e161e91e47a6
7+
generationVersion: 2.269.0
8+
releaseVersion: 4.0.6
9+
configChecksum: b1d0720eaeb9277cf255f71005ad1c85
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

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.0.5)
4+
speakeasy_client_sdk_ruby (4.0.6)
55
faraday
66
faraday-multipart
77
rack

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,4 +618,14 @@ Based on:
618618
### Generated
619619
- [ruby v4.0.5] .
620620
### Releases
621-
- [Ruby Gems v4.0.5] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.0.5 - .
621+
- [Ruby Gems v4.0.5] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.0.5 - .
622+
623+
## 2024-02-23 00:02:50
624+
### Changes
625+
Based on:
626+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
627+
- Speakeasy CLI 1.192.1 (2.269.0) https://github.com/speakeasy-api/speakeasy
628+
### Generated
629+
- [ruby v4.0.6] .
630+
### Releases
631+
- [Ruby Gems v4.0.6] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.0.6 - .

docs/models/operations/getworkspaceaccessrequest.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description |
7-
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- |
8-
| `gen_lock_id` | *T.nilable(::String)* | :heavy_minus_sign: | Unique identifier of the generation target. |
6+
| Field | Type | Required | Description |
7+
| -------------------------------------------- | -------------------------------------------- | -------------------------------------------- | -------------------------------------------- |
8+
| `gen_lock_id` | *T.nilable(::String)* | :heavy_minus_sign: | Unique identifier of the generation target. |
9+
| `passive` | *T.nilable(T::Boolean)* | :heavy_minus_sign: | Skip side-effects like incrementing metrics. |
10+
| `target_type` | *T.nilable(::String)* | :heavy_minus_sign: | The type of the generated target. |

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ generation:
88
parameterOrderingFeb2024: false
99
requestResponseComponentNamesFeb2024: false
1010
ruby:
11-
version: 4.0.5
11+
version: 4.0.6
1212
author: Speakeasy
1313
description: Ruby Client SDK Generated by Speakeasy
1414
imports:

lib/speakeasy_client_sdk/models/operations/getworkspaceaccess_request.rb

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ class GetWorkspaceAccessRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented
1313

1414
# Unique identifier of the generation target.
1515
field :gen_lock_id, T.nilable(::String), { 'query_param': { 'field_name': 'genLockId', 'style': 'form', 'explode': true } }
16+
# Skip side-effects like incrementing metrics.
17+
field :passive, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'passive', 'style': 'form', 'explode': true } }
18+
# The type of the generated target.
19+
field :target_type, T.nilable(::String), { 'query_param': { 'field_name': 'targetType', 'style': 'form', 'explode': true } }
1620

1721

18-
sig { params(gen_lock_id: T.nilable(::String)).void }
19-
def initialize(gen_lock_id: nil)
22+
sig { params(gen_lock_id: T.nilable(::String), passive: T.nilable(T::Boolean), target_type: T.nilable(::String)).void }
23+
def initialize(gen_lock_id: nil, passive: nil, target_type: nil)
2024
@gen_lock_id = gen_lock_id
25+
@passive = passive
26+
@target_type = target_type
2127
end
2228
end
2329
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_idx, globals)
4141
@globals = globals.nil? ? {} : globals
4242
@language = 'ruby'
4343
@openapi_doc_version = '0.4.0'
44-
@sdk_version = '4.0.5'
45-
@gen_version = '2.263.3'
46-
@user_agent = 'speakeasy-sdk/ruby 4.0.5 2.263.3 0.4.0 speakeasy_client_sdk_ruby'
44+
@sdk_version = '4.0.6'
45+
@gen_version = '2.269.0'
46+
@user_agent = 'speakeasy-sdk/ruby 4.0.6 2.269.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.0.5'
7+
s.version = '4.0.6'
88
s.platform = Gem::Platform::RUBY
99
s.licenses = ['Apache-2.0']
1010
s.summary = ''

0 commit comments

Comments
 (0)