Merge pull request #10474 from Budibase/pricing/hubspot-updates

Plan changed event updates
This commit is contained in:
Rory Powell 2023-05-03 14:08:00 +01:00 committed by GitHub
commit ef6e3f26a7
3 changed files with 14 additions and 14 deletions

View File

@ -15,17 +15,18 @@ import {
async function planChanged(
account: Account,
from: PlanType,
to: PlanType,
quantity: number | undefined,
duration: PriceDuration | undefined
opts: {
from: PlanType
to: PlanType
fromQuantity: number | undefined
toQuantity: number | undefined
fromDuration: PriceDuration | undefined
toDuration: PriceDuration | undefined
}
) {
const properties: LicensePlanChangedEvent = {
accountId: account.accountId,
to,
from,
quantity,
duration,
...opts,
}
await publishEvent(Event.LICENSE_PLAN_CHANGED, properties)
}

View File

@ -29,7 +29,7 @@ export const plan = (type: PlanType = PlanType.FREE): PurchasedPlan => {
type,
usesInvoicing: false,
model: PlanModel.PER_USER,
price: price(),
price: type !== PlanType.FREE ? price() : undefined,
}
}

View File

@ -5,11 +5,10 @@ export interface LicensePlanChangedEvent {
from: PlanType
to: PlanType
// may not be on historical events
// free plans won't have a duration
duration: PriceDuration | undefined
// may not be on historical events
// free plans won't have a quantity
quantity: number | undefined
fromDuration: PriceDuration | undefined
toDuration: PriceDuration | undefined
fromQuantity: number | undefined
toQuantity: number | undefined
}
export interface LicenseActivatedEvent {