@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
23 lines • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebhookStatus = exports.WebhookRole = void 0;
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// @ts-nocheck
/**
* This file exports all enum related types from the schema.
*
* 🟢 You can import this file directly.
*/
exports.WebhookRole = {
Admin: 'Admin',
User: 'User'
};
exports.WebhookStatus = {
Pending: 'Pending',
Process: 'Process',
Success: 'Success',
Error: 'Error',
Timeout: 'Timeout'
};
//# sourceMappingURL=enums.js.map