@nestjs-mod/webhook
Version:
Webhook module with an error filter, guard, controller, database migrations and rest-sdk for work with module from other nodejs appliaction
21 lines • 787 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebhookEvent = void 0;
const tslib_1 = require("tslib");
const swagger_1 = require("@nestjs/swagger");
class WebhookEvent {
}
exports.WebhookEvent = WebhookEvent;
tslib_1.__decorate([
(0, swagger_1.ApiProperty)({ type: String }),
tslib_1.__metadata("design:type", String)
], WebhookEvent.prototype, "eventName", void 0);
tslib_1.__decorate([
(0, swagger_1.ApiProperty)({ type: String }),
tslib_1.__metadata("design:type", String)
], WebhookEvent.prototype, "description", void 0);
tslib_1.__decorate([
(0, swagger_1.ApiProperty)({ type: Object }),
tslib_1.__metadata("design:type", Object)
], WebhookEvent.prototype, "example", void 0);
//# sourceMappingURL=webhook-event.js.map