Skip to content

Commit

Permalink
fix: Add Bilt and Altitude Reserve cards back so users can still …
Browse files Browse the repository at this point in the history
…enter them under "My Cards"
  • Loading branch information
andenacitelli committed Jan 12, 2025
1 parent d93edc5 commit 389a485
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 5 deletions.
2 changes: 1 addition & 1 deletion exports/data.json

Large diffs are not rendered by default.

34 changes: 30 additions & 4 deletions exports/data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2243,7 +2243,7 @@
spend: 6000
days: 90
credits: []
referralUrl: https://www.referyourchasecard.com/21s/B4FA0PBHTK
referralUrl: https://www.referyourchasecard.com/21s/9BZH8BJC1Z
historicalOffers:
- amount:
- amount: 90000
Expand All @@ -2268,7 +2268,7 @@
spend: 8000
days: 90
credits: []
referralUrl: https://www.referyourchasecard.com/21s/B4FA0PBHTK
referralUrl: https://www.referyourchasecard.com/21s/9BZH8BJC1Z
historicalOffers:
- amount:
- amount: 120000
Expand All @@ -2292,7 +2292,7 @@
spend: 6000
days: 90
credits: []
referralUrl: https://www.referyourchasecard.com/21s/B4FA0PBHTK
referralUrl: https://www.referyourchasecard.com/21s/9BZH8BJC1Z
historicalOffers:
- amount:
- amount: 90000
Expand All @@ -2319,7 +2319,7 @@
spend: 10000
days: 90
credits: []
referralUrl: https://www.referyourchasecard.com/21s/B4FA0PBHTK
referralUrl: https://www.referyourchasecard.com/21s/9BZH8BJC1Z
details: "NOTE: Points are nontransferable. Only cashback redemption."
historicalOffers:
- amount:
Expand Down Expand Up @@ -3813,6 +3813,19 @@
spend: 1000
days: 90
credits: []
- name: Altitude Reserve
issuer: US_BANK
network: VISA
currency: US_BANK
isBusiness: false
annualFee: 0
isAnnualFeeWaived: true
universalCashbackPercent: 2
url: https://www.nerdwallet.com/article/credit-cards/u-s-bank-altitude-reserve-closed-to-new-applications
imageUrl: /images/usbank/altitude-reserve.png
credits: []
offers: []
historicalOffers: []
- name: Altitude Go
issuer: US_BANK
network: VISA
Expand Down Expand Up @@ -4219,3 +4232,16 @@
spend: 3000
days: 90
credits: []
- name: Bilt
issuer: WELLS_FARGO
network: MASTERCARD
currency: WELLS_FARGO
isBusiness: false
annualFee: 0
isAnnualFeeWaived: false
universalCashbackPercent: 1
url: https://www.biltrewards.com/card
imageUrl: /images/wellsfargo/bilt.png
credits: []
offers: []
historicalOffers: []
17 changes: 17 additions & 0 deletions src/data/cards/usbank.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,23 @@ export const US_BANK_CARDS: z.input<typeof schemas.CreditCard>[] = [
},
],
},
{
name: "Altitude Reserve",
issuer: schemas.IssuersEnum.enum.US_BANK,
network: schemas.NetworksEnum.enum.VISA,
currency: schemas.CurrenciesEnum.enum.US_BANK,
isBusiness: false,
annualFee: 0,
isAnnualFeeWaived: true,
universalCashbackPercent: 2,
url: "https://www.nerdwallet.com/article/credit-cards/u-s-bank-altitude-reserve-closed-to-new-applications",
imageUrl: "/images/usbank/altitude-reserve.png",
credits: [],
offers: [
// Card is being phased out; needs to stay here so people can still enter it under "My Cards"
],
historicalOffers: [],
},
{
name: "Altitude Go",
issuer: schemas.IssuersEnum.enum.US_BANK,
Expand Down
17 changes: 17 additions & 0 deletions src/data/cards/wellsfargo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,21 @@ export const WELLS_FARGO_CARDS: z.input<typeof schemas.CreditCard>[] = [
},
],
},
{
name: "Bilt",
issuer: schemas.IssuersEnum.enum.WELLS_FARGO,
network: schemas.NetworksEnum.enum.MASTERCARD,
currency: schemas.CurrenciesEnum.enum.WELLS_FARGO,
isBusiness: false,
annualFee: 0,
isAnnualFeeWaived: false,
universalCashbackPercent: 1,
url: "https://www.biltrewards.com/card",
imageUrl: "/images/wellsfargo/bilt.png",
credits: [],
offers: [
// No current offer, but need to leave so it doesn't users that previously entered it
],
historicalOffers: [],
},
];

0 comments on commit 389a485

Please sign in to comment.