diff --git a/README.md b/README.md index 264d143d..42310b3e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ We invite developers to join us in our mission to bring AI and data integration | Name | Type | Status | Release date | Last update | |-------------------------------------------------------------------------------------------------------------------------------------------|----------------------|--------------------|----------------|-----------------| -| [**Breezy HR**](./src/hrflow_connectors/connectors/breezyhr/README.md) | ATS | :book: Open source | *19/01/2022* | *24/10/2024* | +| [**Breezy HR**](./src/hrflow_connectors/connectors/breezyhr/README.md) | ATS | :book: Open source | *19/01/2022* | *31/10/2024* | | [**Bullhorn**](./src/hrflow_connectors/connectors/bullhorn/README.md) | ATS | :book: Open source | *26/01/2022* | *23/10/2024* | | [**Ceridian**](./src/hrflow_connectors/connectors/ceridian/README.md) | HCM | :book: Open source | *19/01/2022* | *05/09/2024* | | [**Digitalrecruiters**](./src/hrflow_connectors/connectors/digitalrecruiters/README.md) | ATS | :book: Open source | *17/08/2023* | *24/10/2024* | diff --git a/manifest.json b/manifest.json index 71ca11ef..3ac521a2 100644 --- a/manifest.json +++ b/manifest.json @@ -2824,7 +2824,7 @@ "phone_number": "?.info?.phone", "summary": "?.info?.summary", "work_history": "?.experiences | $map({company_name: ?.company >> 'Undefined', title: ?.title, summary: ?.description, start_year: .date_start | $slice(0, 3) | $int, start_month: .date_start | $slice(3, 5) | $int, end_year: .date_end | $slice(0, 3) | $int, end_month: .date_end | $slice(3, 5) | $int})", - "education": "?.educations | $map({school_name: ?.school != null || ?.school != '' ?? ?.school : 'Undefined', field_of_study: ?.title, start_year: .date_start | $slice(0, 3) | $int, end_year: .date_end | $slice(0, 3) | $int})", + "education": "?.educations | $map({school_name: ?.school >> 'Undefined', field_of_study: ?.title, start_year: .date_start | $slice(0, 3) | $int, end_year: .date_end | $slice(0, 3) | $int})", "social_profiles": ".info?.urls >> [] | $map({.type: .url | $sub('(^https?://)(.*)', 'https://$2')})", "tags": "?.skills >> [] | $map(?.name)" }, diff --git a/src/hrflow_connectors/connectors/breezyhr/mappings/format/push_profile_list.json b/src/hrflow_connectors/connectors/breezyhr/mappings/format/push_profile_list.json index af32e3af..c4119a3a 100644 --- a/src/hrflow_connectors/connectors/breezyhr/mappings/format/push_profile_list.json +++ b/src/hrflow_connectors/connectors/breezyhr/mappings/format/push_profile_list.json @@ -5,7 +5,7 @@ "phone_number": "?.info?.phone", "summary": "?.info?.summary", "work_history": "?.experiences | $map({company_name: ?.company >> 'Undefined', title: ?.title, summary: ?.description, start_year: .date_start | $slice(0, 3) | $int, start_month: .date_start | $slice(3, 5) | $int, end_year: .date_end | $slice(0, 3) | $int, end_month: .date_end | $slice(3, 5) | $int})", - "education": "?.educations | $map({school_name: ?.school != null || ?.school != '' ?? ?.school : 'Undefined', field_of_study: ?.title, start_year: .date_start | $slice(0, 3) | $int, end_year: .date_end | $slice(0, 3) | $int})", + "education": "?.educations | $map({school_name: ?.school >> 'Undefined', field_of_study: ?.title, start_year: .date_start | $slice(0, 3) | $int, end_year: .date_end | $slice(0, 3) | $int})", "social_profiles": ".info?.urls >> [] | $map({.type: .url | $sub('(^https?://)(.*)', 'https://$2')})", "tags": "?.skills >> [] | $map(?.name)" }