@astrasyncai/verification-gateway 2.3.7 → 2.3.9
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/README.md +93 -10
- package/dist/adapter-interface/interface.d.mts +2 -2
- package/dist/adapter-interface/interface.d.ts +2 -2
- package/dist/adapters/express.d.mts +2 -2
- package/dist/adapters/express.d.ts +2 -2
- package/dist/adapters/express.js +81 -7
- package/dist/adapters/express.js.map +1 -1
- package/dist/adapters/express.mjs +81 -7
- package/dist/adapters/express.mjs.map +1 -1
- package/dist/adapters/mcp.d.mts +1 -1
- package/dist/adapters/mcp.d.ts +1 -1
- package/dist/adapters/mcp.js +84 -12
- package/dist/adapters/mcp.js.map +1 -1
- package/dist/adapters/mcp.mjs +84 -12
- package/dist/adapters/mcp.mjs.map +1 -1
- package/dist/adapters/nextjs.d.mts +2 -2
- package/dist/adapters/nextjs.d.ts +2 -2
- package/dist/adapters/nextjs.js +40 -6
- package/dist/adapters/nextjs.js.map +1 -1
- package/dist/adapters/nextjs.mjs +40 -6
- package/dist/adapters/nextjs.mjs.map +1 -1
- package/dist/adapters/sdk.d.mts +2 -2
- package/dist/adapters/sdk.d.ts +2 -2
- package/dist/adapters/sdk.js +40 -6
- package/dist/adapters/sdk.js.map +1 -1
- package/dist/adapters/sdk.mjs +40 -6
- package/dist/adapters/sdk.mjs.map +1 -1
- package/dist/agent/index.d.mts +2 -2
- package/dist/agent/index.d.ts +2 -2
- package/dist/browser/background.js +39 -5
- package/dist/browser/background.js.map +1 -1
- package/dist/browser/background.mjs +39 -5
- package/dist/browser/background.mjs.map +1 -1
- package/dist/browser/browser-adapter.d.mts +2 -2
- package/dist/browser/browser-adapter.d.ts +2 -2
- package/dist/cli/index.d.mts +2 -2
- package/dist/cli/index.d.ts +2 -2
- package/dist/cursor/cursor-adapter.d.mts +2 -2
- package/dist/cursor/cursor-adapter.d.ts +2 -2
- package/dist/cursor/extension.d.mts +2 -2
- package/dist/cursor/extension.d.ts +2 -2
- package/dist/cursor/extension.js +39 -5
- package/dist/cursor/extension.js.map +1 -1
- package/dist/cursor/extension.mjs +39 -5
- package/dist/cursor/extension.mjs.map +1 -1
- package/dist/{express-D9oRsseg.d.mts → express-BiB51d5t.d.mts} +1 -1
- package/dist/{express-DMSIl20m.d.ts → express-D6tEDU08.d.ts} +1 -1
- package/dist/gateway/gateway.d.mts +2 -2
- package/dist/gateway/gateway.d.ts +2 -2
- package/dist/gateway/gateway.js +39 -5
- package/dist/gateway/gateway.js.map +1 -1
- package/dist/gateway/gateway.mjs +39 -5
- package/dist/gateway/gateway.mjs.map +1 -1
- package/dist/git-trigger/git-hooks.d.mts +2 -2
- package/dist/git-trigger/git-hooks.d.ts +2 -2
- package/dist/{index-EwUWXC5T.d.ts → index-8DFMpITk.d.ts} +1 -1
- package/dist/{index-YNPs800Z.d.mts → index-B--6fiDp.d.mts} +1 -1
- package/dist/{index-Bn_7eGjb.d.mts → index-CAykfMWK.d.mts} +1 -1
- package/dist/{index-BtU9yFda.d.ts → index-Yt02MRyu.d.ts} +1 -1
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +87 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +87 -13
- package/dist/index.mjs.map +1 -1
- package/dist/local-evaluator/evaluator.d.mts +2 -2
- package/dist/local-evaluator/evaluator.d.ts +2 -2
- package/dist/{nextjs-B5ZBpHra.d.ts → nextjs-CK5F_tVZ.d.ts} +1 -1
- package/dist/{nextjs-BLtjRbc-.d.mts → nextjs-CpxqfQqD.d.mts} +1 -1
- package/dist/{sdk-BhkxvqnK.d.mts → sdk-BMvauMgP.d.ts} +9 -2
- package/dist/{sdk-YmE3RG8n.d.ts → sdk-yJjO7yzn.d.mts} +9 -2
- package/dist/transport/index.d.mts +2 -2
- package/dist/transport/index.d.ts +2 -2
- package/dist/{types-DxY5zt4z.d.mts → types-CKafuHDn.d.mts} +1 -1
- package/dist/{types-Bxqj1sKY.d.mts → types-UYT4GdPW.d.mts} +42 -4
- package/dist/{types-Bxqj1sKY.d.ts → types-UYT4GdPW.d.ts} +42 -4
- package/dist/{types-BecRpozv.d.ts → types-ppkhdldJ.d.ts} +1 -1
- package/dist/ui/index.d.mts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +3 -3
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +3 -3
- package/dist/ui/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RequestHandler, Request } from 'express';
|
|
2
|
-
import { V as VerificationResult, E as ExpressMiddlewareOptions, A as AstraSyncCredentials } from './types-
|
|
2
|
+
import { V as VerificationResult, E as ExpressMiddlewareOptions, A as AstraSyncCredentials } from './types-UYT4GdPW.mjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* AstraSync Universal Verification Gateway - Express Middleware
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RequestHandler, Request } from 'express';
|
|
2
|
-
import { V as VerificationResult, E as ExpressMiddlewareOptions, A as AstraSyncCredentials } from './types-
|
|
2
|
+
import { V as VerificationResult, E as ExpressMiddlewareOptions, A as AstraSyncCredentials } from './types-UYT4GdPW.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* AstraSync Universal Verification Gateway - Express Middleware
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as AstraSyncGatewayConfig, P as PDLSSContext, V as VerificationDecision } from '../types-
|
|
2
|
-
import '../types-
|
|
1
|
+
import { b as AstraSyncGatewayConfig, P as PDLSSContext, V as VerificationDecision } from '../types-CKafuHDn.mjs';
|
|
2
|
+
import '../types-UYT4GdPW.mjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* AstraSyncGateway — Primary API surface for agent verification.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as AstraSyncGatewayConfig, P as PDLSSContext, V as VerificationDecision } from '../types-
|
|
2
|
-
import '../types-
|
|
1
|
+
import { b as AstraSyncGatewayConfig, P as PDLSSContext, V as VerificationDecision } from '../types-ppkhdldJ.js';
|
|
2
|
+
import '../types-UYT4GdPW.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* AstraSyncGateway — Primary API surface for agent verification.
|
package/dist/gateway/gateway.js
CHANGED
|
@@ -3041,7 +3041,7 @@ function verifyLocal(evaluator, context) {
|
|
|
3041
3041
|
// src/access-levels.ts
|
|
3042
3042
|
var ACCESS_LEVEL_HIERARCHY = {
|
|
3043
3043
|
none: 0,
|
|
3044
|
-
|
|
3044
|
+
restricted: 1,
|
|
3045
3045
|
"read-only": 2,
|
|
3046
3046
|
standard: 3,
|
|
3047
3047
|
full: 4,
|
|
@@ -3057,7 +3057,11 @@ function getTrustLevel(score) {
|
|
|
3057
3057
|
// src/verify.ts
|
|
3058
3058
|
var DEFAULT_CONFIG = {
|
|
3059
3059
|
apiBaseUrl: "https://astrasync.ai/api",
|
|
3060
|
-
|
|
3060
|
+
// v2.3.9 (defect #30): default for unconfigured callers is `'none'` (no
|
|
3061
|
+
// access). Pre-rename this defaulted to `'guidance'`, which combined with
|
|
3062
|
+
// a route gated at `'guidance'` to silently let unverified traffic
|
|
3063
|
+
// through (`hasMinimumAccess('guidance', 'guidance') === true`).
|
|
3064
|
+
defaultAccessLevel: "none",
|
|
3061
3065
|
// minTrustScore + minTrustScoreForFull deprecated in v2.3.0 — server decides.
|
|
3062
3066
|
cacheTtl: 300,
|
|
3063
3067
|
// 5 minutes
|
|
@@ -3122,7 +3126,12 @@ function createGuidanceResponse(config, reason) {
|
|
|
3122
3126
|
};
|
|
3123
3127
|
return {
|
|
3124
3128
|
verified: false,
|
|
3125
|
-
|
|
3129
|
+
// v2.3.9 (defect #30): denials grant `'none'`, NEVER a positive band.
|
|
3130
|
+
// Adapters additionally short-circuit on `verified === false` before
|
|
3131
|
+
// the gate check, but the access level still has to be honest at the
|
|
3132
|
+
// data layer so downstream consumers (SDK adapters in other languages,
|
|
3133
|
+
// custom integrations) inherit the correct semantics.
|
|
3134
|
+
accessLevel: "none",
|
|
3126
3135
|
guidance,
|
|
3127
3136
|
denialReasons: reason ? [reason] : ["No valid agent credentials provided"],
|
|
3128
3137
|
verifiedAt: /* @__PURE__ */ new Date()
|
|
@@ -3179,6 +3188,23 @@ async function callVerifyAccessAPI(config, request) {
|
|
|
3179
3188
|
body: JSON.stringify(body)
|
|
3180
3189
|
});
|
|
3181
3190
|
const data = await response.json();
|
|
3191
|
+
if (response.status === 410) {
|
|
3192
|
+
return {
|
|
3193
|
+
success: true,
|
|
3194
|
+
access: {
|
|
3195
|
+
allowed: false,
|
|
3196
|
+
accessLevel: "none",
|
|
3197
|
+
reason: "endpoint_deactivated",
|
|
3198
|
+
failures: [
|
|
3199
|
+
{
|
|
3200
|
+
dimension: "endpoint.deactivated",
|
|
3201
|
+
message: typeof data?.message === "string" ? data.message : "Endpoint has been deactivated",
|
|
3202
|
+
guidance: typeof data?.guidance === "string" ? data.guidance : "Reactivate via POST /api/endpoints/{id}/reactivate, or update the URL on the calling agent."
|
|
3203
|
+
}
|
|
3204
|
+
]
|
|
3205
|
+
}
|
|
3206
|
+
};
|
|
3207
|
+
}
|
|
3182
3208
|
if (!response.ok) {
|
|
3183
3209
|
return {
|
|
3184
3210
|
success: false,
|
|
@@ -3232,7 +3258,14 @@ async function verify(config, request) {
|
|
|
3232
3258
|
const aggregatedFailures = apiResponse.access?.failures;
|
|
3233
3259
|
const result2 = {
|
|
3234
3260
|
verified: false,
|
|
3235
|
-
|
|
3261
|
+
// v2.3.9 (defect #30): denials grant `'none'`, NEVER a positive band.
|
|
3262
|
+
// Pre-rename this hardcoded `'guidance'`, which conflated with the
|
|
3263
|
+
// colocated `guidance: {...}` help-payload object below and let
|
|
3264
|
+
// denied requests pass any route gated at `'guidance'` because
|
|
3265
|
+
// `hasMinimumAccess('guidance', 'guidance') === true`. Adapters now
|
|
3266
|
+
// ALSO short-circuit on `verified === false` before the gate check —
|
|
3267
|
+
// belt-and-braces.
|
|
3268
|
+
accessLevel: "none",
|
|
3236
3269
|
denialReasons: aggregatedFailures && aggregatedFailures.length > 0 ? aggregatedFailures.map((f) => f.message) : apiResponse.access?.reason ? [apiResponse.access.reason] : ["Access denied"],
|
|
3237
3270
|
failures: aggregatedFailures,
|
|
3238
3271
|
requiresStepUp: apiResponse.access?.requiresStepUp,
|
|
@@ -3288,7 +3321,8 @@ async function verify(config, request) {
|
|
|
3288
3321
|
runtimeChallenge: apiResponse.runtimeChallenge,
|
|
3289
3322
|
tokenGuidance: apiResponse.tokenGuidance,
|
|
3290
3323
|
recommendation: apiResponse.recommendation,
|
|
3291
|
-
recommendationReasons: apiResponse.recommendationReasons
|
|
3324
|
+
recommendationReasons: apiResponse.recommendationReasons,
|
|
3325
|
+
warningHeader: apiResponse.warningHeader
|
|
3292
3326
|
};
|
|
3293
3327
|
if (result.recommendation === "deny") {
|
|
3294
3328
|
result.verified = false;
|