claude-code-autoconfig 1.0.160 → 1.0.161

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.
@@ -133,13 +133,13 @@ function buildSwaggerHtml(meta) {
133
133
  if (meta.params.length > 0) {
134
134
  let table = '<div style="margin-top: 12px;"><strong>Parameters</strong>';
135
135
  table += '<table style="width: 100%; margin-top: 6px; border-collapse: collapse; font-size: 0.9em; text-align: left;">';
136
- table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px;">Name</th><th style="padding: 4px 8px;">Type</th><th style="padding: 4px 8px;">Required</th><th style="padding: 4px 8px;">Description</th></tr>';
136
+ table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px 4px 0;">Name</th><th style="padding: 4px 8px 4px 0;">Type</th><th style="padding: 4px 8px 4px 0;">Required</th><th style="padding: 4px 8px 4px 0;">Description</th></tr>';
137
137
  for (const p of meta.params) {
138
138
  table += `<tr style="border-bottom: 1px solid var(--border);">`;
139
- table += `<td style="padding: 4px 8px; white-space: nowrap;"><code>${p.name}</code></td>`;
140
- table += `<td style="padding: 4px 8px;"><code>${p.type}</code></td>`;
141
- table += `<td style="padding: 4px 8px;">${p.required}</td>`;
142
- table += `<td style="padding: 4px 8px;">${p.desc}</td>`;
139
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>${p.name}</code></td>`;
140
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;"><code>${p.type}</code></td>`;
141
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${p.required}</td>`;
142
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${p.desc}</td>`;
143
143
  table += `</tr>`;
144
144
  }
145
145
  table += '</table></div>';
@@ -152,11 +152,11 @@ function buildSwaggerHtml(meta) {
152
152
  if (meta.responses.length > 0) {
153
153
  let table = '<div style="margin-top: 12px;"><strong>Responses</strong>';
154
154
  table += '<table style="width: 100%; margin-top: 6px; border-collapse: collapse; font-size: 0.9em; text-align: left;">';
155
- table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px;">Status</th><th style="padding: 4px 8px;">Description</th></tr>';
155
+ table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px 4px 0;">Status</th><th style="padding: 4px 8px 4px 0;">Description</th></tr>';
156
156
  for (const r of meta.responses) {
157
157
  table += `<tr style="border-bottom: 1px solid var(--border);">`;
158
- table += `<td style="padding: 4px 8px; white-space: nowrap;"><code>${r.status}</code></td>`;
159
- table += `<td style="padding: 4px 8px;">${r.desc}</td>`;
158
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>${r.status}</code></td>`;
159
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${r.desc}</td>`;
160
160
  table += `</tr>`;
161
161
  }
162
162
  table += '</table></div>';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.160",
3
+ "version": "1.0.161",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",