9fca7ce8f3
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.
28 lines
679 B
JavaScript
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);
|
|
}
|
|
};
|