@polka-codes/core 0.9.0 → 0.9.1
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/_tsup-dts-rollup.d.ts +3 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
|
@@ -284,6 +284,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
284
284
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
285
285
|
defaultModel: z.ZodOptional<z.ZodString>;
|
|
286
286
|
defaultParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
287
|
+
location: z.ZodOptional<z.ZodString>;
|
|
288
|
+
project: z.ZodOptional<z.ZodString>;
|
|
289
|
+
keyFile: z.ZodOptional<z.ZodString>;
|
|
287
290
|
}, z.core.$strip>>>;
|
|
288
291
|
defaultProvider: z.ZodOptional<z.ZodString>;
|
|
289
292
|
defaultModel: z.ZodOptional<z.ZodString>;
|
package/dist/index.js
CHANGED
|
@@ -2762,7 +2762,10 @@ var configSchema = z15.object({
|
|
|
2762
2762
|
z15.object({
|
|
2763
2763
|
apiKey: z15.string().optional(),
|
|
2764
2764
|
defaultModel: z15.string().optional(),
|
|
2765
|
-
defaultParameters: z15.record(z15.string(), z15.any()).optional()
|
|
2765
|
+
defaultParameters: z15.record(z15.string(), z15.any()).optional(),
|
|
2766
|
+
location: z15.string().optional(),
|
|
2767
|
+
project: z15.string().optional(),
|
|
2768
|
+
keyFile: z15.string().optional()
|
|
2766
2769
|
})
|
|
2767
2770
|
).optional(),
|
|
2768
2771
|
defaultProvider: z15.string().optional(),
|