@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.
- package/dist/auth/auth-validation-schemas.d.ts +154 -154
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/init.js +3 -1
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/constants/allowed-file-formats.d.ts +3 -1
- package/dist/constants/allowed-file-formats.js +27 -3
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +2 -2
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +6 -6
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/db/manage/manage-schema.d.ts +454 -454
- package/dist/db/runtime/runtime-schema.d.ts +342 -342
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/utils/error.d.ts +51 -51
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/index.js +2 -2
- package/dist/utils/jwt-helpers.d.ts +7 -1
- package/dist/utils/jwt-helpers.js +11 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1550 -1550
- package/dist/validation/schemas.js +1 -1
- package/drizzle/runtime/0027_seed-playground-app.sql +13 -0
- package/drizzle/runtime/meta/0027_snapshot.json +4389 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -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).
|
|
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;
|