@agent-native/core 0.7.40 → 0.7.42
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/a2a/client.d.ts +4 -1
- package/dist/a2a/client.d.ts.map +1 -1
- package/dist/a2a/client.js +152 -43
- package/dist/a2a/client.js.map +1 -1
- package/dist/client/NewWorkspaceAppFlow.d.ts.map +1 -1
- package/dist/client/NewWorkspaceAppFlow.js +12 -7
- package/dist/client/NewWorkspaceAppFlow.js.map +1 -1
- package/dist/deploy/workspace-deploy.d.ts.map +1 -1
- package/dist/deploy/workspace-deploy.js +126 -18
- package/dist/deploy/workspace-deploy.js.map +1 -1
- package/dist/integrations/a2a-continuation-processor.d.ts.map +1 -1
- package/dist/integrations/a2a-continuation-processor.js +21 -1
- package/dist/integrations/a2a-continuation-processor.js.map +1 -1
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +16 -0
- package/dist/server/auth.js.map +1 -1
- package/dist/server/framework-request-handler.d.ts.map +1 -1
- package/dist/server/framework-request-handler.js +22 -5
- package/dist/server/framework-request-handler.js.map +1 -1
- package/dist/server/onboarding-html.d.ts.map +1 -1
- package/dist/server/onboarding-html.js +3 -0
- package/dist/server/onboarding-html.js.map +1 -1
- package/dist/templates/workspace-root/.env.example +23 -2
- package/package.json +1 -1
- package/src/templates/workspace-root/.env.example +23 -2
|
@@ -10,6 +10,13 @@ DATABASE_URL=
|
|
|
10
10
|
# openssl rand -hex 32
|
|
11
11
|
BETTER_AUTH_SECRET=
|
|
12
12
|
|
|
13
|
+
# Canonical public workspace URL. Use the root origin, not /dispatch.
|
|
14
|
+
# WEBHOOK_BASE_URL overrides self-callback URLs for Slack/email/etc. if your
|
|
15
|
+
# deploy provider exposes a preview URL but webhooks should use a custom domain.
|
|
16
|
+
APP_URL=
|
|
17
|
+
BETTER_AUTH_URL=
|
|
18
|
+
WEBHOOK_BASE_URL=
|
|
19
|
+
|
|
13
20
|
# Anthropic API key for the agent chat.
|
|
14
21
|
ANTHROPIC_API_KEY=
|
|
15
22
|
|
|
@@ -21,6 +28,7 @@ OPENAI_API_KEY=
|
|
|
21
28
|
# callback handler to this workspace-level .env).
|
|
22
29
|
BUILDER_PRIVATE_KEY=
|
|
23
30
|
BUILDER_PUBLIC_KEY=
|
|
31
|
+
BUILDER_USER_ID=
|
|
24
32
|
|
|
25
33
|
# Builder app creation / branching. In local dev these can live in .env.
|
|
26
34
|
# In production, configure deploy env vars instead; production app creation
|
|
@@ -28,12 +36,25 @@ BUILDER_PUBLIC_KEY=
|
|
|
28
36
|
ENABLE_BUILDER=
|
|
29
37
|
DISPATCH_BUILDER_PROJECT_ID=
|
|
30
38
|
BUILDER_BRANCH_PROJECT_ID=
|
|
39
|
+
BUILDER_PROJECT_ID=
|
|
31
40
|
|
|
32
|
-
# A2A shared secret — required for cross-app JWT verification
|
|
33
|
-
# in the workspace should use
|
|
41
|
+
# A2A shared secret — required in production for cross-app JWT verification
|
|
42
|
+
# and integration webhook processing. Every app in the workspace should use
|
|
43
|
+
# the same value. Generate with:
|
|
34
44
|
# openssl rand -hex 32
|
|
35
45
|
A2A_SECRET=
|
|
36
46
|
|
|
47
|
+
# Slack integration. Required for @agent-native Slack mentions and replies.
|
|
48
|
+
SLACK_BOT_TOKEN=
|
|
49
|
+
SLACK_SIGNING_SECRET=
|
|
50
|
+
SLACK_ALLOWED_TEAM_IDS=
|
|
51
|
+
SLACK_ALLOWED_API_APP_IDS=
|
|
52
|
+
|
|
53
|
+
# Optional production default for unlinked Slack users. This makes all
|
|
54
|
+
# unlinked Slack requests run as this owner, so only set it for trusted,
|
|
55
|
+
# single-workspace deployments.
|
|
56
|
+
DISPATCH_DEFAULT_OWNER_EMAIL=
|
|
57
|
+
|
|
37
58
|
# Google sign-in — optional. Leave blank to use email/password only.
|
|
38
59
|
# Both values come from Google Cloud Console → APIs & Services → Credentials.
|
|
39
60
|
GOOGLE_CLIENT_ID=
|