@assistkick/create 1.21.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,13 @@
15
15
  "when": 1773914724031,
16
16
  "tag": "0001_superb_roxanne_simpson",
17
17
  "breakpoints": true
18
+ },
19
+ {
20
+ "idx": 2,
21
+ "version": "6",
22
+ "when": 1773918822690,
23
+ "tag": "0002_noisy_maelstrom",
24
+ "breakpoints": true
18
25
  }
19
26
  ]
20
27
  }
@@ -251,6 +251,7 @@ export const workflowToolCalls = sqliteTable('workflow_tool_calls', {
251
251
  export const userMcpConfigs = sqliteTable('user_mcp_configs', {
252
252
  id: text('id').primaryKey(),
253
253
  userId: text('user_id').notNull(),
254
+ projectId: text('project_id'), // null = global (user-level), non-null = project-scoped
254
255
  configType: text('config_type').notNull(), // 'localhost' or 'remote'
255
256
  mcpServersJson: text('mcp_servers_json').notNull().default('{}'),
256
257
  createdAt: text('created_at').notNull(),