@agent-native/core 0.157.22 → 0.157.23

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.
@@ -41,27 +41,27 @@ export declare function createObservabilityHandler(): import("h3").EventHandlerW
41
41
  thumbsUpRate: number;
42
42
  avgEvalScore: number;
43
43
  } | {
44
- error?: undefined;
45
- ok?: undefined;
46
44
  summary: import("./types.js").TraceSummary;
47
45
  spans: import("./types.js").TraceSpan[];
48
46
  id?: undefined;
49
- } | {
50
47
  error?: undefined;
51
48
  ok?: undefined;
49
+ } | {
52
50
  summary?: undefined;
53
51
  spans?: undefined;
54
52
  id: string;
55
- } | {
53
+ error?: undefined;
56
54
  ok?: undefined;
55
+ } | {
57
56
  summary?: undefined;
58
57
  spans?: undefined;
59
58
  id?: undefined;
60
59
  error: any;
60
+ ok?: undefined;
61
61
  } | {
62
- error?: undefined;
63
62
  summary?: undefined;
64
63
  spans?: undefined;
65
64
  id?: undefined;
65
+ error?: undefined;
66
66
  ok: boolean;
67
67
  }>>;
@@ -34,37 +34,37 @@ export declare function createListSecretsHandler(): import("h3").EventHandlerWit
34
34
  /** POST /_agent-native/secrets/:key — write a secret. */
35
35
  export declare function createWriteSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
36
36
  error: string;
37
- ok?: undefined;
38
37
  status?: undefined;
38
+ ok?: undefined;
39
39
  } | {
40
- error?: undefined;
41
40
  ok: boolean;
42
41
  status: string;
42
+ error?: undefined;
43
43
  } | {
44
- ok?: undefined;
45
44
  error: string;
46
45
  removed?: undefined;
46
+ ok?: undefined;
47
47
  } | {
48
- error?: undefined;
49
48
  ok: boolean;
50
49
  removed: boolean;
50
+ error?: undefined;
51
51
  }>>;
52
52
  /**
53
53
  * POST /_agent-native/secrets/:key/test — validate an optional candidate value
54
54
  * or the current stored value without changing anything.
55
55
  */
56
56
  export declare function createTestSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
57
- ok?: undefined;
58
57
  error: string;
59
58
  note?: undefined;
59
+ ok?: undefined;
60
60
  } | {
61
- error?: undefined;
62
61
  ok: boolean;
63
62
  note?: undefined;
64
- } | {
65
63
  error?: undefined;
64
+ } | {
66
65
  ok: boolean;
67
66
  note: string;
67
+ error?: undefined;
68
68
  } | {
69
69
  note?: undefined;
70
70
  ok: boolean;
@@ -95,11 +95,11 @@ export interface AdHocSecretPayload {
95
95
  export declare function createAdHocSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<AdHocSecretPayload[] | {
96
96
  error: string;
97
97
  } | {
98
- error?: undefined;
99
98
  ok: boolean;
100
99
  key: string;
101
- } | {
102
100
  error?: undefined;
101
+ } | {
103
102
  ok: boolean;
104
103
  removed: boolean;
104
+ error?: undefined;
105
105
  }>>;
@@ -27,10 +27,10 @@ export declare function resolveAgentEngineApiKeyWriteTarget(event: H3Event, scop
27
27
  export declare function createAgentEngineApiKeyHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
28
28
  error: any;
29
29
  } | {
30
- error?: undefined;
31
30
  ok: boolean;
32
31
  key: string;
33
32
  baseUrlKey?: string;
34
33
  scope: AgentEngineApiKeyScope;
34
+ error?: undefined;
35
35
  }>>;
36
36
  export {};
@@ -23,6 +23,7 @@ export declare function getIdentityHubUrl(): string | undefined;
23
23
  export declare function isIdentitySsoExplicitlyEnabled(): boolean;
24
24
  export declare function isIdentitySsoEnabled(): boolean;
25
25
  export declare function isDesktopSsoCanaryUserAgent(userAgent: string | undefined): boolean;
26
+ export declare function isDesktopSsoUserAgent(userAgent: string | undefined): boolean;
26
27
  export declare function isCanonicalAgentNativeAppOrigin(origin: string | undefined): boolean;
27
28
  export declare function isCanonicalIdentitySsoClientOrigin(origin: string | undefined): boolean;
28
29
  export declare function isCanonicalAgentNativeAppRequest(host: string | undefined, forwardedProtocol: string | undefined): boolean;
@@ -19,6 +19,7 @@ import { randomBytes } from "node:crypto";
19
19
  import { getDbExec, intType, isConnectionError, isPostgres, isProductionServerlessFunctionRuntime, } from "../db/client.js";
20
20
  import { ensureTableExists } from "../db/ddl-guard.js";
21
21
  let _initPromise;
22
+ const DESKTOP_SSO_USER_AGENT = /AgentNativeDesktop(?:SsoCanary)?\//i;
22
23
  const DESKTOP_SSO_CANARY_USER_AGENT = /AgentNativeDesktopSsoCanary\//i;
23
24
  export const CANONICAL_IDENTITY_SSO_HUB_URL = "https://dispatch.agent-native.com";
24
25
  const CANONICAL_IDENTITY_SSO_APP_ORIGINS = new Set([
@@ -110,6 +111,9 @@ export function isIdentitySsoEnabled() {
110
111
  export function isDesktopSsoCanaryUserAgent(userAgent) {
111
112
  return DESKTOP_SSO_CANARY_USER_AGENT.test(userAgent ?? "");
112
113
  }
114
+ export function isDesktopSsoUserAgent(userAgent) {
115
+ return DESKTOP_SSO_USER_AGENT.test(userAgent ?? "");
116
+ }
113
117
  export function isCanonicalAgentNativeAppOrigin(origin) {
114
118
  if (!origin)
115
119
  return false;
@@ -21,7 +21,7 @@ import { getAppName } from "./app-name.js";
21
21
  import { getSession, isExpectedAuthFailure, safeReturnPath } from "./auth.js";
22
22
  import { getBetterAuth, getBetterAuthInternalAdapter, } from "./better-auth-instance.js";
23
23
  import { createOAuthSession, getOrigin } from "./google-oauth.js";
24
- import { consumeSsoState, createSsoState, CANONICAL_IDENTITY_SSO_HUB_URL, getIdentityHubUrl, identitySsoLoginButtonHtml, isCanonicalAgentNativeAppRequest, isCanonicalIdentitySsoClientRequest, isDesktopSsoCanaryUserAgent, isIdentitySsoExplicitlyEnabled, isIdentitySsoEnabled, isJtiReplayed, SSO_STATE_TTL_MS, } from "./identity-sso-store.js";
24
+ import { consumeSsoState, createSsoState, CANONICAL_IDENTITY_SSO_HUB_URL, getIdentityHubUrl, identitySsoLoginButtonHtml, isCanonicalIdentitySsoClientRequest, isDesktopSsoUserAgent, isIdentitySsoExplicitlyEnabled, isIdentitySsoEnabled, isJtiReplayed, SSO_STATE_TTL_MS, } from "./identity-sso-store.js";
25
25
  export { getIdentityHubUrl, identitySsoLoginButtonHtml, isIdentitySsoEnabled };
26
26
  export const IDENTITY_SSO_PROVIDER_ID = "agent-native";
27
27
  export const IDENTITY_SSO_SCOPE = "identity";
@@ -164,11 +164,11 @@ export function resolveIdentityHubUrl(event) {
164
164
  if (isCanonicalIdentitySsoClientRequest(getHeader(event, "host"), getHeader(event, "x-forwarded-proto"))) {
165
165
  return CANONICAL_IDENTITY_SSO_HUB_URL;
166
166
  }
167
- if (!isDesktopSsoCanaryUserAgent(getHeader(event, "user-agent"))) {
167
+ if (!isDesktopSsoUserAgent(getHeader(event, "user-agent"))) {
168
168
  return undefined;
169
169
  }
170
170
  try {
171
- if (!isCanonicalAgentNativeAppRequest(getHeader(event, "host"), getHeader(event, "x-forwarded-proto"))) {
171
+ if (!isCanonicalIdentitySsoClientRequest(getHeader(event, "host"), getHeader(event, "x-forwarded-proto"))) {
172
172
  return undefined;
173
173
  }
174
174
  return CANONICAL_IDENTITY_SSO_HUB_URL;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.157.22",
3
+ "version": "0.157.23",
4
4
  "description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
5
5
  "homepage": "https://github.com/BuilderIO/agent-native#readme",
6
6
  "bugs": {