@schuttdev/gigai 0.1.0-beta.9 → 0.2.2

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.
@@ -193,13 +193,6 @@ var CloudflareHttpsConfigSchema = z.object({
193
193
  tunnelName: z.string(),
194
194
  domain: z.string().optional()
195
195
  });
196
- var LetsEncryptHttpsConfigSchema = z.object({
197
- provider: z.literal("letsencrypt"),
198
- domain: z.string(),
199
- email: z.string().email(),
200
- certPath: z.string().optional(),
201
- keyPath: z.string().optional()
202
- });
203
196
  var ManualHttpsConfigSchema = z.object({
204
197
  provider: z.literal("manual"),
205
198
  certPath: z.string(),
@@ -208,7 +201,6 @@ var ManualHttpsConfigSchema = z.object({
208
201
  var HttpsConfigSchema = z.discriminatedUnion("provider", [
209
202
  TailscaleHttpsConfigSchema,
210
203
  CloudflareHttpsConfigSchema,
211
- LetsEncryptHttpsConfigSchema,
212
204
  ManualHttpsConfigSchema
213
205
  ]);
214
206
  var CliToolConfigSchema = z.object({
@@ -261,6 +253,7 @@ var ServerConfigSchema = z.object({
261
253
  https: HttpsConfigSchema.optional()
262
254
  });
263
255
  var GigaiConfigSchema = z.object({
256
+ serverName: z.string().optional(),
264
257
  server: ServerConfigSchema,
265
258
  auth: AuthConfigSchema,
266
259
  tools: z.array(ToolConfigSchema).default([])