@inkeep/agents-core 0.8.0 → 0.8.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/index.cjs CHANGED
@@ -10383,6 +10383,8 @@ loadEnvironmentFiles();
10383
10383
  var envSchema = zod.z.object({
10384
10384
  ENVIRONMENT: zod.z.enum(["development", "production", "pentest", "test"]).optional(),
10385
10385
  DB_FILE_NAME: zod.z.string().optional(),
10386
+ TURSO_DATABASE_URL: zod.z.string().optional(),
10387
+ TURSO_AUTH_TOKEN: zod.z.string().optional(),
10386
10388
  OTEL_TRACES_FORCE_FLUSH_ENABLED: zod.z.coerce.boolean().optional()
10387
10389
  });
10388
10390
  var parseEnv = () => {
package/dist/index.js CHANGED
@@ -8651,6 +8651,8 @@ loadEnvironmentFiles();
8651
8651
  var envSchema = z$1.object({
8652
8652
  ENVIRONMENT: z$1.enum(["development", "production", "pentest", "test"]).optional(),
8653
8653
  DB_FILE_NAME: z$1.string().optional(),
8654
+ TURSO_DATABASE_URL: z$1.string().optional(),
8655
+ TURSO_AUTH_TOKEN: z$1.string().optional(),
8654
8656
  OTEL_TRACES_FORCE_FLUSH_ENABLED: z$1.coerce.boolean().optional()
8655
8657
  });
8656
8658
  var parseEnv = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-core",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",