From 563f447bee91b2b7cef9fd2c80c0babb62ae1ba6 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Mon, 23 Dec 2024 14:05:55 +0530 Subject: [PATCH 1/2] BENPNP-3020: ben admin : add companyEmploymentType in Job model --- .../capabilities/report_employees_hr_data/data_models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flux_sdk/benefits_administration/capabilities/report_employees_hr_data/data_models.py b/flux_sdk/benefits_administration/capabilities/report_employees_hr_data/data_models.py index 16171d9..cd3c183 100644 --- a/flux_sdk/benefits_administration/capabilities/report_employees_hr_data/data_models.py +++ b/flux_sdk/benefits_administration/capabilities/report_employees_hr_data/data_models.py @@ -78,6 +78,8 @@ class JobDetails: department: Optional[Department] """ The employees location """ location: Optional[WorkLocation] + """ The Company Configured Employment Type""" + companyEmploymentType: Optional[str] class Employment: From 1c03022f95bb276c9fc505b1c3ddcf5d4b5d2924 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Mon, 23 Dec 2024 14:36:05 +0530 Subject: [PATCH 2/2] BENPNP-3020: version bump to 0.44 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ec92d8f..4f0d466 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rippling-flux-sdk" -version = "0.43" +version = "0.44" description = "Defines the interfaces and data-models used by Rippling Flux Apps." authors = ["Rippling Apps "] readme = "README.md"