open-lineage-client
Version:
TypeScript/JavaScript client for creating and sending OpenLineage standard events.
15 lines (14 loc) • 330 B
TypeScript
export type URI = string;
export type UUID = string;
export declare enum FieldTransformationType {
IDENTITY = "IDENTITY",
MASKED = "MASKED"
}
export declare enum TransformationType {
DIRECT = "DIRECT",
INDIRECT = "INDIRECT"
}
export declare enum ProcessingType {
BATCH = "BATCH",
STREAMING = "STREAMING"
}