Skip to content

Commit

Permalink
(#437) Update values for pricing calculator
Browse files Browse the repository at this point in the history
This updates values for the pricing calculator which is located on
chocolatey.org. These values reflect 2025 changes.
  • Loading branch information
st3phhays committed Jan 9, 2025
1 parent 94c3f12 commit 219df07
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions js/src/ts/util/pricing-calculator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface C4bAddOnPrice {

export const c4bAddOnPrice: C4bAddOnPrice[] = [
{
packaging: 500,
packaging: 575,
standardSupport: 1000
}
];
Expand Down Expand Up @@ -128,45 +128,45 @@ export interface C4bSubscription {

export const c4bStandardSubscription: C4bSubscription[] = [
{
pricePerNode: 650,
pricePerNode: 700,
minNodes: 1,
maxNodes: 35
},
{
pricePerNode: 17,
pricePerNode: 17.50,
minNodes: 40,
maxNodes: 499
},
{
pricePerNode: 16.60,
pricePerNode: 17.10,
minNodes: 500,
maxNodes: 1999
},
{
pricePerNode: 16,
pricePerNode: 16.50,
minNodes: 2000,
maxNodes: 9999
},
{
pricePerNode: 15.50,
pricePerNode: 16,
minNodes: 10000,
maxNodes: 50000
}
];

export const c4bPremiumSubscription: C4bSubscription[] = [
{
pricePerNode: 27.38,
pricePerNode: 28.22,
minNodes: 1500,
maxNodes: 1999
},
{
pricePerNode: 26.40,
pricePerNode: 27.22,
minNodes: 2000,
maxNodes: 9999
},
{
pricePerNode: 25.57,
pricePerNode: 26.40,
minNodes: 10000,
maxNodes: 50000
}
Expand Down

0 comments on commit 219df07

Please sign in to comment.