stackone_client 0.37.2 → 0.37.3

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.
@@ -14,6 +14,10 @@ module StackOne
14
14
  include Crystalline::MetadataFields
15
15
 
16
16
 
17
+ field :application_stage, Crystalline::Nilable.new(Models::Shared::ApplicationApplicationStage), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('application_stage') } }
18
+ # Unique identifier of the application stage
19
+ field :application_stage_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('application_stage_id') } }
20
+
17
21
  field :application_status, Crystalline::Nilable.new(Models::Shared::ApplicationStatus), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('application_status') } }
18
22
  # Use `documents` expand instead
19
23
  #
@@ -31,9 +35,11 @@ module StackOne
31
35
  field :documents, Crystalline::Nilable.new(Crystalline::Array.new(Models::Shared::AtsDocumentApiModel)), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('documents') } }
32
36
  # Unique identifier
33
37
  field :id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
34
-
38
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
35
39
  field :interview_stage, Crystalline::Nilable.new(Models::Shared::ApplicationInterviewStage), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('interview_stage') } }
36
40
  # Unique identifier of the interview stage
41
+ #
42
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
37
43
  field :interview_stage_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('interview_stage_id') } }
38
44
  # Unique identifier of the job
39
45
  field :job_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('job_id') } }
@@ -51,11 +57,15 @@ module StackOne
51
57
  field :rejected_reason_ids, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('rejected_reason_ids') } }
52
58
 
53
59
  field :rejected_reasons, Crystalline::Nilable.new(Crystalline::Array.new(Models::Shared::RejectedReason)), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('rejected_reasons') } }
60
+ # Unique identifier of the application stage
61
+ field :remote_application_stage_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_application_stage_id') } }
54
62
  # Provider's unique identifier of the candidate
55
63
  field :remote_candidate_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_candidate_id') } }
56
64
  # Provider's unique identifier
57
65
  field :remote_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_id') } }
58
66
  # Provider's unique identifier of the interview stage
67
+ #
68
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
59
69
  field :remote_interview_stage_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_interview_stage_id') } }
60
70
  # Provider's unique identifier of the job
61
71
  field :remote_job_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_job_id') } }
@@ -76,8 +86,10 @@ module StackOne
76
86
  # Date of last update
77
87
  field :updated_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('updated_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
78
88
 
79
- sig { params(application_status: T.nilable(Models::Shared::ApplicationStatus), attachments: T.nilable(T::Array[Models::Shared::ApplicationAttachment]), candidate: T.nilable(Models::Shared::ApplicationCandidate), candidate_id: T.nilable(::String), created_at: T.nilable(::DateTime), custom_fields: T.nilable(T::Array[Models::Shared::CustomFields]), documents: T.nilable(T::Array[Models::Shared::AtsDocumentApiModel]), id: T.nilable(::String), interview_stage: T.nilable(Models::Shared::ApplicationInterviewStage), interview_stage_id: T.nilable(::String), job_id: T.nilable(::String), location_id: T.nilable(::String), location_ids: T.nilable(T::Array[::String]), questionnaires: T.nilable(T::Array[Models::Shared::Questionnaire]), rejected_at: T.nilable(::DateTime), rejected_reason_ids: T.nilable(T::Array[::String]), rejected_reasons: T.nilable(T::Array[Models::Shared::RejectedReason]), remote_candidate_id: T.nilable(::String), remote_id: T.nilable(::String), remote_interview_stage_id: T.nilable(::String), remote_job_id: T.nilable(::String), remote_location_id: T.nilable(::String), remote_location_ids: T.nilable(T::Array[::String]), remote_rejected_reason_ids: T.nilable(T::Array[::String]), result_links: T.nilable(T::Array[Models::Shared::ResultLink]), source: T.nilable(Models::Shared::Source), unified_custom_fields: T.nilable(T::Hash[Symbol, ::Object]), updated_at: T.nilable(::DateTime)).void }
80
- def initialize(application_status: nil, attachments: nil, candidate: nil, candidate_id: nil, created_at: nil, custom_fields: nil, documents: nil, id: nil, interview_stage: nil, interview_stage_id: nil, job_id: nil, location_id: nil, location_ids: nil, questionnaires: nil, rejected_at: nil, rejected_reason_ids: nil, rejected_reasons: nil, remote_candidate_id: nil, remote_id: nil, remote_interview_stage_id: nil, remote_job_id: nil, remote_location_id: nil, remote_location_ids: nil, remote_rejected_reason_ids: nil, result_links: nil, source: nil, unified_custom_fields: nil, updated_at: nil)
89
+ sig { params(application_stage: T.nilable(Models::Shared::ApplicationApplicationStage), application_stage_id: T.nilable(::String), application_status: T.nilable(Models::Shared::ApplicationStatus), attachments: T.nilable(T::Array[Models::Shared::ApplicationAttachment]), candidate: T.nilable(Models::Shared::ApplicationCandidate), candidate_id: T.nilable(::String), created_at: T.nilable(::DateTime), custom_fields: T.nilable(T::Array[Models::Shared::CustomFields]), documents: T.nilable(T::Array[Models::Shared::AtsDocumentApiModel]), id: T.nilable(::String), interview_stage: T.nilable(Models::Shared::ApplicationInterviewStage), interview_stage_id: T.nilable(::String), job_id: T.nilable(::String), location_id: T.nilable(::String), location_ids: T.nilable(T::Array[::String]), questionnaires: T.nilable(T::Array[Models::Shared::Questionnaire]), rejected_at: T.nilable(::DateTime), rejected_reason_ids: T.nilable(T::Array[::String]), rejected_reasons: T.nilable(T::Array[Models::Shared::RejectedReason]), remote_application_stage_id: T.nilable(::String), remote_candidate_id: T.nilable(::String), remote_id: T.nilable(::String), remote_interview_stage_id: T.nilable(::String), remote_job_id: T.nilable(::String), remote_location_id: T.nilable(::String), remote_location_ids: T.nilable(T::Array[::String]), remote_rejected_reason_ids: T.nilable(T::Array[::String]), result_links: T.nilable(T::Array[Models::Shared::ResultLink]), source: T.nilable(Models::Shared::Source), unified_custom_fields: T.nilable(T::Hash[Symbol, ::Object]), updated_at: T.nilable(::DateTime)).void }
90
+ def initialize(application_stage: nil, application_stage_id: nil, application_status: nil, attachments: nil, candidate: nil, candidate_id: nil, created_at: nil, custom_fields: nil, documents: nil, id: nil, interview_stage: nil, interview_stage_id: nil, job_id: nil, location_id: nil, location_ids: nil, questionnaires: nil, rejected_at: nil, rejected_reason_ids: nil, rejected_reasons: nil, remote_application_stage_id: nil, remote_candidate_id: nil, remote_id: nil, remote_interview_stage_id: nil, remote_job_id: nil, remote_location_id: nil, remote_location_ids: nil, remote_rejected_reason_ids: nil, result_links: nil, source: nil, unified_custom_fields: nil, updated_at: nil)
91
+ @application_stage = application_stage
92
+ @application_stage_id = application_stage_id
81
93
  @application_status = application_status
82
94
  @attachments = attachments
83
95
  @candidate = candidate
@@ -95,6 +107,7 @@ module StackOne
95
107
  @rejected_at = rejected_at
96
108
  @rejected_reason_ids = rejected_reason_ids
97
109
  @rejected_reasons = rejected_reasons
110
+ @remote_application_stage_id = remote_application_stage_id
98
111
  @remote_candidate_id = remote_candidate_id
99
112
  @remote_id = remote_id
100
113
  @remote_interview_stage_id = remote_interview_stage_id
@@ -111,6 +124,8 @@ module StackOne
111
124
  sig { params(other: T.untyped).returns(T::Boolean) }
112
125
  def ==(other)
113
126
  return false unless other.is_a? self.class
127
+ return false unless @application_stage == other.application_stage
128
+ return false unless @application_stage_id == other.application_stage_id
114
129
  return false unless @application_status == other.application_status
115
130
  return false unless @attachments == other.attachments
116
131
  return false unless @candidate == other.candidate
@@ -128,6 +143,7 @@ module StackOne
128
143
  return false unless @rejected_at == other.rejected_at
129
144
  return false unless @rejected_reason_ids == other.rejected_reason_ids
130
145
  return false unless @rejected_reasons == other.rejected_reasons
146
+ return false unless @remote_application_stage_id == other.remote_application_stage_id
131
147
  return false unless @remote_candidate_id == other.remote_candidate_id
132
148
  return false unless @remote_id == other.remote_id
133
149
  return false unless @remote_interview_stage_id == other.remote_interview_stage_id
@@ -8,6 +8,10 @@ end
8
8
 
9
9
 
10
10
  class StackOne::Models::Shared::Application
11
+ def application_stage(); end
12
+ def application_stage=(str_); end
13
+ def application_stage_id(); end
14
+ def application_stage_id=(str_); end
11
15
  def application_status(); end
12
16
  def application_status=(str_); end
13
17
  def attachments(); end
@@ -42,6 +46,8 @@ class StackOne::Models::Shared::Application
42
46
  def rejected_reason_ids=(str_); end
43
47
  def rejected_reasons(); end
44
48
  def rejected_reasons=(str_); end
49
+ def remote_application_stage_id(); end
50
+ def remote_application_stage_id=(str_); end
45
51
  def remote_candidate_id(); end
46
52
  def remote_candidate_id=(str_); end
47
53
  def remote_id(); end
@@ -0,0 +1,57 @@
1
+ # Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
2
+
3
+ # typed: true
4
+ # frozen_string_literal: true
5
+
6
+
7
+ module StackOne
8
+ module Models
9
+ module Shared
10
+
11
+
12
+ class ApplicationApplicationStage
13
+ extend T::Sig
14
+ include Crystalline::MetadataFields
15
+
16
+ # Application Stage created date
17
+ field :created_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('created_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
18
+ # Unique identifier
19
+ field :id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
20
+ # Application Stage name
21
+ field :name, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('name') } }
22
+ # Application Stage order
23
+ field :order, Crystalline::Nilable.new(::Float), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('order') } }
24
+ # Provider's unique identifier
25
+ field :remote_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('remote_id') } }
26
+ # Custom Unified Fields configured in your StackOne project
27
+ field :unified_custom_fields, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, ::Object)), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('unified_custom_fields') } }
28
+ # Application Stage updated date
29
+ field :updated_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('updated_at'), 'decoder': Utils.datetime_from_iso_format(true) } }
30
+
31
+ sig { params(created_at: T.nilable(::DateTime), id: T.nilable(::String), name: T.nilable(::String), order: T.nilable(::Float), remote_id: T.nilable(::String), unified_custom_fields: T.nilable(T::Hash[Symbol, ::Object]), updated_at: T.nilable(::DateTime)).void }
32
+ def initialize(created_at: nil, id: nil, name: nil, order: nil, remote_id: nil, unified_custom_fields: nil, updated_at: nil)
33
+ @created_at = created_at
34
+ @id = id
35
+ @name = name
36
+ @order = order
37
+ @remote_id = remote_id
38
+ @unified_custom_fields = unified_custom_fields
39
+ @updated_at = updated_at
40
+ end
41
+
42
+ sig { params(other: T.untyped).returns(T::Boolean) }
43
+ def ==(other)
44
+ return false unless other.is_a? self.class
45
+ return false unless @created_at == other.created_at
46
+ return false unless @id == other.id
47
+ return false unless @name == other.name
48
+ return false unless @order == other.order
49
+ return false unless @remote_id == other.remote_id
50
+ return false unless @unified_custom_fields == other.unified_custom_fields
51
+ return false unless @updated_at == other.updated_at
52
+ true
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,25 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class StackOne::Models::Shared::ApplicationApplicationStage
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class StackOne::Models::Shared::ApplicationApplicationStage
11
+ def created_at(); end
12
+ def created_at=(str_); end
13
+ def id(); end
14
+ def id=(str_); end
15
+ def name(); end
16
+ def name=(str_); end
17
+ def order(); end
18
+ def order=(str_); end
19
+ def remote_id(); end
20
+ def remote_id=(str_); end
21
+ def unified_custom_fields(); end
22
+ def unified_custom_fields=(str_); end
23
+ def updated_at(); end
24
+ def updated_at=(str_); end
25
+ end
@@ -8,7 +8,7 @@ module StackOne
8
8
  module Models
9
9
  module Shared
10
10
 
11
-
11
+ # @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
12
12
  class ApplicationInterviewStage
13
13
  extend T::Sig
14
14
  include Crystalline::MetadataFields
@@ -16,6 +16,8 @@ module StackOne
16
16
 
17
17
  field :application_status, Crystalline::Nilable.new(Models::Shared::ApplicationChangesDataModelApplicationStatus), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('application_status') } }
18
18
  # Unique identifier of the interview stage
19
+ #
20
+ # @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
19
21
  field :interview_stage_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('interview_stage_id') } }
20
22
  # Unique identifiers of the rejection reasons
21
23
  field :rejected_reason_ids, Crystalline::Nilable.new(Crystalline::Array.new(::String)), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('rejected_reason_ids') } }
@@ -102,6 +102,7 @@ module StackOne
102
102
  autoload :ApplicationStageResult, 'stack_one/models/shared/applicationstageresult.rb'
103
103
  autoload :ApplicationStagesPaginated, 'stack_one/models/shared/applicationstagespaginated.rb'
104
104
  autoload :Application4, 'stack_one/models/shared/application_4.rb'
105
+ autoload :ApplicationApplicationStage, 'stack_one/models/shared/application_application_stage.rb'
105
106
  autoload :ApplicationCandidate, 'stack_one/models/shared/application_candidate.rb'
106
107
  autoload :ApplicationInterviewStage, 'stack_one/models/shared/application_interview_stage.rb'
107
108
  autoload :ApplicationSourceValue, 'stack_one/models/shared/application_source_value.rb'
@@ -90,7 +90,7 @@ module StackOne
90
90
  hook_ctx = SDKHooks::HookContext.new(
91
91
  config: @sdk_configuration,
92
92
  base_url: base_url,
93
- oauth2_scopes: [],
93
+ oauth2_scopes: nil,
94
94
  operation_id: 'stackone_proxy_request',
95
95
  security_source: @sdk_configuration.security_source
96
96
  )
@@ -85,7 +85,7 @@ module StackOne
85
85
  hook_ctx = SDKHooks::HookContext.new(
86
86
  config: @sdk_configuration,
87
87
  base_url: base_url,
88
- oauth2_scopes: [],
88
+ oauth2_scopes: nil,
89
89
  operation_id: 'stackone_get_log',
90
90
  security_source: @sdk_configuration.security_source
91
91
  )
@@ -359,7 +359,7 @@ module StackOne
359
359
  hook_ctx = SDKHooks::HookContext.new(
360
360
  config: @sdk_configuration,
361
361
  base_url: base_url,
362
- oauth2_scopes: [],
362
+ oauth2_scopes: nil,
363
363
  operation_id: 'stackone_list_logs',
364
364
  security_source: @sdk_configuration.security_source
365
365
  )
@@ -633,7 +633,7 @@ module StackOne
633
633
  hook_ctx = SDKHooks::HookContext.new(
634
634
  config: @sdk_configuration,
635
635
  base_url: base_url,
636
- oauth2_scopes: [],
636
+ oauth2_scopes: nil,
637
637
  operation_id: 'stackone_list_platform_logs',
638
638
  security_source: @sdk_configuration.security_source
639
639
  )
@@ -907,7 +907,7 @@ module StackOne
907
907
  hook_ctx = SDKHooks::HookContext.new(
908
908
  config: @sdk_configuration,
909
909
  base_url: base_url,
910
- oauth2_scopes: [],
910
+ oauth2_scopes: nil,
911
911
  operation_id: 'stackone_list_step_logs',
912
912
  security_source: @sdk_configuration.security_source
913
913
  )
@@ -91,7 +91,7 @@ module StackOne
91
91
  hook_ctx = SDKHooks::HookContext.new(
92
92
  config: @sdk_configuration,
93
93
  base_url: base_url,
94
- oauth2_scopes: [],
94
+ oauth2_scopes: nil,
95
95
  operation_id: 'screening_create_screening_order',
96
96
  security_source: @sdk_configuration.security_source
97
97
  )
@@ -384,7 +384,7 @@ module StackOne
384
384
  hook_ctx = SDKHooks::HookContext.new(
385
385
  config: @sdk_configuration,
386
386
  base_url: base_url,
387
- oauth2_scopes: [],
387
+ oauth2_scopes: nil,
388
388
  operation_id: 'screening_get_screening_package',
389
389
  security_source: @sdk_configuration.security_source
390
390
  )
@@ -672,7 +672,7 @@ module StackOne
672
672
  hook_ctx = SDKHooks::HookContext.new(
673
673
  config: @sdk_configuration,
674
674
  base_url: base_url,
675
- oauth2_scopes: [],
675
+ oauth2_scopes: nil,
676
676
  operation_id: 'screening_list_screening_packages',
677
677
  security_source: @sdk_configuration.security_source
678
678
  )
@@ -1002,7 +1002,7 @@ module StackOne
1002
1002
  hook_ctx = SDKHooks::HookContext.new(
1003
1003
  config: @sdk_configuration,
1004
1004
  base_url: base_url,
1005
- oauth2_scopes: [],
1005
+ oauth2_scopes: nil,
1006
1006
  operation_id: 'screening_webhook_screening_result',
1007
1007
  security_source: @sdk_configuration.security_source
1008
1008
  )
@@ -89,9 +89,9 @@ module StackOne
89
89
  end
90
90
  @language = 'ruby'
91
91
  @openapi_doc_version = '1.0.0'
92
- @sdk_version = '0.37.2'
93
- @gen_version = '2.721.3'
94
- @user_agent = 'speakeasy-sdk/ruby 0.37.2 2.721.3 1.0.0 stackone_client'
92
+ @sdk_version = '0.37.3'
93
+ @gen_version = '2.723.2'
94
+ @user_agent = 'speakeasy-sdk/ruby 0.37.3 2.723.2 1.0.0 stackone_client'
95
95
  end
96
96
 
97
97
  sig { returns([String, T::Hash[Symbol, String]]) }
@@ -92,7 +92,7 @@ module StackOne
92
92
  hook_ctx = SDKHooks::HookContext.new(
93
93
  config: @sdk_configuration,
94
94
  base_url: base_url,
95
- oauth2_scopes: [],
95
+ oauth2_scopes: nil,
96
96
  operation_id: 'ticketing_create_ticket',
97
97
  security_source: @sdk_configuration.security_source
98
98
  )
@@ -386,7 +386,7 @@ module StackOne
386
386
  hook_ctx = SDKHooks::HookContext.new(
387
387
  config: @sdk_configuration,
388
388
  base_url: base_url,
389
- oauth2_scopes: [],
389
+ oauth2_scopes: nil,
390
390
  operation_id: 'ticketing_download_ticketing_attachment',
391
391
  security_source: @sdk_configuration.security_source
392
392
  )
@@ -678,7 +678,7 @@ module StackOne
678
678
  hook_ctx = SDKHooks::HookContext.new(
679
679
  config: @sdk_configuration,
680
680
  base_url: base_url,
681
- oauth2_scopes: [],
681
+ oauth2_scopes: nil,
682
682
  operation_id: 'ticketing_get_attachment',
683
683
  security_source: @sdk_configuration.security_source
684
684
  )
@@ -972,7 +972,7 @@ module StackOne
972
972
  hook_ctx = SDKHooks::HookContext.new(
973
973
  config: @sdk_configuration,
974
974
  base_url: base_url,
975
- oauth2_scopes: [],
975
+ oauth2_scopes: nil,
976
976
  operation_id: 'ticketing_get_comment',
977
977
  security_source: @sdk_configuration.security_source
978
978
  )
@@ -1266,7 +1266,7 @@ module StackOne
1266
1266
  hook_ctx = SDKHooks::HookContext.new(
1267
1267
  config: @sdk_configuration,
1268
1268
  base_url: base_url,
1269
- oauth2_scopes: [],
1269
+ oauth2_scopes: nil,
1270
1270
  operation_id: 'ticketing_get_project',
1271
1271
  security_source: @sdk_configuration.security_source
1272
1272
  )
@@ -1560,7 +1560,7 @@ module StackOne
1560
1560
  hook_ctx = SDKHooks::HookContext.new(
1561
1561
  config: @sdk_configuration,
1562
1562
  base_url: base_url,
1563
- oauth2_scopes: [],
1563
+ oauth2_scopes: nil,
1564
1564
  operation_id: 'ticketing_get_project_component',
1565
1565
  security_source: @sdk_configuration.security_source
1566
1566
  )
@@ -1854,7 +1854,7 @@ module StackOne
1854
1854
  hook_ctx = SDKHooks::HookContext.new(
1855
1855
  config: @sdk_configuration,
1856
1856
  base_url: base_url,
1857
- oauth2_scopes: [],
1857
+ oauth2_scopes: nil,
1858
1858
  operation_id: 'ticketing_get_ticket',
1859
1859
  security_source: @sdk_configuration.security_source
1860
1860
  )
@@ -2148,7 +2148,7 @@ module StackOne
2148
2148
  hook_ctx = SDKHooks::HookContext.new(
2149
2149
  config: @sdk_configuration,
2150
2150
  base_url: base_url,
2151
- oauth2_scopes: [],
2151
+ oauth2_scopes: nil,
2152
2152
  operation_id: 'ticketing_get_ticket_type',
2153
2153
  security_source: @sdk_configuration.security_source
2154
2154
  )
@@ -2442,7 +2442,7 @@ module StackOne
2442
2442
  hook_ctx = SDKHooks::HookContext.new(
2443
2443
  config: @sdk_configuration,
2444
2444
  base_url: base_url,
2445
- oauth2_scopes: [],
2445
+ oauth2_scopes: nil,
2446
2446
  operation_id: 'ticketing_get_user',
2447
2447
  security_source: @sdk_configuration.security_source
2448
2448
  )
@@ -2736,7 +2736,7 @@ module StackOne
2736
2736
  hook_ctx = SDKHooks::HookContext.new(
2737
2737
  config: @sdk_configuration,
2738
2738
  base_url: base_url,
2739
- oauth2_scopes: [],
2739
+ oauth2_scopes: nil,
2740
2740
  operation_id: 'ticketing_list_attachments',
2741
2741
  security_source: @sdk_configuration.security_source
2742
2742
  )
@@ -3059,7 +3059,7 @@ module StackOne
3059
3059
  hook_ctx = SDKHooks::HookContext.new(
3060
3060
  config: @sdk_configuration,
3061
3061
  base_url: base_url,
3062
- oauth2_scopes: [],
3062
+ oauth2_scopes: nil,
3063
3063
  operation_id: 'ticketing_list_comments',
3064
3064
  security_source: @sdk_configuration.security_source
3065
3065
  )
@@ -3382,7 +3382,7 @@ module StackOne
3382
3382
  hook_ctx = SDKHooks::HookContext.new(
3383
3383
  config: @sdk_configuration,
3384
3384
  base_url: base_url,
3385
- oauth2_scopes: [],
3385
+ oauth2_scopes: nil,
3386
3386
  operation_id: 'ticketing_list_project_components',
3387
3387
  security_source: @sdk_configuration.security_source
3388
3388
  )
@@ -3705,7 +3705,7 @@ module StackOne
3705
3705
  hook_ctx = SDKHooks::HookContext.new(
3706
3706
  config: @sdk_configuration,
3707
3707
  base_url: base_url,
3708
- oauth2_scopes: [],
3708
+ oauth2_scopes: nil,
3709
3709
  operation_id: 'ticketing_list_project_ticket_types',
3710
3710
  security_source: @sdk_configuration.security_source
3711
3711
  )
@@ -4023,7 +4023,7 @@ module StackOne
4023
4023
  hook_ctx = SDKHooks::HookContext.new(
4024
4024
  config: @sdk_configuration,
4025
4025
  base_url: base_url,
4026
- oauth2_scopes: [],
4026
+ oauth2_scopes: nil,
4027
4027
  operation_id: 'ticketing_list_projects',
4028
4028
  security_source: @sdk_configuration.security_source
4029
4029
  )
@@ -4345,7 +4345,7 @@ module StackOne
4345
4345
  hook_ctx = SDKHooks::HookContext.new(
4346
4346
  config: @sdk_configuration,
4347
4347
  base_url: base_url,
4348
- oauth2_scopes: [],
4348
+ oauth2_scopes: nil,
4349
4349
  operation_id: 'ticketing_list_ticket_statuses',
4350
4350
  security_source: @sdk_configuration.security_source
4351
4351
  )
@@ -4663,7 +4663,7 @@ module StackOne
4663
4663
  hook_ctx = SDKHooks::HookContext.new(
4664
4664
  config: @sdk_configuration,
4665
4665
  base_url: base_url,
4666
- oauth2_scopes: [],
4666
+ oauth2_scopes: nil,
4667
4667
  operation_id: 'ticketing_list_ticket_types',
4668
4668
  security_source: @sdk_configuration.security_source
4669
4669
  )
@@ -4980,7 +4980,7 @@ module StackOne
4980
4980
  hook_ctx = SDKHooks::HookContext.new(
4981
4981
  config: @sdk_configuration,
4982
4982
  base_url: base_url,
4983
- oauth2_scopes: [],
4983
+ oauth2_scopes: nil,
4984
4984
  operation_id: 'ticketing_list_tickets',
4985
4985
  security_source: @sdk_configuration.security_source
4986
4986
  )
@@ -5297,7 +5297,7 @@ module StackOne
5297
5297
  hook_ctx = SDKHooks::HookContext.new(
5298
5298
  config: @sdk_configuration,
5299
5299
  base_url: base_url,
5300
- oauth2_scopes: [],
5300
+ oauth2_scopes: nil,
5301
5301
  operation_id: 'ticketing_list_users',
5302
5302
  security_source: @sdk_configuration.security_source
5303
5303
  )
@@ -5634,7 +5634,7 @@ module StackOne
5634
5634
  hook_ctx = SDKHooks::HookContext.new(
5635
5635
  config: @sdk_configuration,
5636
5636
  base_url: base_url,
5637
- oauth2_scopes: [],
5637
+ oauth2_scopes: nil,
5638
5638
  operation_id: 'ticketing_update_ticket',
5639
5639
  security_source: @sdk_configuration.security_source
5640
5640
  )
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.37.2
4
+ version: 0.37.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - StackOne
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-06 00:00:00.000000000 Z
11
+ date: 2025-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -1837,6 +1837,8 @@ files:
1837
1837
  - lib/stack_one/models/shared/application.rbi
1838
1838
  - lib/stack_one/models/shared/application_4.rb
1839
1839
  - lib/stack_one/models/shared/application_4.rbi
1840
+ - lib/stack_one/models/shared/application_application_stage.rb
1841
+ - lib/stack_one/models/shared/application_application_stage.rbi
1840
1842
  - lib/stack_one/models/shared/application_candidate.rb
1841
1843
  - lib/stack_one/models/shared/application_candidate.rbi
1842
1844
  - lib/stack_one/models/shared/application_interview_stage.rb