test(app): fix TS2322 in bulk-export cleanup cron integ test
`ReturnType<typeof User.create>` resolves to `void` because Mongoose's
`Model.create` is overloaded, so `let user: Awaited<...>` was typed `void`
and assigning the created document failed `tsc` (ci-app-lint). Derive the
type from the schema via `HydratedDocument<InferSchemaType<typeof userSchema>>`.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>