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/dist/agent/index.d.ts +1 -1
- package/dist/agent/index.js +2 -1
- package/dist/agent/index.js.map +1 -1
- package/dist/cli.js +43 -15
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +23 -12
- package/dist/index.js.map +1 -1
- package/dist/server/index.js +23 -12
- package/dist/server/index.js.map +1 -1
- package/dist/tools/index.js +2 -1
- package/dist/tools/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/{index-Btr542-G.d.ts → index-BeKylVnB.d.ts} +4 -4
package/package.json
CHANGED
|
@@ -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
|
}>;
|