Ghost/ghost/member-events/lib/MemberPaidConversionEvent.js
Fabien O'Carroll 9fca7ce8f3 Added missing events for analytics
refs https://github.com/TryGhost/Team/issues/1054

In order to listen to events we must define them! This adds the missing
events that we need to listen to for member analytics.
2021-09-21 18:39:17 +02:00

28 lines
679 B
JavaScript

/**
* @typedef {object} MemberPaidConversionEventData
* @prop {string} memberId
* @prop {string} memberStatus
* @prop {string} subscriptionId
* @prop {string} entryId
* @prop {string} sourceUrl
*/
module.exports = class MemberPaidConversionEvent {
/**
* @param {MemberPaidConversionEventData} data
* @param {Date} timestamp
*/
constructor(data, timestamp) {
this.data = data;
this.timestamp = timestamp;
}
/**
* @param {MemberPaidConversionEventData} data
* @param {Date} [timestamp]
*/
static create(data, timestamp) {
return new MemberPaidConversionEvent(data, timestamp || new Date);
}
};