@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.
- package/dist/{chunk-4XUWD3DZ.js → chunk-7C3UYEKE.js} +1 -8
- package/dist/{dist-CU5WVKG2.js → dist-U7NYIMA4.js} +535 -143
- package/dist/index.js +508 -92
- package/package.json +3 -2
- package/dist/chunk-FN4LCKUA.js +0 -42
- package/dist/chunk-OMGUT7RM.js +0 -82
- package/dist/pairing-IGMDVOIZ-RA7GNFU7.js +0 -10
- package/dist/store-XDNMGPYX-5CGK2GXY.js +0 -7
|
@@ -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([])
|