@inkeep/agents-core 0.61.0 → 0.62.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.
@@ -980,7 +980,7 @@ const PublicKeyConfigSchema = z.object({
980
980
  addedAt: z.string().datetime()
981
981
  }).openapi("PublicKeyConfig");
982
982
  const WebClientAuthConfigSchema = z.object({
983
- publicKeys: z.array(PublicKeyConfigSchema).max(5).default([]),
983
+ publicKeys: z.array(PublicKeyConfigSchema).default([]),
984
984
  audience: z.string().optional(),
985
985
  validateScopeClaims: z.boolean().optional(),
986
986
  allowAnonymous: z.boolean().optional()
@@ -0,0 +1,13 @@
1
+ -- Custom SQL migration file, put your code below! --
2
+ INSERT INTO "apps" ("id", "name", "description", "type", "enabled", "config", "created_at", "updated_at")
3
+ VALUES (
4
+ 'app_playground',
5
+ 'Playground',
6
+ 'Global playground app for the manage UI',
7
+ 'web_client',
8
+ true,
9
+ '{"type": "web_client", "webClient": {"allowedDomains": ["*"], "auth": {"publicKeys": [], "validateScopeClaims": true}}}',
10
+ now(),
11
+ now()
12
+ )
13
+ ON CONFLICT ("id") DO NOTHING;