prisma-encrypter
Version:
Lightweight encryption solution for Prisma
20 lines • 942 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EMethodsToEncrypt = exports.EMethodsToDecrypt = void 0;
var EMethodsToDecrypt;
(function (EMethodsToDecrypt) {
EMethodsToDecrypt["findUniqueOrThrow"] = "findUniqueOrThrow";
EMethodsToDecrypt["findUnique"] = "findUnique";
EMethodsToDecrypt["findFirst"] = "findFirst";
EMethodsToDecrypt["findMany"] = "findMany";
EMethodsToDecrypt["groupBy"] = "groupBy";
})(EMethodsToDecrypt || (exports.EMethodsToDecrypt = EMethodsToDecrypt = {}));
var EMethodsToEncrypt;
(function (EMethodsToEncrypt) {
EMethodsToEncrypt["create"] = "create";
EMethodsToEncrypt["createMany"] = "createMany";
EMethodsToEncrypt["upsert"] = "upsert";
EMethodsToEncrypt["updateMany"] = "updateMany";
EMethodsToEncrypt["update"] = "update";
})(EMethodsToEncrypt || (exports.EMethodsToEncrypt = EMethodsToEncrypt = {}));
//# sourceMappingURL=actions.js.map