stackone_client 0.2.42 → 0.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90b212c4b45ed355b3276eebbe8d2b6589077c5e335bb678b170a9c2386dba96
|
4
|
+
data.tar.gz: 6e3742140cc350aa51c1e077e712af37915177815333ad125cddd0360170842b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2390f96423ed1fe5e79a9c83797f08dd887fc0516bad2fedb3c9ca9d0c0d437f659a8e33e5e24cfed4f088eafff4fb000edbf436172d6ca1f2adfd494c8fe907
|
7
|
+
data.tar.gz: 732dee3fea5ef77fa0b58fdec64265dbb140f7046f5195a84b25c14c1ac4608de5d5329146796d566edb22d2d92a23d37b84edcafa5ac616633d9ee6d0d10e35
|
@@ -20,6 +20,8 @@ module StackOne
|
|
20
20
|
# Value to pass through to the provider
|
21
21
|
field :passthrough, T.nilable(T::Hash[Symbol, ::Object]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('passthrough') } }
|
22
22
|
# Unique identifier of the rejection reason
|
23
|
+
#
|
24
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
23
25
|
field :rejected_reason_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('rejected_reason_id') } }
|
24
26
|
|
25
27
|
field :source, T.nilable(::StackOne::Shared::AtsUpdateApplicationRequestDtoSource), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source') } }
|
@@ -13,14 +13,20 @@ module StackOne
|
|
13
13
|
|
14
14
|
|
15
15
|
field :distribution_percentage, T.nilable(::Float), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('distribution_percentage') } }
|
16
|
+
# Unique identifier
|
17
|
+
field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
|
16
18
|
|
17
19
|
field :name, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('name') } }
|
20
|
+
# Provider's unique identifier
|
21
|
+
field :remote_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_id') } }
|
18
22
|
|
19
23
|
|
20
|
-
sig { params(distribution_percentage: T.nilable(::Float), name: T.nilable(::String)).void }
|
21
|
-
def initialize(distribution_percentage: nil, name: nil)
|
24
|
+
sig { params(distribution_percentage: T.nilable(::Float), id: T.nilable(::String), name: T.nilable(::String), remote_id: T.nilable(::String)).void }
|
25
|
+
def initialize(distribution_percentage: nil, id: nil, name: nil, remote_id: nil)
|
22
26
|
@distribution_percentage = distribution_percentage
|
27
|
+
@id = id
|
23
28
|
@name = name
|
29
|
+
@remote_id = remote_id
|
24
30
|
end
|
25
31
|
end
|
26
32
|
end
|
@@ -38,9 +38,9 @@ module StackOne
|
|
38
38
|
@security = security
|
39
39
|
@language = 'ruby'
|
40
40
|
@openapi_doc_version = '1.0.0'
|
41
|
-
@sdk_version = '0.2.
|
42
|
-
@gen_version = '2.
|
43
|
-
@user_agent = 'speakeasy-sdk/ruby 0.2.
|
41
|
+
@sdk_version = '0.2.43'
|
42
|
+
@gen_version = '2.438.3'
|
43
|
+
@user_agent = 'speakeasy-sdk/ruby 0.2.43 2.438.3 1.0.0 stackone_client'
|
44
44
|
end
|
45
45
|
|
46
46
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stackone_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.43
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- StackOne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|