@highflame/policy 2.2.0 → 2.2.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/_schemas/guardrails/context.json +132 -0
- package/_schemas/guardrails/schema.cedarschema +20 -0
- package/dist/ai_gateway-context.gen.d.ts +5 -0
- package/dist/ai_gateway-context.gen.js +67 -0
- package/dist/guardrails-context.gen.d.ts +11 -0
- package/dist/guardrails-context.gen.js +134 -0
- package/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/dist/overwatch-context.gen.d.ts +5 -0
- package/dist/overwatch-context.gen.js +78 -0
- package/dist/palisade-context.gen.d.ts +5 -0
- package/dist/palisade-context.gen.js +21 -0
- package/dist/sentry-context.gen.d.ts +5 -0
- package/dist/sentry-context.gen.js +75 -0
- package/dist/service-schemas.gen.d.ts +1 -1
- package/dist/service-schemas.gen.js +42 -0
- package/dist/types.d.ts +5 -5
- package/dist/types.js +5 -5
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -13,11 +13,11 @@ export * from './explain.js';
|
|
|
13
13
|
export * from './condition-groups.js';
|
|
14
14
|
export { AI_GATEWAY_SCHEMA, AI_GATEWAY_CONTEXT, GUARDRAILS_SCHEMA, GUARDRAILS_CONTEXT, OVERWATCH_SCHEMA, OVERWATCH_CONTEXT, PALISADE_SCHEMA, PALISADE_CONTEXT, SENTRY_SCHEMA, SENTRY_CONTEXT, } from './service-schemas.gen.js';
|
|
15
15
|
export type { ContextAttribute, ActionContext, ServiceContext, } from './service-schemas.gen.js';
|
|
16
|
-
export { AiGatewayContextKey } from './ai_gateway-context.gen.js';
|
|
17
|
-
export { GuardrailsContextKey } from './guardrails-context.gen.js';
|
|
18
|
-
export { OverwatchContextKey } from './overwatch-context.gen.js';
|
|
19
|
-
export { PalisadeContextKey } from './palisade-context.gen.js';
|
|
20
|
-
export { SentryContextKey } from './sentry-context.gen.js';
|
|
16
|
+
export { AiGatewayContextKey, AiGatewayContextKeys } from './ai_gateway-context.gen.js';
|
|
17
|
+
export { GuardrailsContextKey, GuardrailsContextKeys } from './guardrails-context.gen.js';
|
|
18
|
+
export { OverwatchContextKey, OverwatchContextKeys } from './overwatch-context.gen.js';
|
|
19
|
+
export { PalisadeContextKey, PalisadeContextKeys } from './palisade-context.gen.js';
|
|
20
|
+
export { SentryContextKey, SentryContextKeys } from './sentry-context.gen.js';
|
|
21
21
|
export { AI_GATEWAY_ENTITIES, AI_GATEWAY_ACTION_ENTITIES, } from './ai_gateway-entities.gen.js';
|
|
22
22
|
export { GUARDRAILS_ENTITIES, GUARDRAILS_ACTION_ENTITIES, } from './guardrails-entities.gen.js';
|
|
23
23
|
export { OVERWATCH_ENTITIES, OVERWATCH_ACTION_ENTITIES, } from './overwatch-entities.gen.js';
|
package/dist/types.js
CHANGED
|
@@ -34,11 +34,11 @@ export * from './condition-groups.js';
|
|
|
34
34
|
// Service-specific schemas and context (inlined, browser-safe)
|
|
35
35
|
export { AI_GATEWAY_SCHEMA, AI_GATEWAY_CONTEXT, GUARDRAILS_SCHEMA, GUARDRAILS_CONTEXT, OVERWATCH_SCHEMA, OVERWATCH_CONTEXT, PALISADE_SCHEMA, PALISADE_CONTEXT, SENTRY_SCHEMA, SENTRY_CONTEXT, } from './service-schemas.gen.js';
|
|
36
36
|
// Service-specific context key enums
|
|
37
|
-
export { AiGatewayContextKey } from './ai_gateway-context.gen.js';
|
|
38
|
-
export { GuardrailsContextKey } from './guardrails-context.gen.js';
|
|
39
|
-
export { OverwatchContextKey } from './overwatch-context.gen.js';
|
|
40
|
-
export { PalisadeContextKey } from './palisade-context.gen.js';
|
|
41
|
-
export { SentryContextKey } from './sentry-context.gen.js';
|
|
37
|
+
export { AiGatewayContextKey, AiGatewayContextKeys } from './ai_gateway-context.gen.js';
|
|
38
|
+
export { GuardrailsContextKey, GuardrailsContextKeys } from './guardrails-context.gen.js';
|
|
39
|
+
export { OverwatchContextKey, OverwatchContextKeys } from './overwatch-context.gen.js';
|
|
40
|
+
export { PalisadeContextKey, PalisadeContextKeys } from './palisade-context.gen.js';
|
|
41
|
+
export { SentryContextKey, SentryContextKeys } from './sentry-context.gen.js';
|
|
42
42
|
// Service-specific entity metadata (for UI - principals, resources, actions)
|
|
43
43
|
export { AI_GATEWAY_ENTITIES, AI_GATEWAY_ACTION_ENTITIES, } from './ai_gateway-entities.gen.js';
|
|
44
44
|
export { GUARDRAILS_ENTITIES, GUARDRAILS_ACTION_ENTITIES, } from './guardrails-entities.gen.js';
|