UNPKG

@fusebit-int/sendgrid-connector

Version:
26 lines 913 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Service = void 0; const oauth_connector_1 = require("@fusebit-int/oauth-connector"); class Service extends oauth_connector_1.OAuthConnector.Service { getEventsFromPayload(ctx) { ctx.throw(500, 'Event location configuration missing. Required for webhook processing.'); } getAuthIdFromEvent(ctx, event) { return ''; } async validateWebhookEvent(ctx) { ctx.throw(500, 'Webhook Validation configuration missing. Required for webhook processing.'); } async initializationChallenge(ctx) { ctx.throw(500, 'Webhook Challenge configuration missing. Required for webhook processing.'); } async getTokenAuthId(ctx, token) { return ''; } getWebhookEventType(event) { return ''; } } exports.Service = Service; //# sourceMappingURL=Service.js.map