stackone_client 0.2.41 → 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: d9637c27706b8d1ee49b2d8fde28d0d9a6f25e7d6f097322d5a7dd6cd544ff5c
4
- data.tar.gz: eaefc30dc9a593e234c955dee8cccada310e0799b64c7f50718aaf11c8d44bbd
3
+ metadata.gz: 90b212c4b45ed355b3276eebbe8d2b6589077c5e335bb678b170a9c2386dba96
4
+ data.tar.gz: 6e3742140cc350aa51c1e077e712af37915177815333ad125cddd0360170842b
5
5
  SHA512:
6
- metadata.gz: fd4154cbe7e0491131d8f86672cc1e57398a2ce3ca0cc73b66adac76cf11a00a695874d4de60fc8286e9100e4ae7b9facfd789ec637b8c97b33899e0215f6804
7
- data.tar.gz: 6190b2273b783f67a188fa00fac4a67601f576442dda05a43aaed11980f5cfbd563d0f5d0691685ce8f75e2fca908939a362dd1760bd3bde2b17ec3520e4b413
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,19 +13,23 @@ module StackOne
13
13
 
14
14
  # The date the content was completed
15
15
  field :completed_at, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('completed_at') } }
16
- # The external ID associated with this content
16
+ # The external reference associated with this content
17
17
  field :content_external_reference, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content_external_reference') } }
18
18
  # The content ID associated with this completion
19
19
  field :content_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content_id') } }
20
+ # The course ID associated with this completion
21
+ field :course_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('course_id') } }
20
22
  # The created date of the completion
21
23
  field :created_at, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('created_at') } }
22
24
  # The external ID associated with this completion
23
25
  field :external_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('external_id') } }
24
26
  # The ID associated with this completion
25
27
  field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
26
- # Provider's unique identifier of the completion
28
+ # Provider's unique identifier of the content associated with the completion
27
29
  field :remote_content_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_content_id') } }
28
- # Provider's unique identifier of the content
30
+ # Provider's unique identifier of the course associated with the completion
31
+ field :remote_course_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_course_id') } }
32
+ # Provider's unique identifier of the content external reference
29
33
  field :remote_external_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_external_id') } }
30
34
  # Provider's unique identifier
31
35
  field :remote_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_id') } }
@@ -41,15 +45,17 @@ module StackOne
41
45
  field :user_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('user_id') } }
42
46
 
43
47
 
44
- sig { params(completed_at: T.nilable(::String), content_external_reference: T.nilable(::String), content_id: T.nilable(::String), created_at: T.nilable(::String), external_id: T.nilable(::String), id: T.nilable(::String), remote_content_id: T.nilable(::String), remote_external_id: T.nilable(::String), remote_id: T.nilable(::String), remote_user_id: T.nilable(::String), result: T.nilable(::StackOne::Shared::CompletionSchemasResult), unified_custom_fields: T.nilable(T::Hash[Symbol, ::Object]), updated_at: T.nilable(::String), user_id: T.nilable(::String)).void }
45
- def initialize(completed_at: nil, content_external_reference: nil, content_id: nil, created_at: nil, external_id: nil, id: nil, remote_content_id: nil, remote_external_id: nil, remote_id: nil, remote_user_id: nil, result: nil, unified_custom_fields: nil, updated_at: nil, user_id: nil)
48
+ sig { params(completed_at: T.nilable(::String), content_external_reference: T.nilable(::String), content_id: T.nilable(::String), course_id: T.nilable(::String), created_at: T.nilable(::String), external_id: T.nilable(::String), id: T.nilable(::String), remote_content_id: T.nilable(::String), remote_course_id: T.nilable(::String), remote_external_id: T.nilable(::String), remote_id: T.nilable(::String), remote_user_id: T.nilable(::String), result: T.nilable(::StackOne::Shared::CompletionSchemasResult), unified_custom_fields: T.nilable(T::Hash[Symbol, ::Object]), updated_at: T.nilable(::String), user_id: T.nilable(::String)).void }
49
+ def initialize(completed_at: nil, content_external_reference: nil, content_id: nil, course_id: nil, created_at: nil, external_id: nil, id: nil, remote_content_id: nil, remote_course_id: nil, remote_external_id: nil, remote_id: nil, remote_user_id: nil, result: nil, unified_custom_fields: nil, updated_at: nil, user_id: nil)
46
50
  @completed_at = completed_at
47
51
  @content_external_reference = content_external_reference
48
52
  @content_id = content_id
53
+ @course_id = course_id
49
54
  @created_at = created_at
50
55
  @external_id = external_id
51
56
  @id = id
52
57
  @remote_content_id = remote_content_id
58
+ @remote_course_id = remote_course_id
53
59
  @remote_external_id = remote_external_id
54
60
  @remote_id = remote_id
55
61
  @remote_user_id = remote_user_id
@@ -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
@@ -13,7 +13,7 @@ module StackOne
13
13
 
14
14
  # The date the content was completed
15
15
  field :completed_at, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('completed_at') } }
16
- # The external ID associated with this content
16
+ # The external reference associated with this content
17
17
  field :content_external_reference, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content_external_reference') } }
18
18
  # The content ID associated with this completion
19
19
  field :content_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('content_id') } }
@@ -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.41'
42
- @gen_version = '2.426.2'
43
- @user_agent = 'speakeasy-sdk/ruby 0.2.41 2.426.2 1.0.0 stackone_client'
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.41
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-09-30 00:00:00.000000000 Z
11
+ date: 2024-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday