finch-api 0.1.0.pre.alpha.43 → 0.1.0.pre.alpha.44
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/finch_api/models/hris/{pay_statement_response_body.rb → pay_statement_data.rb} +5 -5
- data/lib/finch_api/models/hris/pay_statement_response.rb +4 -4
- data/lib/finch_api/version.rb +1 -1
- data/lib/finch_api.rb +1 -1
- data/rbi/finch_api/models/hris/{pay_statement_response_body.rbi → pay_statement_data.rbi} +7 -12
- data/rbi/finch_api/models/hris/pay_statement_response.rbi +2 -2
- data/sig/finch_api/models/hris/{pay_statement_response_body.rbs → pay_statement_data.rbs} +6 -6
- data/sig/finch_api/models/hris/pay_statement_response.rbs +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12794deec4b43f622c3c367e7f5c2122b74b79ef8b95cd977c8c2dd0c750e35f
|
|
4
|
+
data.tar.gz: 0a09ac11b13a0f0898ab04f8112a50029b451251bdb90162c0e4c3de681d281d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47acb9bed05c5983db93765eca4c5da6f381c3bca5f07fb10c696aaa45b3e7fe028208119063f30db56d2365d8bf0e8fbaeab3bed4a979b532377151c88ca3ab
|
|
7
|
+
data.tar.gz: 01b7a7babc340e497da88144345b326b3eda2c65b24226c858be1c9e4d565359a2f7b0f0ccea47971d52aeb5f5ea3da81dd796365e0e98859fee6d261030bd00
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.44 (2026-06-22)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.43...v0.1.0-alpha.44](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.43...v0.1.0-alpha.44)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([a4957ec](https://github.com/Finch-API/finch-api-ruby/commit/a4957ec3874518c574f8599381298e01f1ac7536))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-alpha.43 (2026-06-16)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.1.0-alpha.42...v0.1.0-alpha.43](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.42...v0.1.0-alpha.43)
|
data/README.md
CHANGED
|
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
26
26
|
<!-- x-release-please-start-version -->
|
|
27
27
|
|
|
28
28
|
```ruby
|
|
29
|
-
gem "finch-api", "~> 0.1.0.pre.alpha.
|
|
29
|
+
gem "finch-api", "~> 0.1.0.pre.alpha.44"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
<!-- x-release-please-end -->
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
module FinchAPI
|
|
4
4
|
module Models
|
|
5
5
|
module HRIS
|
|
6
|
-
class
|
|
6
|
+
class PayStatementData < FinchAPI::Internal::Type::BaseModel
|
|
7
7
|
# @!attribute paging
|
|
8
8
|
#
|
|
9
|
-
# @return [FinchAPI::Models::HRIS::
|
|
10
|
-
required :paging, -> { FinchAPI::HRIS::
|
|
9
|
+
# @return [FinchAPI::Models::HRIS::PayStatementData::Paging]
|
|
10
|
+
required :paging, -> { FinchAPI::HRIS::PayStatementData::Paging }
|
|
11
11
|
|
|
12
12
|
# @!attribute pay_statements
|
|
13
13
|
#
|
|
@@ -15,10 +15,10 @@ module FinchAPI
|
|
|
15
15
|
required :pay_statements, -> { FinchAPI::Internal::Type::ArrayOf[FinchAPI::HRIS::PayStatement] }
|
|
16
16
|
|
|
17
17
|
# @!method initialize(paging:, pay_statements:)
|
|
18
|
-
# @param paging [FinchAPI::Models::HRIS::
|
|
18
|
+
# @param paging [FinchAPI::Models::HRIS::PayStatementData::Paging]
|
|
19
19
|
# @param pay_statements [Array<FinchAPI::Models::HRIS::PayStatement>]
|
|
20
20
|
|
|
21
|
-
# @see FinchAPI::Models::HRIS::
|
|
21
|
+
# @see FinchAPI::Models::HRIS::PayStatementData#paging
|
|
22
22
|
class Paging < FinchAPI::Internal::Type::BaseModel
|
|
23
23
|
# @!attribute offset
|
|
24
24
|
# The current start index of the returned list of elements
|
|
@@ -7,7 +7,7 @@ module FinchAPI
|
|
|
7
7
|
class PayStatementResponse < FinchAPI::Internal::Type::BaseModel
|
|
8
8
|
# @!attribute body
|
|
9
9
|
#
|
|
10
|
-
# @return [FinchAPI::Models::HRIS::
|
|
10
|
+
# @return [FinchAPI::Models::HRIS::PayStatementData, FinchAPI::Models::HRIS::PayStatementResponse::Body::BatchError, FinchAPI::Models::HRIS::PayStatementDataSyncInProgress]
|
|
11
11
|
required :body, union: -> { FinchAPI::HRIS::PayStatementResponse::Body }
|
|
12
12
|
|
|
13
13
|
# @!attribute code
|
|
@@ -21,7 +21,7 @@ module FinchAPI
|
|
|
21
21
|
required :payment_id, String
|
|
22
22
|
|
|
23
23
|
# @!method initialize(body:, code:, payment_id:)
|
|
24
|
-
# @param body [FinchAPI::Models::HRIS::
|
|
24
|
+
# @param body [FinchAPI::Models::HRIS::PayStatementData, FinchAPI::Models::HRIS::PayStatementResponse::Body::BatchError, FinchAPI::Models::HRIS::PayStatementDataSyncInProgress]
|
|
25
25
|
# @param code [Integer]
|
|
26
26
|
# @param payment_id [String]
|
|
27
27
|
|
|
@@ -29,7 +29,7 @@ module FinchAPI
|
|
|
29
29
|
module Body
|
|
30
30
|
extend FinchAPI::Internal::Type::Union
|
|
31
31
|
|
|
32
|
-
variant -> { FinchAPI::HRIS::
|
|
32
|
+
variant -> { FinchAPI::HRIS::PayStatementData }
|
|
33
33
|
|
|
34
34
|
variant -> { FinchAPI::HRIS::PayStatementResponse::Body::BatchError }
|
|
35
35
|
|
|
@@ -64,7 +64,7 @@ module FinchAPI
|
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
# @!method self.variants
|
|
67
|
-
# @return [Array(FinchAPI::Models::HRIS::
|
|
67
|
+
# @return [Array(FinchAPI::Models::HRIS::PayStatementData, FinchAPI::Models::HRIS::PayStatementResponse::Body::BatchError, FinchAPI::Models::HRIS::PayStatementDataSyncInProgress)]
|
|
68
68
|
end
|
|
69
69
|
end
|
|
70
70
|
end
|
data/lib/finch_api/version.rb
CHANGED
data/lib/finch_api.rb
CHANGED
|
@@ -125,9 +125,9 @@ require_relative "finch_api/models/hris/individual_retrieve_many_params"
|
|
|
125
125
|
require_relative "finch_api/models/hris/payment"
|
|
126
126
|
require_relative "finch_api/models/hris/payment_list_params"
|
|
127
127
|
require_relative "finch_api/models/hris/pay_statement"
|
|
128
|
+
require_relative "finch_api/models/hris/pay_statement_data"
|
|
128
129
|
require_relative "finch_api/models/hris/pay_statement_data_sync_in_progress"
|
|
129
130
|
require_relative "finch_api/models/hris/pay_statement_response"
|
|
130
|
-
require_relative "finch_api/models/hris/pay_statement_response_body"
|
|
131
131
|
require_relative "finch_api/models/hris/pay_statement_retrieve_many_params"
|
|
132
132
|
require_relative "finch_api/models/hris/register_company_benefit_response"
|
|
133
133
|
require_relative "finch_api/models/hris/supported_benefit"
|
|
@@ -3,22 +3,17 @@
|
|
|
3
3
|
module FinchAPI
|
|
4
4
|
module Models
|
|
5
5
|
module HRIS
|
|
6
|
-
class
|
|
6
|
+
class PayStatementData < FinchAPI::Internal::Type::BaseModel
|
|
7
7
|
OrHash =
|
|
8
8
|
T.type_alias do
|
|
9
|
-
T.any(
|
|
10
|
-
FinchAPI::HRIS::PayStatementResponseBody,
|
|
11
|
-
FinchAPI::Internal::AnyHash
|
|
12
|
-
)
|
|
9
|
+
T.any(FinchAPI::HRIS::PayStatementData, FinchAPI::Internal::AnyHash)
|
|
13
10
|
end
|
|
14
11
|
|
|
15
|
-
sig { returns(FinchAPI::HRIS::
|
|
12
|
+
sig { returns(FinchAPI::HRIS::PayStatementData::Paging) }
|
|
16
13
|
attr_reader :paging
|
|
17
14
|
|
|
18
15
|
sig do
|
|
19
|
-
params(
|
|
20
|
-
paging: FinchAPI::HRIS::PayStatementResponseBody::Paging::OrHash
|
|
21
|
-
).void
|
|
16
|
+
params(paging: FinchAPI::HRIS::PayStatementData::Paging::OrHash).void
|
|
22
17
|
end
|
|
23
18
|
attr_writer :paging
|
|
24
19
|
|
|
@@ -27,7 +22,7 @@ module FinchAPI
|
|
|
27
22
|
|
|
28
23
|
sig do
|
|
29
24
|
params(
|
|
30
|
-
paging: FinchAPI::HRIS::
|
|
25
|
+
paging: FinchAPI::HRIS::PayStatementData::Paging::OrHash,
|
|
31
26
|
pay_statements: T::Array[FinchAPI::HRIS::PayStatement::OrHash]
|
|
32
27
|
).returns(T.attached_class)
|
|
33
28
|
end
|
|
@@ -37,7 +32,7 @@ module FinchAPI
|
|
|
37
32
|
sig do
|
|
38
33
|
override.returns(
|
|
39
34
|
{
|
|
40
|
-
paging: FinchAPI::HRIS::
|
|
35
|
+
paging: FinchAPI::HRIS::PayStatementData::Paging,
|
|
41
36
|
pay_statements: T::Array[FinchAPI::HRIS::PayStatement]
|
|
42
37
|
}
|
|
43
38
|
)
|
|
@@ -49,7 +44,7 @@ module FinchAPI
|
|
|
49
44
|
OrHash =
|
|
50
45
|
T.type_alias do
|
|
51
46
|
T.any(
|
|
52
|
-
FinchAPI::HRIS::
|
|
47
|
+
FinchAPI::HRIS::PayStatementData::Paging,
|
|
53
48
|
FinchAPI::Internal::AnyHash
|
|
54
49
|
)
|
|
55
50
|
end
|
|
@@ -25,7 +25,7 @@ module FinchAPI
|
|
|
25
25
|
params(
|
|
26
26
|
body:
|
|
27
27
|
T.any(
|
|
28
|
-
FinchAPI::HRIS::
|
|
28
|
+
FinchAPI::HRIS::PayStatementData::OrHash,
|
|
29
29
|
FinchAPI::HRIS::PayStatementResponse::Body::BatchError::OrHash,
|
|
30
30
|
FinchAPI::HRIS::PayStatementDataSyncInProgress::OrHash
|
|
31
31
|
),
|
|
@@ -54,7 +54,7 @@ module FinchAPI
|
|
|
54
54
|
Variants =
|
|
55
55
|
T.type_alias do
|
|
56
56
|
T.any(
|
|
57
|
-
FinchAPI::HRIS::
|
|
57
|
+
FinchAPI::HRIS::PayStatementData,
|
|
58
58
|
FinchAPI::HRIS::PayStatementResponse::Body::BatchError,
|
|
59
59
|
FinchAPI::HRIS::PayStatementDataSyncInProgress
|
|
60
60
|
)
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
module FinchAPI
|
|
2
2
|
module Models
|
|
3
3
|
module HRIS
|
|
4
|
-
type
|
|
4
|
+
type pay_statement_data =
|
|
5
5
|
{
|
|
6
|
-
paging: FinchAPI::HRIS::
|
|
6
|
+
paging: FinchAPI::HRIS::PayStatementData::Paging,
|
|
7
7
|
pay_statements: ::Array[FinchAPI::HRIS::PayStatement]
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
class
|
|
11
|
-
attr_accessor paging: FinchAPI::HRIS::
|
|
10
|
+
class PayStatementData < FinchAPI::Internal::Type::BaseModel
|
|
11
|
+
attr_accessor paging: FinchAPI::HRIS::PayStatementData::Paging
|
|
12
12
|
|
|
13
13
|
attr_accessor pay_statements: ::Array[FinchAPI::HRIS::PayStatement]
|
|
14
14
|
|
|
15
15
|
def initialize: (
|
|
16
|
-
paging: FinchAPI::HRIS::
|
|
16
|
+
paging: FinchAPI::HRIS::PayStatementData::Paging,
|
|
17
17
|
pay_statements: ::Array[FinchAPI::HRIS::PayStatement]
|
|
18
18
|
) -> void
|
|
19
19
|
|
|
20
20
|
def to_hash: -> {
|
|
21
|
-
paging: FinchAPI::HRIS::
|
|
21
|
+
paging: FinchAPI::HRIS::PayStatementData::Paging,
|
|
22
22
|
pay_statements: ::Array[FinchAPI::HRIS::PayStatement]
|
|
23
23
|
}
|
|
24
24
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: finch-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.pre.alpha.
|
|
4
|
+
version: 0.1.0.pre.alpha.44
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Finch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -139,9 +139,9 @@ files:
|
|
|
139
139
|
- lib/finch_api/models/hris/individual_response.rb
|
|
140
140
|
- lib/finch_api/models/hris/individual_retrieve_many_params.rb
|
|
141
141
|
- lib/finch_api/models/hris/pay_statement.rb
|
|
142
|
+
- lib/finch_api/models/hris/pay_statement_data.rb
|
|
142
143
|
- lib/finch_api/models/hris/pay_statement_data_sync_in_progress.rb
|
|
143
144
|
- lib/finch_api/models/hris/pay_statement_response.rb
|
|
144
|
-
- lib/finch_api/models/hris/pay_statement_response_body.rb
|
|
145
145
|
- lib/finch_api/models/hris/pay_statement_retrieve_many_params.rb
|
|
146
146
|
- lib/finch_api/models/hris/payment.rb
|
|
147
147
|
- lib/finch_api/models/hris/payment_list_params.rb
|
|
@@ -328,9 +328,9 @@ files:
|
|
|
328
328
|
- rbi/finch_api/models/hris/individual_response.rbi
|
|
329
329
|
- rbi/finch_api/models/hris/individual_retrieve_many_params.rbi
|
|
330
330
|
- rbi/finch_api/models/hris/pay_statement.rbi
|
|
331
|
+
- rbi/finch_api/models/hris/pay_statement_data.rbi
|
|
331
332
|
- rbi/finch_api/models/hris/pay_statement_data_sync_in_progress.rbi
|
|
332
333
|
- rbi/finch_api/models/hris/pay_statement_response.rbi
|
|
333
|
-
- rbi/finch_api/models/hris/pay_statement_response_body.rbi
|
|
334
334
|
- rbi/finch_api/models/hris/pay_statement_retrieve_many_params.rbi
|
|
335
335
|
- rbi/finch_api/models/hris/payment.rbi
|
|
336
336
|
- rbi/finch_api/models/hris/payment_list_params.rbi
|
|
@@ -516,9 +516,9 @@ files:
|
|
|
516
516
|
- sig/finch_api/models/hris/individual_response.rbs
|
|
517
517
|
- sig/finch_api/models/hris/individual_retrieve_many_params.rbs
|
|
518
518
|
- sig/finch_api/models/hris/pay_statement.rbs
|
|
519
|
+
- sig/finch_api/models/hris/pay_statement_data.rbs
|
|
519
520
|
- sig/finch_api/models/hris/pay_statement_data_sync_in_progress.rbs
|
|
520
521
|
- sig/finch_api/models/hris/pay_statement_response.rbs
|
|
521
|
-
- sig/finch_api/models/hris/pay_statement_response_body.rbs
|
|
522
522
|
- sig/finch_api/models/hris/pay_statement_retrieve_many_params.rbs
|
|
523
523
|
- sig/finch_api/models/hris/payment.rbs
|
|
524
524
|
- sig/finch_api/models/hris/payment_list_params.rbs
|