kombo 1.2.0 → 1.2.1

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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/kombo/assessment.rb +16 -16
  3. data/lib/kombo/ats.rb +96 -96
  4. data/lib/kombo/connect.rb +8 -8
  5. data/lib/kombo/general.rb +61 -53
  6. data/lib/kombo/hris.rb +72 -72
  7. data/lib/kombo/models/shared/getatsjobspositiveresponse_hiring_team.rb +1 -1
  8. data/lib/kombo/models/shared/getatsjobspositiveresponse_hiring_team_role.rb +1 -1
  9. data/lib/kombo/models/shared/getatsjobspositiveresponse_scope.rb +1 -2
  10. data/lib/kombo/models/shared/getatsuserspositiveresponse_scope.rb +1 -2
  11. data/lib/kombo/models/shared/integration_tool.rb +6 -0
  12. data/lib/kombo/models/shared/job_role.rb +6 -6
  13. data/lib/kombo/models/shared/job_role.rbi +2 -2
  14. data/lib/kombo/models/shared/name.rb +5 -1
  15. data/lib/kombo/models/shared/postatscandidatesrequestbody_aktiv.rb +19 -0
  16. data/lib/kombo/models/shared/postatscandidatesrequestbody_aktiv.rbi +11 -0
  17. data/lib/kombo/models/shared/postatscandidatesrequestbody_covetorest_candidate.rb +6 -2
  18. data/lib/kombo/models/shared/postatscandidatesrequestbody_covetorest_candidate.rbi +2 -0
  19. data/lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_aktiv.rb +19 -0
  20. data/lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_aktiv.rbi +11 -0
  21. data/lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_covetorest_candidate.rb +6 -2
  22. data/lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_covetorest_candidate.rbi +2 -0
  23. data/lib/kombo/models/shared/system_role.rb +6 -6
  24. data/lib/kombo/models/shared/system_role.rbi +2 -2
  25. data/lib/kombo/models/shared.rb +2 -0
  26. data/lib/kombo/sdkconfiguration.rb +3 -3
  27. data/lib/kombo/utils/retries.rb +4 -1
  28. metadata +8 -4
@@ -12,29 +12,29 @@ module Kombo
12
12
  extend T::Sig
13
13
  include Crystalline::MetadataFields
14
14
 
15
+ # Roles that apply at the job level.
16
+ field :scope, Models::Shared::GetAtsJobsPositiveResponseScope, { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('scope'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsJobsPositiveResponseScope, false) } }
15
17
  # The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
16
18
  field :remote_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_id'), required: true } }
17
19
  # The label of the role.
18
20
  field :remote_label, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_label'), required: true } }
19
- # Whether the role applies globally or is scoped to a specific job.
20
- field :scope, Crystalline::Nilable.new(Models::Shared::GetAtsJobsPositiveResponseScope), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('scope'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsJobsPositiveResponseScope, false) } }
21
21
  # Unified role type if Kombo can map it.
22
22
  field :unified_type, Crystalline::Nilable.new(Models::Shared::GetAtsJobsPositiveResponseUnifiedType), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('unified_type'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsJobsPositiveResponseUnifiedType, false) } }
23
23
 
24
- sig { params(remote_id: T.nilable(::String), remote_label: T.nilable(::String), scope: T.nilable(Models::Shared::GetAtsJobsPositiveResponseScope), unified_type: T.nilable(Models::Shared::GetAtsJobsPositiveResponseUnifiedType)).void }
25
- def initialize(remote_id: nil, remote_label: nil, scope: nil, unified_type: nil)
24
+ sig { params(scope: Models::Shared::GetAtsJobsPositiveResponseScope, remote_id: T.nilable(::String), remote_label: T.nilable(::String), unified_type: T.nilable(Models::Shared::GetAtsJobsPositiveResponseUnifiedType)).void }
25
+ def initialize(scope:, remote_id: nil, remote_label: nil, unified_type: nil)
26
+ @scope = scope
26
27
  @remote_id = remote_id
27
28
  @remote_label = remote_label
28
- @scope = scope
29
29
  @unified_type = unified_type
30
30
  end
31
31
 
32
32
  sig { params(other: T.untyped).returns(T::Boolean) }
33
33
  def ==(other)
34
34
  return false unless other.is_a? self.class
35
+ return false unless @scope == other.scope
35
36
  return false unless @remote_id == other.remote_id
36
37
  return false unless @remote_label == other.remote_label
37
- return false unless @scope == other.scope
38
38
  return false unless @unified_type == other.unified_type
39
39
  true
40
40
  end
@@ -8,12 +8,12 @@ end
8
8
 
9
9
 
10
10
  class Kombo::Models::Shared::JobRole
11
+ def scope(); end
12
+ def scope=(str_); end
11
13
  def remote_id(); end
12
14
  def remote_id=(str_); end
13
15
  def remote_label(); end
14
16
  def remote_label=(str_); end
15
- def scope(); end
16
- def scope=(str_); end
17
17
  def unified_type(); end
18
18
  def unified_type=(str_); end
19
19
  end
@@ -20,9 +20,13 @@ module Kombo
20
20
  HRIS_TIME_OFF_BALANCES = new('hris_time_off_balances')
21
21
  HRIS_TIMESHEETS = new('hris_timesheets')
22
22
  HRIS_EMPLOYEE_DOCUMENT_CATEGORIES = new('hris_employee_document_categories')
23
- HRIS_PERFORMANCE_REVIEWS = new('hris_performance_reviews')
24
23
  HRIS_PERFORMANCE_REVIEW_CYCLES = new('hris_performance_review_cycles')
24
+ HRIS_PERFORMANCE_REVIEWS = new('hris_performance_reviews')
25
25
  HRIS_STAFFING_ENTITIES = new('hris_staffing_entities')
26
+ HRIS_SKILL_PROFICIENCY_SCALES = new('hris_skill_proficiency_scales')
27
+ HRIS_SKILLS = new('hris_skills')
28
+ HRIS_SKILL_RATING_PROVIDERS = new('hris_skill_rating_providers')
29
+ HRIS_EMPLOYEE_SKILL_PROFICIENCY_RATINGS = new('hris_employee_skill_proficiency_ratings')
26
30
  ATS_USERS = new('ats_users')
27
31
  ATS_JOBS = new('ats_jobs')
28
32
  ATS_JOB_POSTINGS = new('ats_job_postings')
@@ -0,0 +1,19 @@
1
+ # Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
2
+
3
+ # typed: true
4
+ # frozen_string_literal: true
5
+
6
+
7
+ module Kombo
8
+ module Models
9
+ module Shared
10
+ # PostAtsCandidatesRequestBodyAktiv - Whether the candidate is created as active (`Ja`) or inactive (`Nein`) in Coveto. If omitted, Coveto applies its default (active).
11
+ class PostAtsCandidatesRequestBodyAktiv < T::Enum
12
+ enums do
13
+ JA = new('Ja')
14
+ NEIN = new('Nein')
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,11 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class Kombo::Models::Shared::PostAtsCandidatesRequestBodyAktiv
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class Kombo::Models::Shared::PostAtsCandidatesRequestBodyAktiv
11
+ end
@@ -16,11 +16,14 @@ module Kombo
16
16
  field :mandant, Crystalline::Nilable.new(::Float), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('mandant') } }
17
17
  # The numeric status ID to assign to the candidate on creation in Coveto. Refer to your Coveto `/bewerber-status` endpoint for available IDs.
18
18
  field :status, Crystalline::Nilable.new(::Integer), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('status') } }
19
+ # Whether the candidate is created as active (`Ja`) or inactive (`Nein`) in Coveto. If omitted, Coveto applies its default (active).
20
+ field :aktiv, Crystalline::Nilable.new(Models::Shared::PostAtsCandidatesRequestBodyAktiv), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('aktiv'), 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::PostAtsCandidatesRequestBodyAktiv, true) } }
19
21
 
20
- sig { params(mandant: T.nilable(::Float), status: T.nilable(::Integer)).void }
21
- def initialize(mandant: nil, status: nil)
22
+ sig { params(mandant: T.nilable(::Float), status: T.nilable(::Integer), aktiv: T.nilable(Models::Shared::PostAtsCandidatesRequestBodyAktiv)).void }
23
+ def initialize(mandant: nil, status: nil, aktiv: nil)
22
24
  @mandant = mandant
23
25
  @status = status
26
+ @aktiv = aktiv
24
27
  end
25
28
 
26
29
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -28,6 +31,7 @@ module Kombo
28
31
  return false unless other.is_a? self.class
29
32
  return false unless @mandant == other.mandant
30
33
  return false unless @status == other.status
34
+ return false unless @aktiv == other.aktiv
31
35
  true
32
36
  end
33
37
  end
@@ -12,4 +12,6 @@ class Kombo::Models::Shared::PostAtsCandidatesRequestBodyCovetorestCandidate
12
12
  def mandant=(str_); end
13
13
  def status(); end
14
14
  def status=(str_); end
15
+ def aktiv(); end
16
+ def aktiv=(str_); end
15
17
  end
@@ -0,0 +1,19 @@
1
+ # Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
2
+
3
+ # typed: true
4
+ # frozen_string_literal: true
5
+
6
+
7
+ module Kombo
8
+ module Models
9
+ module Shared
10
+ # PostAtsJobsJobIdApplicationsRequestBodyAktiv - Whether the candidate is created as active (`Ja`) or inactive (`Nein`) in Coveto. If omitted, Coveto applies its default (active).
11
+ class PostAtsJobsJobIdApplicationsRequestBodyAktiv < T::Enum
12
+ enums do
13
+ JA = new('Ja')
14
+ NEIN = new('Nein')
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,11 @@
1
+ # typed: true
2
+ # frozen_string_literal: true
3
+
4
+
5
+ class Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyAktiv
6
+ extend ::Crystalline::MetadataFields::ClassMethods
7
+ end
8
+
9
+
10
+ class Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyAktiv
11
+ end
@@ -16,11 +16,14 @@ module Kombo
16
16
  field :mandant, Crystalline::Nilable.new(::Float), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('mandant') } }
17
17
  # The numeric status ID to assign to the candidate on creation in Coveto. Refer to your Coveto `/bewerber-status` endpoint for available IDs.
18
18
  field :status, Crystalline::Nilable.new(::Integer), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('status') } }
19
+ # Whether the candidate is created as active (`Ja`) or inactive (`Nein`) in Coveto. If omitted, Coveto applies its default (active).
20
+ field :aktiv, Crystalline::Nilable.new(Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyAktiv), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('aktiv'), 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyAktiv, true) } }
19
21
 
20
- sig { params(mandant: T.nilable(::Float), status: T.nilable(::Integer)).void }
21
- def initialize(mandant: nil, status: nil)
22
+ sig { params(mandant: T.nilable(::Float), status: T.nilable(::Integer), aktiv: T.nilable(Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyAktiv)).void }
23
+ def initialize(mandant: nil, status: nil, aktiv: nil)
22
24
  @mandant = mandant
23
25
  @status = status
26
+ @aktiv = aktiv
24
27
  end
25
28
 
26
29
  sig { params(other: T.untyped).returns(T::Boolean) }
@@ -28,6 +31,7 @@ module Kombo
28
31
  return false unless other.is_a? self.class
29
32
  return false unless @mandant == other.mandant
30
33
  return false unless @status == other.status
34
+ return false unless @aktiv == other.aktiv
31
35
  true
32
36
  end
33
37
  end
@@ -12,4 +12,6 @@ class Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyCovetorestCa
12
12
  def mandant=(str_); end
13
13
  def status(); end
14
14
  def status=(str_); end
15
+ def aktiv(); end
16
+ def aktiv=(str_); end
15
17
  end
@@ -12,29 +12,29 @@ module Kombo
12
12
  extend T::Sig
13
13
  include Crystalline::MetadataFields
14
14
 
15
+ # Roles that apply at the system level.
16
+ field :scope, Models::Shared::GetAtsUsersPositiveResponseScope, { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('scope'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsUsersPositiveResponseScope, false) } }
15
17
  # The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
16
18
  field :remote_id, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_id'), required: true } }
17
19
  # The label of the role.
18
20
  field :remote_label, Crystalline::Nilable.new(::String), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_label'), required: true } }
19
- # Whether the role applies globally or is scoped to a specific job.
20
- field :scope, Crystalline::Nilable.new(Models::Shared::GetAtsUsersPositiveResponseScope), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('scope'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsUsersPositiveResponseScope, false) } }
21
21
  # Unified role type if Kombo can map it.
22
22
  field :unified_type, Crystalline::Nilable.new(Models::Shared::GetAtsUsersPositiveResponseUnifiedType), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('unified_type'), required: true, 'decoder': ::Kombo::Utils.enum_from_string(Models::Shared::GetAtsUsersPositiveResponseUnifiedType, false) } }
23
23
 
24
- sig { params(remote_id: T.nilable(::String), remote_label: T.nilable(::String), scope: T.nilable(Models::Shared::GetAtsUsersPositiveResponseScope), unified_type: T.nilable(Models::Shared::GetAtsUsersPositiveResponseUnifiedType)).void }
25
- def initialize(remote_id: nil, remote_label: nil, scope: nil, unified_type: nil)
24
+ sig { params(scope: Models::Shared::GetAtsUsersPositiveResponseScope, remote_id: T.nilable(::String), remote_label: T.nilable(::String), unified_type: T.nilable(Models::Shared::GetAtsUsersPositiveResponseUnifiedType)).void }
25
+ def initialize(scope:, remote_id: nil, remote_label: nil, unified_type: nil)
26
+ @scope = scope
26
27
  @remote_id = remote_id
27
28
  @remote_label = remote_label
28
- @scope = scope
29
29
  @unified_type = unified_type
30
30
  end
31
31
 
32
32
  sig { params(other: T.untyped).returns(T::Boolean) }
33
33
  def ==(other)
34
34
  return false unless other.is_a? self.class
35
+ return false unless @scope == other.scope
35
36
  return false unless @remote_id == other.remote_id
36
37
  return false unless @remote_label == other.remote_label
37
- return false unless @scope == other.scope
38
38
  return false unless @unified_type == other.unified_type
39
39
  true
40
40
  end
@@ -8,12 +8,12 @@ end
8
8
 
9
9
 
10
10
  class Kombo::Models::Shared::SystemRole
11
+ def scope(); end
12
+ def scope=(str_); end
11
13
  def remote_id(); end
12
14
  def remote_id=(str_); end
13
15
  def remote_label(); end
14
16
  def remote_label=(str_); end
15
- def scope(); end
16
- def scope=(str_); end
17
17
  def unified_type(); end
18
18
  def unified_type=(str_); end
19
19
  end
@@ -465,6 +465,7 @@ module Kombo
465
465
  autoload :PostAtsCandidatesRequestBodyAdditionalEmailAddressType, 'kombo/models/shared/postatscandidatesrequestbody_additional_email_address_type.rb'
466
466
  autoload :PostAtsCandidatesRequestBodyAdditionalPhoneNumber, 'kombo/models/shared/postatscandidatesrequestbody_additional_phone_number.rb'
467
467
  autoload :PostAtsCandidatesRequestBodyAdditionalPhoneNumberType, 'kombo/models/shared/postatscandidatesrequestbody_additional_phone_number_type.rb'
468
+ autoload :PostAtsCandidatesRequestBodyAktiv, 'kombo/models/shared/postatscandidatesrequestbody_aktiv.rb'
468
469
  autoload :PostAtsCandidatesRequestBodyAnswer, 'kombo/models/shared/postatscandidatesrequestbody_answer.rb'
469
470
  autoload :PostAtsCandidatesRequestBodyAnswerUnion, 'kombo/models/shared/postatscandidatesrequestbody_answer_union.rb'
470
471
  autoload :PostAtsCandidatesRequestBodyApplication, 'kombo/models/shared/postatscandidatesrequestbody_application.rb'
@@ -612,6 +613,7 @@ module Kombo
612
613
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAdditionalEmailAddressType, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_email_address_type.rb'
613
614
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAdditionalPhoneNumber, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_phone_number.rb'
614
615
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAdditionalPhoneNumberType, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_phone_number_type.rb'
616
+ autoload :PostAtsJobsJobIdApplicationsRequestBodyAktiv, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_aktiv.rb'
615
617
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAnswer, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_answer.rb'
616
618
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAnswerUnion, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_answer_union.rb'
617
619
  autoload :PostAtsJobsJobIdApplicationsRequestBodyAttachment, 'kombo/models/shared/postatsjobsjobidapplicationsrequestbody_attachment.rb'
@@ -97,9 +97,9 @@ module Kombo
97
97
  @globals = globals.nil? ? {} : globals
98
98
  @language = 'ruby'
99
99
  @openapi_doc_version = '1.0.0'
100
- @sdk_version = '1.2.0'
101
- @gen_version = '2.893.0'
102
- @user_agent = 'speakeasy-sdk/ruby 1.2.0 2.893.0 1.0.0 kombo'
100
+ @sdk_version = '1.2.1'
101
+ @gen_version = '2.916.2'
102
+ @user_agent = 'speakeasy-sdk/ruby 1.2.1 2.916.2 1.0.0 kombo'
103
103
  end
104
104
 
105
105
  sig { returns([String, T::Hash[Symbol, String]]) }
@@ -80,12 +80,15 @@ module Kombo
80
80
  if @strategy == 'backoff' && @backoff
81
81
  retry_options[:backoff_factor] = @backoff.exponent unless @backoff.exponent.nil?
82
82
  retry_options[:interval] = (@backoff.initial_interval.to_f / 1000) unless @backoff.initial_interval.nil?
83
- retry_options[:max_interval] = @backoff.max_interval unless @backoff.max_interval.nil?
83
+ retry_options[:max_interval] = (@backoff.max_interval.to_f / 1000) unless @backoff.max_interval.nil?
84
84
 
85
85
  unless @backoff.max_elapsed_time.nil?
86
86
  stop_time = initial_time + (@backoff.max_elapsed_time.to_f / 1000)
87
87
  retry_options[:retry_if] = ->(_env, _exc) { Time.now < stop_time }
88
88
  end
89
+
90
+ retry_options[:rate_limit_retry_header] = 'retry-after-ms'
91
+ retry_options[:header_parser_block] = ->(value) { value.to_f / 1000 }
89
92
  end
90
93
 
91
94
  retry_options
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kombo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kombo Technologies GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-08 00:00:00.000000000 Z
11
+ date: 2026-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 2.14.1
39
+ version: 2.14.3
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 2.14.1
46
+ version: 2.14.3
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: faraday-multipart
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -1517,6 +1517,8 @@ files:
1517
1517
  - lib/kombo/models/shared/postatscandidatesrequestbody_additional_phone_number.rbi
1518
1518
  - lib/kombo/models/shared/postatscandidatesrequestbody_additional_phone_number_type.rb
1519
1519
  - lib/kombo/models/shared/postatscandidatesrequestbody_additional_phone_number_type.rbi
1520
+ - lib/kombo/models/shared/postatscandidatesrequestbody_aktiv.rb
1521
+ - lib/kombo/models/shared/postatscandidatesrequestbody_aktiv.rbi
1520
1522
  - lib/kombo/models/shared/postatscandidatesrequestbody_answer.rb
1521
1523
  - lib/kombo/models/shared/postatscandidatesrequestbody_answer.rbi
1522
1524
  - lib/kombo/models/shared/postatscandidatesrequestbody_answer_union.rb
@@ -1811,6 +1813,8 @@ files:
1811
1813
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_phone_number.rbi
1812
1814
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_phone_number_type.rb
1813
1815
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_additional_phone_number_type.rbi
1816
+ - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_aktiv.rb
1817
+ - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_aktiv.rbi
1814
1818
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_answer.rb
1815
1819
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_answer.rbi
1816
1820
  - lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_answer_union.rb