ravendb
Version:
RavenDB client for Node.js
23 lines • 681 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Transformation = void 0;
exports.serializeTransformation = serializeTransformation;
class Transformation {
name;
disabled;
collections;
applyToAllDocuments;
script;
documentIdPostfix;
}
exports.Transformation = Transformation;
function serializeTransformation(transformation) {
return {
Name: transformation.name,
Disabled: transformation.disabled,
Collections: transformation.collections,
ApplyToAllDocuments: transformation.applyToAllDocuments,
Script: transformation.script
};
}
//# sourceMappingURL=Transformation.js.map