Add log export for audit logs and SCIM events
Route audit-log and SCIM-event exports through export_jobs with typed arguments, an iam BuildAndUploadExport/SendExportEmail implementation, and a concurrent export-job worker with stale recovery. Stream JSONL via page.WalkAll into S3, and expose the request flow on console, connect, MCP, and CLI. Co-authored-by: Bryan Frimin <bryan@getprobo.com> Signed-off-by: Sacha Al Himdani <sacha@probo.com>
This commit is contained in:
@@ -37,6 +37,7 @@ import CompliancePortalDocumentAccessRejected from "../src/CompliancePortalDocum
|
||||
import ElectronicSignatureCertificate from "../src/ElectronicSignatureCertificate";
|
||||
import MailingListSubscription from "../src/MailingListSubscription";
|
||||
import MailingListUnsubscription from "../src/MailingListUnsubscription";
|
||||
import LogExport from "../src/LogExport";
|
||||
import MagicLink from "../src/MagicLink";
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
@@ -104,6 +105,10 @@ const templates: TemplateConfig[] = [
|
||||
name: "mailing-list-updates",
|
||||
render: () => MailingListUpdates(),
|
||||
},
|
||||
{
|
||||
name: "log-export",
|
||||
render: () => LogExport(),
|
||||
},
|
||||
];
|
||||
|
||||
async function build() {
|
||||
|
||||
Reference in New Issue
Block a user