import Chart, { KVs } from '../core.js'; import { name, schema } from './entities/ap-request.js'; /** * Chart about ActivityPub requests */ // eslint-disable-next-line import/no-default-export export default class ApRequestChart extends Chart { constructor() { super(name, schema); } protected async tickMajor(): Promise>> { return {}; } protected async tickMinor(): Promise>> { return {}; } public async deliverSucc(): Promise { await this.commit({ 'deliverSucceeded': 1, }); } public async deliverFail(): Promise { await this.commit({ 'deliverFailed': 1, }); } public async inbox(): Promise { await this.commit({ 'inboxReceived': 1, }); } }