Skip to content

Commit 2c159f7

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.178.0
1 parent 17c6328 commit 2c159f7

File tree

9 files changed

+119
-74
lines changed

9 files changed

+119
-74
lines changed

.speakeasy/gen.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ management:
44
docChecksum: 557634d4bb5964b949ae70f79f40d856
55
docVersion: 0.4.0
66
speakeasyVersion: internal
7-
generationVersion: 2.250.22
7+
generationVersion: 2.253.0
88
releaseVersion: 4.0.2
99
configChecksum: 011196bc4129bc5258aa517cfb2e27c1
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-ruby.git
@@ -33,6 +33,7 @@ generatedFiles:
3333
- lib/speakeasy_client_sdk/sdk.rb
3434
- .rubocop.yml
3535
- Gemfile
36+
- Gemfile.lock
3637
- Rakefile
3738
- lib/speakeasy_client_sdk/utils/metadata_fields.rb
3839
- lib/speakeasy_client_sdk/utils/utils.rb

Gemfile.lock

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
PATH
2+
remote: .
3+
specs:
4+
speakeasy_client_sdk_ruby (4.0.2)
5+
faraday
6+
faraday-multipart
7+
rack
8+
rake
9+
sorbet
10+
11+
GEM
12+
remote: https://rubygems.org/
13+
specs:
14+
ast (2.4.2)
15+
erubi (1.12.0)
16+
faraday (2.9.0)
17+
faraday-net_http (>= 2.0, < 3.2)
18+
faraday-multipart (1.0.4)
19+
multipart-post (~> 2)
20+
faraday-net_http (3.1.0)
21+
net-http
22+
json (2.7.1)
23+
language_server-protocol (3.17.0.3)
24+
minitest (5.22.2)
25+
multipart-post (2.4.0)
26+
net-http (0.4.1)
27+
uri
28+
netrc (0.11.0)
29+
parallel (1.24.0)
30+
parser (3.3.0.5)
31+
ast (~> 2.4.1)
32+
racc
33+
prettier_print (1.2.1)
34+
prism (0.21.0)
35+
racc (1.7.3)
36+
rack (3.0.9)
37+
rainbow (3.1.1)
38+
rake (13.1.0)
39+
rbi (0.1.8)
40+
prism (>= 0.18.0, < 0.22)
41+
sorbet-runtime (>= 0.5.9204)
42+
regexp_parser (2.9.0)
43+
rexml (3.2.6)
44+
rubocop (1.60.2)
45+
json (~> 2.3)
46+
language_server-protocol (>= 3.17.0)
47+
parallel (~> 1.10)
48+
parser (>= 3.3.0.2)
49+
rainbow (>= 2.2.2, < 4.0)
50+
regexp_parser (>= 1.8, < 3.0)
51+
rexml (>= 3.2.5, < 4.0)
52+
rubocop-ast (>= 1.30.0, < 2.0)
53+
ruby-progressbar (~> 1.7)
54+
unicode-display_width (>= 2.4.0, < 3.0)
55+
rubocop-ast (1.30.0)
56+
parser (>= 3.2.1.0)
57+
ruby-progressbar (1.13.0)
58+
sorbet (0.5.11237)
59+
sorbet-static (= 0.5.11237)
60+
sorbet-runtime (0.5.11237)
61+
sorbet-static (0.5.11237-x86_64-linux)
62+
sorbet-static-and-runtime (0.5.11237)
63+
sorbet (= 0.5.11237)
64+
sorbet-runtime (= 0.5.11237)
65+
spoom (1.2.4)
66+
erubi (>= 1.10.0)
67+
sorbet-static-and-runtime (>= 0.5.10187)
68+
syntax_tree (>= 6.1.1)
69+
thor (>= 0.19.2)
70+
syntax_tree (6.2.0)
71+
prettier_print (>= 1.2.0)
72+
tapioca (0.12.0)
73+
bundler (>= 2.2.25)
74+
netrc (>= 0.11.0)
75+
parallel (>= 1.21.0)
76+
rbi (>= 0.1.4, < 0.2)
77+
sorbet-static-and-runtime (>= 0.5.10820)
78+
spoom (~> 1.2.0, >= 1.2.0)
79+
thor (>= 1.2.0)
80+
yard-sorbet
81+
thor (1.3.0)
82+
unicode-display_width (2.5.0)
83+
uri (0.13.0)
84+
yard (0.9.34)
85+
yard-sorbet (0.8.1)
86+
sorbet-runtime (>= 0.5)
87+
yard (>= 0.9)
88+
89+
PLATFORMS
90+
x86_64-linux
91+
92+
DEPENDENCIES
93+
minitest
94+
speakeasy_client_sdk_ruby!
95+
rubocop
96+
sorbet-runtime
97+
tapioca
98+
99+
BUNDLED WITH
100+
2.4.10

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,7 @@ s.config_security(
2525
)
2626

2727

28-
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new(
29-
metadata: {
30-
"South": [
31-
"string",
32-
],
33-
},
34-
op: ::SpeakeasyClientSDK::Operations::QueryParamOp.new(
35-
and_: false,
36-
),
37-
)
28+
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new()
3829

3930
res = s.apis.get_apis(req)
4031

RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,4 +578,14 @@ Based on:
578578
### Generated
579579
- [ruby v4.0.2] .
580580
### Releases
581+
- [Ruby Gems v4.0.2] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.0.2 - .
582+
583+
## 2024-02-13 00:03:08
584+
### Changes
585+
Based on:
586+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
587+
- Speakeasy CLI 1.178.0 (2.253.0) https://github.com/speakeasy-api/speakeasy
588+
### Generated
589+
- [ruby v4.0.2] .
590+
### Releases
581591
- [Ruby Gems v4.0.2] https://rubygems.org/gems/speakeasy_client_sdk_ruby/versions/4.0.2 - .

USAGE.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,7 @@ s.config_security(
1313
)
1414

1515

16-
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new(
17-
metadata: {
18-
"South": [
19-
"string",
20-
],
21-
},
22-
op: ::SpeakeasyClientSDK::Operations::QueryParamOp.new(
23-
and_: false,
24-
),
25-
)
16+
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new()
2617

2718
res = s.apis.get_apis(req)
2819

docs/sdks/apis/README.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,6 @@ s.config_security(
173173

174174
req = ::SpeakeasyClientSDK::Operations::GetAllApiVersionsRequest.new(
175175
api_id: "string",
176-
metadata: {
177-
"azure": [
178-
"string",
179-
],
180-
},
181-
op: ::SpeakeasyClientSDK::Operations::Op.new(
182-
and_: false,
183-
),
184176
)
185177

186178
res = s.apis.get_all_api_versions(req)
@@ -224,16 +216,7 @@ s.config_security(
224216
)
225217

226218

227-
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new(
228-
metadata: {
229-
"South": [
230-
"string",
231-
],
232-
},
233-
op: ::SpeakeasyClientSDK::Operations::QueryParamOp.new(
234-
and_: false,
235-
),
236-
)
219+
req = ::SpeakeasyClientSDK::Operations::GetApisRequest.new()
237220

238221
res = s.apis.get_apis(req)
239222

@@ -280,11 +263,6 @@ req = ::SpeakeasyClientSDK::Operations::UpsertApiRequest.new(
280263
api: ::SpeakeasyClientSDK::Shared::ApiInput.new(
281264
api_id: "string",
282265
description: "Synchronised 5th generation knowledge user",
283-
meta_data: {
284-
"redefine": [
285-
"string",
286-
],
287-
},
288266
version_id: "string",
289267
),
290268
api_id: "string",

docs/sdks/embeds/README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,7 @@ s.config_security(
3232
)
3333

3434

35-
req = ::SpeakeasyClientSDK::Operations::GetEmbedAccessTokenRequest.new(
36-
filters: ::SpeakeasyClientSDK::Shared::Filters.new(
37-
filters: [
38-
::SpeakeasyClientSDK::Shared::Filter.new(
39-
key: "<key>",
40-
operator: "string",
41-
value: "string",
42-
),
43-
],
44-
limit: 964408,
45-
offset: 95617,
46-
operator: "string",
47-
),
48-
)
35+
req = ::SpeakeasyClientSDK::Operations::GetEmbedAccessTokenRequest.new()
4936

5037
res = s.embeds.get_embed_access_token(req)
5138

docs/sdks/requests/README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -121,20 +121,7 @@ s.config_security(
121121
)
122122

123123

124-
req = ::SpeakeasyClientSDK::Operations::QueryEventLogRequest.new(
125-
filters: ::SpeakeasyClientSDK::Shared::Filters.new(
126-
filters: [
127-
::SpeakeasyClientSDK::Shared::Filter.new(
128-
key: "<key>",
129-
operator: "string",
130-
value: "string",
131-
),
132-
],
133-
limit: 241978,
134-
offset: 451388,
135-
operator: "string",
136-
),
137-
)
124+
req = ::SpeakeasyClientSDK::Operations::QueryEventLogRequest.new()
138125

139126
res = s.requests.query_event_log(req)
140127

lib/speakeasy_client_sdk/sdkconfiguration.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def initialize(client, security, server_url, server_idx, globals)
4242
@language = 'ruby'
4343
@openapi_doc_version = '0.4.0'
4444
@sdk_version = '4.0.2'
45-
@gen_version = '2.250.22'
46-
@user_agent = 'speakeasy-sdk/ruby 4.0.2 2.250.22 0.4.0 speakeasy_client_sdk_ruby'
45+
@gen_version = '2.253.0'
46+
@user_agent = 'speakeasy-sdk/ruby 4.0.2 2.253.0 0.4.0 speakeasy_client_sdk_ruby'
4747
end
4848

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

0 commit comments

Comments
 (0)