From e563193477acfe6efda7cc9b74d73a43a5f2aeb6 Mon Sep 17 00:00:00 2001 From: Nipuna Ranasinghe Date: Wed, 14 Feb 2024 11:57:22 +0530 Subject: [PATCH 1/2] Fix system ID field names in employee create and update request bodies --- peoplehr/types.bal | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/peoplehr/types.bal b/peoplehr/types.bal index abe1792..af5e012 100644 --- a/peoplehr/types.bal +++ b/peoplehr/types.bal @@ -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 @@ -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?; @@ -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 @@ -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?; From 24373e9607a0891fd2e4996b319703e0355f4a45 Mon Sep 17 00:00:00 2001 From: Nipuna Ranasinghe Date: Wed, 14 Feb 2024 12:02:54 +0530 Subject: [PATCH 2/2] Update connector version --- peoplehr/Ballerina.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peoplehr/Ballerina.toml b/peoplehr/Ballerina.toml index 05b268e..88c1189 100644 --- a/peoplehr/Ballerina.toml +++ b/peoplehr/Ballerina.toml @@ -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"