@highflame/policy 2.2.6 → 2.2.7
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/agent_ops/context.json +1676 -0
- package/_schemas/agent_ops/schema.cedarschema +666 -0
- package/_schemas/agent_ops/templates/defaults/baseline.cedar +21 -0
- package/_schemas/agent_ops/templates/templates.json +66 -0
- package/dist/agent_ops-context.gen.d.ts +146 -0
- package/dist/agent_ops-context.gen.js +280 -0
- package/dist/agent_ops-defaults.gen.d.ts +64 -0
- package/dist/agent_ops-defaults.gen.js +156 -0
- package/dist/agent_ops-entities.gen.d.ts +11 -0
- package/dist/agent_ops-entities.gen.js +37 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +4 -1
- package/dist/service-schemas.gen.d.ts +10 -0
- package/dist/service-schemas.gen.js +1055 -1
- package/dist/types.d.ts +5 -1
- package/dist/types.js +4 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -11,19 +11,23 @@ export * from './errors.js';
|
|
|
11
11
|
export * from './annotations.js';
|
|
12
12
|
export * from './explain.js';
|
|
13
13
|
export * from './condition-groups.js';
|
|
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';
|
|
14
|
+
export { AGENT_OPS_SCHEMA, AGENT_OPS_CONTEXT, 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 { AgentOpsContextKey, AgentOpsContextKeys } from './agent_ops-context.gen.js';
|
|
16
17
|
export { AiGatewayContextKey, AiGatewayContextKeys } from './ai_gateway-context.gen.js';
|
|
17
18
|
export { GuardrailsContextKey, GuardrailsContextKeys } from './guardrails-context.gen.js';
|
|
18
19
|
export { OverwatchContextKey, OverwatchContextKeys } from './overwatch-context.gen.js';
|
|
19
20
|
export { PalisadeContextKey, PalisadeContextKeys } from './palisade-context.gen.js';
|
|
20
21
|
export { SentryContextKey, SentryContextKeys } from './sentry-context.gen.js';
|
|
22
|
+
export { AGENT_OPS_ENTITIES, AGENT_OPS_ACTION_ENTITIES, } from './agent_ops-entities.gen.js';
|
|
21
23
|
export { AI_GATEWAY_ENTITIES, AI_GATEWAY_ACTION_ENTITIES, } from './ai_gateway-entities.gen.js';
|
|
22
24
|
export { GUARDRAILS_ENTITIES, GUARDRAILS_ACTION_ENTITIES, } from './guardrails-entities.gen.js';
|
|
23
25
|
export { OVERWATCH_ENTITIES, OVERWATCH_ACTION_ENTITIES, } from './overwatch-entities.gen.js';
|
|
24
26
|
export { PALISADE_ENTITIES, PALISADE_ACTION_ENTITIES, } from './palisade-entities.gen.js';
|
|
25
27
|
export { SENTRY_ENTITIES, SENTRY_ACTION_ENTITIES, } from './sentry-entities.gen.js';
|
|
26
28
|
export type { ServiceEntityMetadata, ActionEntityMetadata } from './entity-metadata-types.gen.js';
|
|
29
|
+
export { AGENT_OPS_DEFAULTS, AGENT_OPS_TEMPLATES, AGENT_OPS_CATEGORIES, AGENT_OPS_TEMPLATES_JSON, getAgentOpsDefaultsByCategory, getAgentOpsTemplatesByCategory, getAgentOpsTemplateById, } from './agent_ops-defaults.gen.js';
|
|
30
|
+
export type { AgentOpsCategory, AgentOpsCategoryInfo, AgentOpsDefaultPolicy, AgentOpsTemplate, } from './agent_ops-defaults.gen.js';
|
|
27
31
|
export { AI_GATEWAY_DEFAULTS, AI_GATEWAY_TEMPLATES, AI_GATEWAY_CATEGORIES, AI_GATEWAY_TEMPLATES_JSON, getAiGatewayDefaultsByCategory, getAiGatewayTemplatesByCategory, getAiGatewayTemplateById, } from './ai_gateway-defaults.gen.js';
|
|
28
32
|
export type { AiGatewayCategory, AiGatewayCategoryInfo, AiGatewayDefaultPolicy, AiGatewayTemplate, } from './ai_gateway-defaults.gen.js';
|
|
29
33
|
export { GUARDRAILS_DEFAULTS, GUARDRAILS_TEMPLATES, GUARDRAILS_CATEGORIES, GUARDRAILS_TEMPLATES_JSON, getGuardrailsDefaultsByCategory, getGuardrailsTemplatesByCategory, getGuardrailsTemplateById, } from './guardrails-defaults.gen.js';
|
package/dist/types.js
CHANGED
|
@@ -32,20 +32,23 @@ export * from './explain.js';
|
|
|
32
32
|
// Condition groups - works in browser (no WASM dependency)
|
|
33
33
|
export * from './condition-groups.js';
|
|
34
34
|
// Service-specific schemas and context (inlined, browser-safe)
|
|
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';
|
|
35
|
+
export { AGENT_OPS_SCHEMA, AGENT_OPS_CONTEXT, 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 { AgentOpsContextKey, AgentOpsContextKeys } from './agent_ops-context.gen.js';
|
|
37
38
|
export { AiGatewayContextKey, AiGatewayContextKeys } from './ai_gateway-context.gen.js';
|
|
38
39
|
export { GuardrailsContextKey, GuardrailsContextKeys } from './guardrails-context.gen.js';
|
|
39
40
|
export { OverwatchContextKey, OverwatchContextKeys } from './overwatch-context.gen.js';
|
|
40
41
|
export { PalisadeContextKey, PalisadeContextKeys } from './palisade-context.gen.js';
|
|
41
42
|
export { SentryContextKey, SentryContextKeys } from './sentry-context.gen.js';
|
|
42
43
|
// Service-specific entity metadata (for UI - principals, resources, actions)
|
|
44
|
+
export { AGENT_OPS_ENTITIES, AGENT_OPS_ACTION_ENTITIES, } from './agent_ops-entities.gen.js';
|
|
43
45
|
export { AI_GATEWAY_ENTITIES, AI_GATEWAY_ACTION_ENTITIES, } from './ai_gateway-entities.gen.js';
|
|
44
46
|
export { GUARDRAILS_ENTITIES, GUARDRAILS_ACTION_ENTITIES, } from './guardrails-entities.gen.js';
|
|
45
47
|
export { OVERWATCH_ENTITIES, OVERWATCH_ACTION_ENTITIES, } from './overwatch-entities.gen.js';
|
|
46
48
|
export { PALISADE_ENTITIES, PALISADE_ACTION_ENTITIES, } from './palisade-entities.gen.js';
|
|
47
49
|
export { SENTRY_ENTITIES, SENTRY_ACTION_ENTITIES, } from './sentry-entities.gen.js';
|
|
48
50
|
// Service-specific default policies, templates, and categories
|
|
51
|
+
export { AGENT_OPS_DEFAULTS, AGENT_OPS_TEMPLATES, AGENT_OPS_CATEGORIES, AGENT_OPS_TEMPLATES_JSON, getAgentOpsDefaultsByCategory, getAgentOpsTemplatesByCategory, getAgentOpsTemplateById, } from './agent_ops-defaults.gen.js';
|
|
49
52
|
export { AI_GATEWAY_DEFAULTS, AI_GATEWAY_TEMPLATES, AI_GATEWAY_CATEGORIES, AI_GATEWAY_TEMPLATES_JSON, getAiGatewayDefaultsByCategory, getAiGatewayTemplatesByCategory, getAiGatewayTemplateById, } from './ai_gateway-defaults.gen.js';
|
|
50
53
|
export { GUARDRAILS_DEFAULTS, GUARDRAILS_TEMPLATES, GUARDRAILS_CATEGORIES, GUARDRAILS_TEMPLATES_JSON, getGuardrailsDefaultsByCategory, getGuardrailsTemplatesByCategory, getGuardrailsTemplateById, } from './guardrails-defaults.gen.js';
|
|
51
54
|
export { OVERWATCH_DEFAULTS, OVERWATCH_TEMPLATES, OVERWATCH_CATEGORIES, OVERWATCH_TEMPLATES_JSON, getOverwatchDefaultsByCategory, getOverwatchTemplatesByCategory, getOverwatchTemplateById, } from './overwatch-defaults.gen.js';
|