--- profiler_api.inc	2010-10-26 15:24:24.000000000 -0700
+++ profiler_api.inc.new	2010-10-26 15:25:48.000000000 -0700
@@ -251,6 +251,7 @@ function system_profiler_components() {
   return array(
     'theme' => array('callback' => 'profiler_install_theme'),
     'variables' => array('callback' => 'profiler_install_variables'),
+    'types' => array( 'callback' => 'profiler_install_types'),
   );
 }
 
@@ -314,6 +315,16 @@ function profiler_install_variables($var
 }
 
 /**
+ * Component install callback for node 'types'.
+ */
+function profiler_install_types($types, $config, &$identifiers) {
+  foreach ($types as $type) {
+    $type = (object) _node_type_set_defaults($type);
+    node_type_save($type);
+  }
+}
+
+/**
  * Component install callback for 'nodes'.
  */
 function profiler_install_nodes($nodes, $config, &$identifiers) {
