kombo 1.2.6 → 1.2.7
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 +4 -4
- data/lib/kombo/models/shared/gethrisabsencespositiveresponse_type.rb +6 -2
- data/lib/kombo/models/shared/gethrisabsencespositiveresponse_type.rbi +2 -0
- data/lib/kombo/models/shared/gethrisabsencetypespositiveresponse_result.rb +6 -2
- data/lib/kombo/models/shared/gethrisabsencetypespositiveresponse_result.rbi +2 -0
- data/lib/kombo/models/shared/gethristimeoffbalancespositiveresponse_type.rb +6 -2
- data/lib/kombo/models/shared/gethristimeoffbalancespositiveresponse_type.rbi +2 -0
- data/lib/kombo/sdkconfiguration.rb +2 -2
- 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: 5cc3c59026b0df49c7d2b81dd30c9c191cc0c900324e735a7f88c953ae2cc347
|
|
4
|
+
data.tar.gz: 4fcea67cf79550cc5aaaea50fcc84deeb9d645d436e0dd8f65f0138ef0455aa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc234ce44c307a039445780cc37a4dd87b31eaf80a77d17baf6e418f6a758528642a76dfc25a3bbad9bfc849a41e2109c58932b9766c6441b89224444d9c529c
|
|
7
|
+
data.tar.gz: 18ca8925da6b24f9151f630309e6ba2c62f98e62b7302bd0b1b5d3b056cfd34567827f8da1e3fb6d9dca86b049b8d52bc92e5a18ceb239b2db1658695ca21e73
|
|
@@ -27,12 +27,14 @@ module Kombo
|
|
|
27
27
|
field :half_days_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('half_days_supported'), required: true } }
|
|
28
28
|
# `true` if the system supports exact times (absences with a `start_time` and an `end_time`) for this absence, `false` if not.
|
|
29
29
|
field :exact_times_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('exact_times_supported'), required: true } }
|
|
30
|
+
# A key-value store of fields not covered by the schema. [Read more](/custom-fields)
|
|
31
|
+
field :custom_fields, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, ::Object)), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('custom_fields'), required: true } }
|
|
30
32
|
# The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
|
|
31
33
|
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
|
|
32
34
|
field :remote_deleted_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_deleted_at'), required: true, 'decoder': ::Kombo::Utils.datetime_from_iso_format(false) } }
|
|
33
35
|
|
|
34
|
-
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisAbsencesPositiveResponseTypeUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
35
|
-
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, remote_deleted_at: nil)
|
|
36
|
+
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisAbsencesPositiveResponseTypeUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), custom_fields: T.nilable(T::Hash[Symbol, ::Object]), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
37
|
+
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, custom_fields: nil, remote_deleted_at: nil)
|
|
36
38
|
@id = id
|
|
37
39
|
@remote_id = remote_id
|
|
38
40
|
@changed_at = changed_at
|
|
@@ -40,6 +42,7 @@ module Kombo
|
|
|
40
42
|
@unit = unit
|
|
41
43
|
@half_days_supported = half_days_supported
|
|
42
44
|
@exact_times_supported = exact_times_supported
|
|
45
|
+
@custom_fields = custom_fields
|
|
43
46
|
@remote_deleted_at = remote_deleted_at
|
|
44
47
|
end
|
|
45
48
|
|
|
@@ -53,6 +56,7 @@ module Kombo
|
|
|
53
56
|
return false unless @unit == other.unit
|
|
54
57
|
return false unless @half_days_supported == other.half_days_supported
|
|
55
58
|
return false unless @exact_times_supported == other.exact_times_supported
|
|
59
|
+
return false unless @custom_fields == other.custom_fields
|
|
56
60
|
return false unless @remote_deleted_at == other.remote_deleted_at
|
|
57
61
|
true
|
|
58
62
|
end
|
|
@@ -22,6 +22,8 @@ class Kombo::Models::Shared::GetHrisAbsencesPositiveResponseType
|
|
|
22
22
|
def half_days_supported=(str_); end
|
|
23
23
|
def exact_times_supported(); end
|
|
24
24
|
def exact_times_supported=(str_); end
|
|
25
|
+
def custom_fields(); end
|
|
26
|
+
def custom_fields=(str_); end
|
|
25
27
|
def remote_deleted_at(); end
|
|
26
28
|
def remote_deleted_at=(str_); end
|
|
27
29
|
end
|
|
@@ -27,12 +27,14 @@ module Kombo
|
|
|
27
27
|
field :half_days_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('half_days_supported'), required: true } }
|
|
28
28
|
# `true` if the system supports exact times (absences with a `start_time` and an `end_time`) for this absence, `false` if not.
|
|
29
29
|
field :exact_times_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('exact_times_supported'), required: true } }
|
|
30
|
+
# A key-value store of fields not covered by the schema. [Read more](/custom-fields)
|
|
31
|
+
field :custom_fields, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, ::Object)), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('custom_fields'), required: true } }
|
|
30
32
|
# The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
|
|
31
33
|
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
|
|
32
34
|
field :remote_deleted_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_deleted_at'), required: true, 'decoder': ::Kombo::Utils.datetime_from_iso_format(false) } }
|
|
33
35
|
|
|
34
|
-
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisAbsenceTypesPositiveResponseUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
35
|
-
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, remote_deleted_at: nil)
|
|
36
|
+
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisAbsenceTypesPositiveResponseUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), custom_fields: T.nilable(T::Hash[Symbol, ::Object]), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
37
|
+
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, custom_fields: nil, remote_deleted_at: nil)
|
|
36
38
|
@id = id
|
|
37
39
|
@remote_id = remote_id
|
|
38
40
|
@changed_at = changed_at
|
|
@@ -40,6 +42,7 @@ module Kombo
|
|
|
40
42
|
@unit = unit
|
|
41
43
|
@half_days_supported = half_days_supported
|
|
42
44
|
@exact_times_supported = exact_times_supported
|
|
45
|
+
@custom_fields = custom_fields
|
|
43
46
|
@remote_deleted_at = remote_deleted_at
|
|
44
47
|
end
|
|
45
48
|
|
|
@@ -53,6 +56,7 @@ module Kombo
|
|
|
53
56
|
return false unless @unit == other.unit
|
|
54
57
|
return false unless @half_days_supported == other.half_days_supported
|
|
55
58
|
return false unless @exact_times_supported == other.exact_times_supported
|
|
59
|
+
return false unless @custom_fields == other.custom_fields
|
|
56
60
|
return false unless @remote_deleted_at == other.remote_deleted_at
|
|
57
61
|
true
|
|
58
62
|
end
|
|
@@ -22,6 +22,8 @@ class Kombo::Models::Shared::GetHrisAbsenceTypesPositiveResponseResult
|
|
|
22
22
|
def half_days_supported=(str_); end
|
|
23
23
|
def exact_times_supported(); end
|
|
24
24
|
def exact_times_supported=(str_); end
|
|
25
|
+
def custom_fields(); end
|
|
26
|
+
def custom_fields=(str_); end
|
|
25
27
|
def remote_deleted_at(); end
|
|
26
28
|
def remote_deleted_at=(str_); end
|
|
27
29
|
end
|
|
@@ -27,12 +27,14 @@ module Kombo
|
|
|
27
27
|
field :half_days_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('half_days_supported'), required: true } }
|
|
28
28
|
# `true` if the system supports exact times (absences with a `start_time` and an `end_time`) for this absence, `false` if not.
|
|
29
29
|
field :exact_times_supported, Crystalline::Nilable.new(Crystalline::Boolean.new), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('exact_times_supported'), required: true } }
|
|
30
|
+
# A key-value store of fields not covered by the schema. [Read more](/custom-fields)
|
|
31
|
+
field :custom_fields, Crystalline::Nilable.new(Crystalline::Hash.new(Symbol, ::Object)), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('custom_fields'), required: true } }
|
|
30
32
|
# The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
|
|
31
33
|
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
|
|
32
34
|
field :remote_deleted_at, Crystalline::Nilable.new(::DateTime), { 'format_json': { 'letter_case': ::Kombo::Utils.field_name('remote_deleted_at'), required: true, 'decoder': ::Kombo::Utils.datetime_from_iso_format(false) } }
|
|
33
35
|
|
|
34
|
-
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisTimeOffBalancesPositiveResponseUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
35
|
-
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, remote_deleted_at: nil)
|
|
36
|
+
sig { params(id: ::String, remote_id: ::String, changed_at: ::DateTime, name: T.nilable(::String), unit: T.nilable(Models::Shared::GetHrisTimeOffBalancesPositiveResponseUnit), half_days_supported: T.nilable(T::Boolean), exact_times_supported: T.nilable(T::Boolean), custom_fields: T.nilable(T::Hash[Symbol, ::Object]), remote_deleted_at: T.nilable(::DateTime)).void }
|
|
37
|
+
def initialize(id:, remote_id:, changed_at:, name: nil, unit: nil, half_days_supported: nil, exact_times_supported: nil, custom_fields: nil, remote_deleted_at: nil)
|
|
36
38
|
@id = id
|
|
37
39
|
@remote_id = remote_id
|
|
38
40
|
@changed_at = changed_at
|
|
@@ -40,6 +42,7 @@ module Kombo
|
|
|
40
42
|
@unit = unit
|
|
41
43
|
@half_days_supported = half_days_supported
|
|
42
44
|
@exact_times_supported = exact_times_supported
|
|
45
|
+
@custom_fields = custom_fields
|
|
43
46
|
@remote_deleted_at = remote_deleted_at
|
|
44
47
|
end
|
|
45
48
|
|
|
@@ -53,6 +56,7 @@ module Kombo
|
|
|
53
56
|
return false unless @unit == other.unit
|
|
54
57
|
return false unless @half_days_supported == other.half_days_supported
|
|
55
58
|
return false unless @exact_times_supported == other.exact_times_supported
|
|
59
|
+
return false unless @custom_fields == other.custom_fields
|
|
56
60
|
return false unless @remote_deleted_at == other.remote_deleted_at
|
|
57
61
|
true
|
|
58
62
|
end
|
|
@@ -22,6 +22,8 @@ class Kombo::Models::Shared::GetHrisTimeOffBalancesPositiveResponseType
|
|
|
22
22
|
def half_days_supported=(str_); end
|
|
23
23
|
def exact_times_supported(); end
|
|
24
24
|
def exact_times_supported=(str_); end
|
|
25
|
+
def custom_fields(); end
|
|
26
|
+
def custom_fields=(str_); end
|
|
25
27
|
def remote_deleted_at(); end
|
|
26
28
|
def remote_deleted_at=(str_); end
|
|
27
29
|
end
|
|
@@ -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.
|
|
100
|
+
@sdk_version = '1.2.7'
|
|
101
101
|
@gen_version = '2.928.0'
|
|
102
|
-
@user_agent = 'speakeasy-sdk/ruby 1.2.
|
|
102
|
+
@user_agent = 'speakeasy-sdk/ruby 1.2.7 2.928.0 1.0.0 kombo'
|
|
103
103
|
end
|
|
104
104
|
|
|
105
105
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
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.
|
|
4
|
+
version: 1.2.7
|
|
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-08-
|
|
11
|
+
date: 2026-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|