open-lineage-client
Version:
TypeScript/JavaScript client for creating and sending OpenLineage standard events.
19 lines • 856 B
JavaScript
// export type FieldTransformationType = 'IDENTITY' | 'MASKED';
export var FieldTransformationType;
(function (FieldTransformationType) {
FieldTransformationType["IDENTITY"] = "IDENTITY";
FieldTransformationType["MASKED"] = "MASKED";
})(FieldTransformationType || (FieldTransformationType = {}));
// export type TransformationType = 'DIRECT' | 'INDIRECT';
export var TransformationType;
(function (TransformationType) {
TransformationType["DIRECT"] = "DIRECT";
TransformationType["INDIRECT"] = "INDIRECT";
})(TransformationType || (TransformationType = {}));
// export type ProcessingType = 'BATCH' | 'STREAMING';
export var ProcessingType;
(function (ProcessingType) {
ProcessingType["BATCH"] = "BATCH";
ProcessingType["STREAMING"] = "STREAMING";
})(ProcessingType || (ProcessingType = {}));
//# sourceMappingURL=CommonTypes.js.map