speakeasy_client_sdk_ruby 4.2.4 → 4.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/speakeasy_client_sdk/models/operations/searchworkspaceevents_request.rb +8 -2
- data/lib/speakeasy_client_sdk/models/shared/apikeydetails.rb +5 -2
- data/lib/speakeasy_client_sdk/models/shared/organization.rb +5 -2
- data/lib/speakeasy_client_sdk/sdkconfiguration.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f92a8bb8b58df7f7769b594a6abd88cf781a2e697fc1410926b9770d8c7b6aa1
|
4
|
+
data.tar.gz: 95b245850341253f8bc9d23c36cfe60f7dc69d3412efb692640fd263c3359265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e84dbb954b65f0225cc55c5f665ea49e08c6c694017014138a3b3a00c3cd304890ab77c711013ffbfc6edeab51c8690f729cdcfbd53e25b949d77acc0798d3ec
|
7
|
+
data.tar.gz: 94f8b27ffd50a92e588e8a6035011d3fa18383763af70c08d8262bb72dafa7628abd44d5a68f5d9e24e178292660b7eb5da96faedd67c11bc56ea4d84749a555
|
@@ -11,6 +11,10 @@ module SpeakeasyClientSDK
|
|
11
11
|
class SearchWorkspaceEventsRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented
|
12
12
|
extend T::Sig
|
13
13
|
|
14
|
+
# A specific gen lock ID for the events.
|
15
|
+
field :generate_gen_lock_id, T.nilable(::String), { 'query_param': { 'field_name': 'generate_gen_lock_id', 'style': 'form', 'explode': true } }
|
16
|
+
# Specified interaction type for events.
|
17
|
+
field :interaction_type, T.nilable(::SpeakeasyClientSDK::Shared::InteractionType), { 'query_param': { 'field_name': 'interaction_type', 'style': 'form', 'explode': true } }
|
14
18
|
# Unique identifier of the lint report digest.
|
15
19
|
field :lint_report_digest, T.nilable(::String), { 'query_param': { 'field_name': 'lint_report_digest', 'style': 'form', 'explode': true } }
|
16
20
|
# Unique identifier of the openapi diff report digest.
|
@@ -21,8 +25,10 @@ module SpeakeasyClientSDK
|
|
21
25
|
field :workspace_id, T.nilable(::String), { 'path_param': { 'field_name': 'workspaceID', 'style': 'simple', 'explode': false } }
|
22
26
|
|
23
27
|
|
24
|
-
sig { params(lint_report_digest: T.nilable(::String), openapi_diff_report_digest: T.nilable(::String), source_revision_digest: T.nilable(::String), workspace_id: T.nilable(::String)).void }
|
25
|
-
def initialize(lint_report_digest: nil, openapi_diff_report_digest: nil, source_revision_digest: nil, workspace_id: nil)
|
28
|
+
sig { params(generate_gen_lock_id: T.nilable(::String), interaction_type: T.nilable(::SpeakeasyClientSDK::Shared::InteractionType), lint_report_digest: T.nilable(::String), openapi_diff_report_digest: T.nilable(::String), source_revision_digest: T.nilable(::String), workspace_id: T.nilable(::String)).void }
|
29
|
+
def initialize(generate_gen_lock_id: nil, interaction_type: nil, lint_report_digest: nil, openapi_diff_report_digest: nil, source_revision_digest: nil, workspace_id: nil)
|
30
|
+
@generate_gen_lock_id = generate_gen_lock_id
|
31
|
+
@interaction_type = interaction_type
|
26
32
|
@lint_report_digest = lint_report_digest
|
27
33
|
@openapi_diff_report_digest = openapi_diff_report_digest
|
28
34
|
@source_revision_digest = source_revision_digest
|
@@ -18,6 +18,8 @@ module SpeakeasyClientSDK
|
|
18
18
|
|
19
19
|
field :org_slug, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('org_slug') } }
|
20
20
|
|
21
|
+
field :telemetry_disabled, T::Boolean, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('telemetry_disabled') } }
|
22
|
+
|
21
23
|
field :workspace_id, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('workspace_id') } }
|
22
24
|
|
23
25
|
field :workspace_slug, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('workspace_slug') } }
|
@@ -27,11 +29,12 @@ module SpeakeasyClientSDK
|
|
27
29
|
field :generation_access_unlimited, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('generation_access_unlimited') } }
|
28
30
|
|
29
31
|
|
30
|
-
sig { params(account_type: ::SpeakeasyClientSDK::Shared::AccountType, enabled_features: T::Array[::String], org_slug: ::String, workspace_id: ::String, workspace_slug: ::String, feature_flags: T.nilable(T::Array[::String]), generation_access_unlimited: T.nilable(T::Boolean)).void }
|
31
|
-
def initialize(account_type: nil, enabled_features: nil, org_slug: nil, workspace_id: nil, workspace_slug: nil, feature_flags: nil, generation_access_unlimited: nil)
|
32
|
+
sig { params(account_type: ::SpeakeasyClientSDK::Shared::AccountType, enabled_features: T::Array[::String], org_slug: ::String, telemetry_disabled: T::Boolean, workspace_id: ::String, workspace_slug: ::String, feature_flags: T.nilable(T::Array[::String]), generation_access_unlimited: T.nilable(T::Boolean)).void }
|
33
|
+
def initialize(account_type: nil, enabled_features: nil, org_slug: nil, telemetry_disabled: nil, workspace_id: nil, workspace_slug: nil, feature_flags: nil, generation_access_unlimited: nil)
|
32
34
|
@account_type = account_type
|
33
35
|
@enabled_features = enabled_features
|
34
36
|
@org_slug = org_slug
|
37
|
+
@telemetry_disabled = telemetry_disabled
|
35
38
|
@workspace_id = workspace_id
|
36
39
|
@workspace_slug = workspace_slug
|
37
40
|
@feature_flags = feature_flags
|
@@ -18,6 +18,8 @@ module SpeakeasyClientSDK
|
|
18
18
|
|
19
19
|
field :name, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('name') } }
|
20
20
|
|
21
|
+
field :telemetry_disabled, T::Boolean, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('telemetry_disabled') } }
|
22
|
+
|
21
23
|
field :created_at, T.nilable(::DateTime), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
|
22
24
|
|
23
25
|
field :slug, T.nilable(::String), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('slug') } }
|
@@ -25,11 +27,12 @@ module SpeakeasyClientSDK
|
|
25
27
|
field :updated_at, T.nilable(::DateTime), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('updated_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
|
26
28
|
|
27
29
|
|
28
|
-
sig { params(account_type: ::SpeakeasyClientSDK::Shared::OrganizationAccountType, id: ::String, name: ::String, created_at: T.nilable(::DateTime), slug: T.nilable(::String), updated_at: T.nilable(::DateTime)).void }
|
29
|
-
def initialize(account_type: nil, id: nil, name: nil, created_at: nil, slug: nil, updated_at: nil)
|
30
|
+
sig { params(account_type: ::SpeakeasyClientSDK::Shared::OrganizationAccountType, id: ::String, name: ::String, telemetry_disabled: T::Boolean, created_at: T.nilable(::DateTime), slug: T.nilable(::String), updated_at: T.nilable(::DateTime)).void }
|
31
|
+
def initialize(account_type: nil, id: nil, name: nil, telemetry_disabled: nil, created_at: nil, slug: nil, updated_at: nil)
|
30
32
|
@account_type = account_type
|
31
33
|
@id = id
|
32
34
|
@name = name
|
35
|
+
@telemetry_disabled = telemetry_disabled
|
33
36
|
@created_at = created_at
|
34
37
|
@slug = slug
|
35
38
|
@updated_at = updated_at
|
@@ -41,9 +41,9 @@ module SpeakeasyClientSDK
|
|
41
41
|
@globals = globals.nil? ? {} : globals
|
42
42
|
@language = 'ruby'
|
43
43
|
@openapi_doc_version = '0.4.0 .'
|
44
|
-
@sdk_version = '4.2.
|
45
|
-
@gen_version = '2.
|
46
|
-
@user_agent = 'speakeasy-sdk/ruby 4.2.
|
44
|
+
@sdk_version = '4.2.5'
|
45
|
+
@gen_version = '2.340.3'
|
46
|
+
@user_agent = 'speakeasy-sdk/ruby 4.2.5 2.340.3 0.4.0 . speakeasy_client_sdk_ruby'
|
47
47
|
end
|
48
48
|
|
49
49
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: speakeasy_client_sdk_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Speakeasy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|