Skip to content

Commit

Permalink
Update age params for multiple brokers (#2800)
Browse files Browse the repository at this point in the history
Task/Issue URL:
https://app.asana.com/0/608920331025329/1207360142555452/f
Tech Design URL:
CC:

**Description**:
Updates several brokers to remove an unnecessarily restrictive age
filter, or apply the age filter properly (with `ageRange`). See [parent
task](https://app.asana.com/0/608920331025329/1207348245954369) for
further details.

**Steps to test this PR**:
1.

<!--
Tagging instructions
If this PR isn't ready to be merged for whatever reason it should be
marked with the `DO NOT MERGE` label (particularly if it's a draft)
If it's pending Product Review/PFR, please add the `Pending Product
Review` label.

If at any point it isn't actively being worked on/ready for
review/otherwise moving forward (besides the above PR/PFR exception)
strongly consider closing it (or not opening it in the first place). If
you decide not to close it, make sure it's labelled to make it clear the
PRs state and comment with more information.
-->

---
###### Internal references:
[Pull Request Review
Checklist](https://app.asana.com/0/1202500774821704/1203764234894239/f)
[Software Engineering
Expectations](https://app.asana.com/0/59792373528535/199064865822552)
[Technical Design
Template](https://app.asana.com/0/59792373528535/184709971311943)
[Pull Request
Documentation](https://app.asana.com/0/1202500774821704/1204012835277482/f)
  • Loading branch information
brianhall authored May 21, 2024
1 parent d128cb4 commit d4fe524
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "AdvancedBackgroundChecks",
"url": "advancedbackgroundchecks.com",
"version": "0.1.7",
"version": "0.1.8",
"parent": "peoplefinders.com",
"addedDatetime": 1678060800000,
"steps": [
Expand All @@ -12,7 +12,7 @@
{
"actionType": "navigate",
"id": "070b6417-8ccd-4111-b5ae-7ae470b0399a",
"url": "https://www.advancedbackgroundchecks.com/names/${firstName}-${lastName}_${city}-${state}_age_${age}"
"url": "https://www.advancedbackgroundchecks.com/names/${firstName}-${lastName}_${city}-${state}"
},
{
"actionType": "extract",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Councilon",
"url": "councilon.com",
"version": "0.1.5",
"version": "0.1.6",
"parent": "verecor.com",
"addedDatetime": 1702965600000,
"steps": [
Expand All @@ -12,7 +12,7 @@
{
"actionType": "navigate",
"id": "ac6caadd-7930-4776-8473-9403b568611e",
"url": "https://councilon.com/profile/search?fname=${firstName}&lname=${lastName}&state=${state}&city=${city}&fage=${age}",
"url": "https://councilon.com/profile/search?fname=${firstName}&lname=${lastName}&state=${state}&city=${city}&fage=${age|ageRange}",
"ageRange": [
"18-30",
"31-40",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Kwold",
"url": "kwold.com",
"version": "0.1.5",
"version": "0.1.6",
"parent": "verecor.com",
"addedDatetime": 1702965600000,
"steps": [
Expand All @@ -12,7 +12,7 @@
{
"actionType": "navigate",
"id": "878e00ab-dbad-4ca9-a303-645702a36ee2",
"url": "https://kwold.com/profile/search?fname=${firstName}&lname=${lastName}&state=${state}&city=${city}&fage=${age}",
"url": "https://kwold.com/profile/search?fname=${firstName}&lname=${lastName}&state=${state}&city=${city}&fage=${age|ageRange}",
"ageRange": [
"18-30",
"31-40",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PeopleFinders",
"url": "peoplefinders.com",
"version": "0.1.5",
"version": "0.1.6",
"addedDatetime": 1677132000000,
"steps": [
{
Expand All @@ -11,7 +11,7 @@
{
"actionType": "navigate",
"id": "12c69911-415b-4904-8162-d7993d44e348",
"url": "https://www.peoplefinders.com/people/${firstName}-${lastName}/${state}/${city}?landing=all&age=${age}"
"url": "https://www.peoplefinders.com/people/${firstName}-${lastName}/${state}/${city}?landing=all"
},
{
"actionType": "extract",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "USA People Search",
"url": "usa-people-search.com",
"version": "0.1.5",
"version": "0.1.6",
"parent": "peoplefinders.com",
"addedDatetime": 1678082400000,
"steps": [
Expand All @@ -12,7 +12,7 @@
{
"actionType": "navigate",
"id": "3cb9a2ce-6443-4934-9df3-ec63a181d9bb",
"url": "https://usa-people-search.com/name/${firstName|downcase}-${lastName|downcase}/${city|downcase}-${state|stateFull|downcase}?age=${age}"
"url": "https://usa-people-search.com/name/${firstName|downcase}-${lastName|downcase}/${city|downcase}-${state|stateFull|downcase}"
},
{
"actionType": "extract",
Expand Down

0 comments on commit d4fe524

Please sign in to comment.