Initial commit

This commit is contained in:
fraqtal
2026-07-12 08:15:46 +00:00
commit ee0fec0691
1397 changed files with 127242 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
export type {
DsrFormat,
DeletionMode,
DeletionReason,
DeletionAction,
SubjectReference,
CollectionDataBucket,
UserDataBundle,
DeletionAffected,
DeletionCertificate,
} from "./dsr-types";
export type { IDataExport } from "./data-export.interface";
export type { IDataDelete } from "./data-delete.interface";
export type { IDataRectify } from "./data-rectify.interface";
export type { IProcessingRestriction } from "./processing-restriction.interface";
export type {
DsrSubjectLinkKind,
DsrSubjectLinkage,
DsrCollectionCustom,
FieldPii,
} from "./dsr-collection-custom";
export { PayloadDataExport } from "./payload-data-export";
export { PayloadDataDelete } from "./payload-data-delete";
export { PayloadDataRectify } from "./payload-data-rectify";
export { PayloadProcessingRestriction } from "./payload-processing-restriction";
export { InMemoryDataExport } from "./in-memory-data-export";
export { InMemoryDataDelete } from "./in-memory-data-delete";
export { InMemoryDataRectify } from "./in-memory-data-rectify";
export { InMemoryProcessingRestriction } from "./in-memory-processing-restriction";
export { bindProductionDsr } from "./di/bind-production";
export type { DsrBinding, BindProductionDsrOpts } from "./di/bind-production";
export { bindDevSeedDsr } from "./di/bind-dev-seed";
export { createDsrRouter, dsrRouter } from "./dsr.router";
export type { DsrRouter, DsrTrpcUser } from "./dsr.router";
export type { HandlerResponse } from "./handlers/handler-types";
export { createExportHandler } from "./handlers/export-handler";
export type { ExportHandlerInput } from "./handlers/export-handler";
export { createDeleteHandler } from "./handlers/delete-handler";
export type { DeleteHandlerInput } from "./handlers/delete-handler";
export { createRectifyHandler } from "./handlers/rectify-handler";
export type { RectifyHandlerInput } from "./handlers/rectify-handler";
export { createRestrictHandler } from "./handlers/restrict-handler";
export type { RestrictHandlerInput } from "./handlers/restrict-handler";