@highflame/policy 2.1.7 → 2.1.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.
Files changed (23) hide show
  1. package/_schemas/guardrails/context.json +78 -0
  2. package/_schemas/guardrails/schema.cedarschema +28 -1
  3. package/_schemas/guardrails/templates/profiles/a2a_security/cross_origin.cedar +105 -0
  4. package/_schemas/guardrails/templates/profiles/a2a_security/escalation_detection.cedar +113 -0
  5. package/_schemas/guardrails/templates/profiles/a2a_security/identity_enforcement.cedar +118 -0
  6. package/_schemas/guardrails/templates/profiles/a2a_security/inter_agent_injection.cedar +134 -0
  7. package/_schemas/guardrails/templates/profiles/a2a_security/supply_chain.cedar +117 -0
  8. package/_schemas/guardrails/templates/profiles/advanced_detection/pii.cedar +73 -0
  9. package/_schemas/guardrails/templates/profiles/advanced_detection/secrets.cedar +66 -0
  10. package/_schemas/guardrails/templates/profiles/advanced_detection/threat_severity.cedar +35 -0
  11. package/_schemas/guardrails/templates/profiles/code_agent/encoding.cedar +55 -0
  12. package/_schemas/guardrails/templates/profiles/code_agent/path_security.cedar +148 -0
  13. package/_schemas/guardrails/templates/profiles/code_agent/supply_chain.cedar +120 -0
  14. package/_schemas/guardrails/templates/templates.json +121 -6
  15. package/_schemas/overwatch/schema.cedarschema +6 -0
  16. package/dist/guardrails-context.gen.d.ts +5 -0
  17. package/dist/guardrails-context.gen.js +5 -0
  18. package/dist/guardrails-defaults.gen.js +1315 -6
  19. package/dist/overwatch-defaults.gen.d.ts +1 -1
  20. package/dist/overwatch-defaults.gen.js +508 -1206
  21. package/dist/service-schemas.gen.d.ts +2 -2
  22. package/dist/service-schemas.gen.js +47 -1
  23. package/package.json +1 -1
@@ -2,7 +2,7 @@
2
2
  * Overwatch policy category identifiers.
3
3
  * Maps to UI tab names in Studio.
4
4
  */
5
- export type OverwatchCategory = 'secrets' | 'pii' | 'semantic' | 'tools' | 'organization' | 'trust_safety' | 'agent_security' | 'encoding' | 'behavioral';
5
+ export type OverwatchCategory = 'secrets' | 'pii' | 'semantic' | 'tools' | 'organization';
6
6
  /**
7
7
  * Category metadata for UI display.
8
8
  */