Skip to content

Commit

Permalink
fix: error in BreezyHr's push_profile_list jsonmap
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnedhir committed Oct 31, 2024
1 parent 4bcfb4c commit c54c9f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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* |
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
}

0 comments on commit c54c9f4

Please sign in to comment.