sparkecoder 0.1.5 → 0.1.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sparkecoder",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "A powerful coding agent CLI with HTTP API for development environments",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -88,11 +88,11 @@ declare const SparkcoderConfigSchema: z.ZodObject<{
88
88
  port: z.ZodDefault<z.ZodNumber>;
89
89
  host: z.ZodDefault<z.ZodString>;
90
90
  }, "strip", z.ZodTypeAny, {
91
- host: string;
92
91
  port: number;
92
+ host: string;
93
93
  }, {
94
- host?: string | undefined;
95
94
  port?: number | undefined;
95
+ host?: string | undefined;
96
96
  }>>;
97
97
  databasePath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
98
98
  }, "strip", z.ZodTypeAny, {
@@ -114,8 +114,8 @@ declare const SparkcoderConfigSchema: z.ZodObject<{
114
114
  keepRecentMessages: number;
115
115
  };
116
116
  server: {
117
- host: string;
118
117
  port: number;
118
+ host: string;
119
119
  };
120
120
  databasePath: string;
121
121
  workingDirectory?: string | undefined;
@@ -141,8 +141,8 @@ declare const SparkcoderConfigSchema: z.ZodObject<{
141
141
  keepRecentMessages?: number | undefined;
142
142
  } | undefined;
143
143
  server?: {
144
- host?: string | undefined;
145
144
  port?: number | undefined;
145
+ host?: string | undefined;
146
146
  } | undefined;
147
147
  databasePath?: string | undefined;
148
148
  }>;