Skip to content

Commit

Permalink
Merge pull request #30 from NipunaRanasinghe/2201.4.x
Browse files Browse the repository at this point in the history
Fix system ID field names in employee create and update request bodies
  • Loading branch information
NipunaRanasinghe authored Feb 14, 2024
2 parents a65cda0 + 24373e9 commit 00f16b9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion peoplehr/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
distribution = "2201.4.1"
org = "ballerinax"
name = "peoplehr"
version = "2.2.0"
version = "2.2.1"
authors = ["Ballerina"]
icon = "icon.png"
repository = "https://github.com/ballerina-platform/module-ballerinax-peoplehr"
Expand Down
24 changes: 12 additions & 12 deletions peoplehr/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,9 @@ public type FieldHistoryForJobRole record {|
# + ATS - ATS value
# + Performance - The performance
# + Benefits - The benefits
# + System1 - The system1
# + System2 - The system2
# + System3 - The system3
# + System1ID - The system1 ID
# + System2ID - The system2 ID
# + System3ID - The system3 ID
# + APIColumn1 - API column 1
# + APIColumn2 - API column 2
# + APIColumn3 - API column 3
Expand Down Expand Up @@ -553,9 +553,9 @@ public type NewEmployeeRequest record {|
string ATS?;
string Performance?;
string Benefits?;
string System1?;
string System2?;
string System3?;
string System1ID?;
string System2ID?;
string System3ID?;
string APIColumn1?;
string APIColumn2?;
string APIColumn3?;
Expand Down Expand Up @@ -599,9 +599,9 @@ public type NewEmployeeRequest record {|
# + ATS - ATS value
# + Performance - The performance
# + Benefits - The benefits
# + System1 - The system1
# + System2 - The system2
# + System3 - The system3
# + System1ID - The system1 ID
# + System2ID - The system2 ID
# + System3ID - The system3 ID
# + APIColumn1 - API column 1
# + APIColumn2 - API column 2
# + APIColumn3 - API column 3
Expand Down Expand Up @@ -642,9 +642,9 @@ public type EmployeeUpdateRequest record {|
string ATS?;
string Performance?;
string Benefits?;
string System1?;
string System2?;
string System3?;
string System1ID?;
string System2ID?;
string System3ID?;
string APIColumn1?;
string APIColumn2?;
string APIColumn3?;
Expand Down

0 comments on commit 00f16b9

Please sign in to comment.