@vorionsys/platform-core 0.1.0
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/LICENSE +190 -0
- package/README.md +88 -0
- package/dist/a2a/attestation.d.ts +145 -0
- package/dist/a2a/attestation.d.ts.map +1 -0
- package/dist/a2a/attestation.js +353 -0
- package/dist/a2a/attestation.js.map +1 -0
- package/dist/a2a/chain-of-trust.d.ts +143 -0
- package/dist/a2a/chain-of-trust.d.ts.map +1 -0
- package/dist/a2a/chain-of-trust.js +422 -0
- package/dist/a2a/chain-of-trust.js.map +1 -0
- package/dist/a2a/index.d.ts +15 -0
- package/dist/a2a/index.d.ts.map +1 -0
- package/dist/a2a/index.js +23 -0
- package/dist/a2a/index.js.map +1 -0
- package/dist/a2a/openapi.d.ts +22 -0
- package/dist/a2a/openapi.d.ts.map +1 -0
- package/dist/a2a/openapi.js +1133 -0
- package/dist/a2a/openapi.js.map +1 -0
- package/dist/a2a/router.d.ts +167 -0
- package/dist/a2a/router.d.ts.map +1 -0
- package/dist/a2a/router.js +454 -0
- package/dist/a2a/router.js.map +1 -0
- package/dist/a2a/routes.d.ts +11 -0
- package/dist/a2a/routes.d.ts.map +1 -0
- package/dist/a2a/routes.js +442 -0
- package/dist/a2a/routes.js.map +1 -0
- package/dist/a2a/trust-negotiation.d.ts +119 -0
- package/dist/a2a/trust-negotiation.d.ts.map +1 -0
- package/dist/a2a/trust-negotiation.js +425 -0
- package/dist/a2a/trust-negotiation.js.map +1 -0
- package/dist/a2a/types.d.ts +413 -0
- package/dist/a2a/types.d.ts.map +1 -0
- package/dist/a2a/types.js +38 -0
- package/dist/a2a/types.js.map +1 -0
- package/dist/agent-registry/a3i-cache.d.ts +113 -0
- package/dist/agent-registry/a3i-cache.d.ts.map +1 -0
- package/dist/agent-registry/a3i-cache.js +305 -0
- package/dist/agent-registry/a3i-cache.js.map +1 -0
- package/dist/agent-registry/index.d.ts +14 -0
- package/dist/agent-registry/index.d.ts.map +1 -0
- package/dist/agent-registry/index.js +17 -0
- package/dist/agent-registry/index.js.map +1 -0
- package/dist/agent-registry/openapi.d.ts +23 -0
- package/dist/agent-registry/openapi.d.ts.map +1 -0
- package/dist/agent-registry/openapi.js +1377 -0
- package/dist/agent-registry/openapi.js.map +1 -0
- package/dist/agent-registry/routes.d.ts +10 -0
- package/dist/agent-registry/routes.d.ts.map +1 -0
- package/dist/agent-registry/routes.js +485 -0
- package/dist/agent-registry/routes.js.map +1 -0
- package/dist/agent-registry/service.d.ts +159 -0
- package/dist/agent-registry/service.d.ts.map +1 -0
- package/dist/agent-registry/service.js +652 -0
- package/dist/agent-registry/service.js.map +1 -0
- package/dist/agent-registry/tenant-service.d.ts +104 -0
- package/dist/agent-registry/tenant-service.d.ts.map +1 -0
- package/dist/agent-registry/tenant-service.js +313 -0
- package/dist/agent-registry/tenant-service.js.map +1 -0
- package/dist/api/auth.d.ts +55 -0
- package/dist/api/auth.d.ts.map +1 -0
- package/dist/api/auth.js +322 -0
- package/dist/api/auth.js.map +1 -0
- package/dist/api/errors.d.ts +146 -0
- package/dist/api/errors.d.ts.map +1 -0
- package/dist/api/errors.js +464 -0
- package/dist/api/errors.js.map +1 -0
- package/dist/api/index.d.ts +15 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +19 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/middleware/api-key-enforcement.d.ts +131 -0
- package/dist/api/middleware/api-key-enforcement.d.ts.map +1 -0
- package/dist/api/middleware/api-key-enforcement.js +674 -0
- package/dist/api/middleware/api-key-enforcement.js.map +1 -0
- package/dist/api/middleware/audit.d.ts +151 -0
- package/dist/api/middleware/audit.d.ts.map +1 -0
- package/dist/api/middleware/audit.js +384 -0
- package/dist/api/middleware/audit.js.map +1 -0
- package/dist/api/middleware/dpop-enforcement.d.ts +176 -0
- package/dist/api/middleware/dpop-enforcement.d.ts.map +1 -0
- package/dist/api/middleware/dpop-enforcement.js +596 -0
- package/dist/api/middleware/dpop-enforcement.js.map +1 -0
- package/dist/api/middleware/index.d.ts +24 -0
- package/dist/api/middleware/index.d.ts.map +1 -0
- package/dist/api/middleware/index.js +43 -0
- package/dist/api/middleware/index.js.map +1 -0
- package/dist/api/middleware/metrics.d.ts +41 -0
- package/dist/api/middleware/metrics.d.ts.map +1 -0
- package/dist/api/middleware/metrics.js +150 -0
- package/dist/api/middleware/metrics.js.map +1 -0
- package/dist/api/middleware/rate-limits.d.ts +224 -0
- package/dist/api/middleware/rate-limits.d.ts.map +1 -0
- package/dist/api/middleware/rate-limits.js +686 -0
- package/dist/api/middleware/rate-limits.js.map +1 -0
- package/dist/api/middleware/rateLimit.d.ts +165 -0
- package/dist/api/middleware/rateLimit.d.ts.map +1 -0
- package/dist/api/middleware/rateLimit.js +477 -0
- package/dist/api/middleware/rateLimit.js.map +1 -0
- package/dist/api/middleware/redis-rate-limiter.d.ts +279 -0
- package/dist/api/middleware/redis-rate-limiter.d.ts.map +1 -0
- package/dist/api/middleware/redis-rate-limiter.js +1074 -0
- package/dist/api/middleware/redis-rate-limiter.js.map +1 -0
- package/dist/api/middleware/security-headers.d.ts +248 -0
- package/dist/api/middleware/security-headers.d.ts.map +1 -0
- package/dist/api/middleware/security-headers.js +410 -0
- package/dist/api/middleware/security-headers.js.map +1 -0
- package/dist/api/middleware/security.d.ts +156 -0
- package/dist/api/middleware/security.d.ts.map +1 -0
- package/dist/api/middleware/security.js +412 -0
- package/dist/api/middleware/security.js.map +1 -0
- package/dist/api/middleware/validation.d.ts +132 -0
- package/dist/api/middleware/validation.d.ts.map +1 -0
- package/dist/api/middleware/validation.js +363 -0
- package/dist/api/middleware/validation.js.map +1 -0
- package/dist/api/middleware/webhook-verify.d.ts +130 -0
- package/dist/api/middleware/webhook-verify.d.ts.map +1 -0
- package/dist/api/middleware/webhook-verify.js +366 -0
- package/dist/api/middleware/webhook-verify.js.map +1 -0
- package/dist/api/rate-limit.d.ts +115 -0
- package/dist/api/rate-limit.d.ts.map +1 -0
- package/dist/api/rate-limit.js +335 -0
- package/dist/api/rate-limit.js.map +1 -0
- package/dist/api/server.d.ts +37 -0
- package/dist/api/server.d.ts.map +1 -0
- package/dist/api/server.js +2086 -0
- package/dist/api/server.js.map +1 -0
- package/dist/api/validation.d.ts +243 -0
- package/dist/api/validation.d.ts.map +1 -0
- package/dist/api/validation.js +247 -0
- package/dist/api/validation.js.map +1 -0
- package/dist/audit/compliance-reporter.d.ts +271 -0
- package/dist/audit/compliance-reporter.d.ts.map +1 -0
- package/dist/audit/compliance-reporter.js +587 -0
- package/dist/audit/compliance-reporter.js.map +1 -0
- package/dist/audit/db-store.d.ts +689 -0
- package/dist/audit/db-store.d.ts.map +1 -0
- package/dist/audit/db-store.js +589 -0
- package/dist/audit/db-store.js.map +1 -0
- package/dist/audit/event-schema.d.ts +605 -0
- package/dist/audit/event-schema.d.ts.map +1 -0
- package/dist/audit/event-schema.js +566 -0
- package/dist/audit/event-schema.js.map +1 -0
- package/dist/audit/index.d.ts +16 -0
- package/dist/audit/index.d.ts.map +1 -0
- package/dist/audit/index.js +44 -0
- package/dist/audit/index.js.map +1 -0
- package/dist/audit/security-events.d.ts +1624 -0
- package/dist/audit/security-events.d.ts.map +1 -0
- package/dist/audit/security-events.js +775 -0
- package/dist/audit/security-events.js.map +1 -0
- package/dist/audit/security-logger.d.ts +288 -0
- package/dist/audit/security-logger.d.ts.map +1 -0
- package/dist/audit/security-logger.js +820 -0
- package/dist/audit/security-logger.js.map +1 -0
- package/dist/audit/service.d.ts +206 -0
- package/dist/audit/service.d.ts.map +1 -0
- package/dist/audit/service.js +756 -0
- package/dist/audit/service.js.map +1 -0
- package/dist/audit/siem/elastic.d.ts +94 -0
- package/dist/audit/siem/elastic.d.ts.map +1 -0
- package/dist/audit/siem/elastic.js +412 -0
- package/dist/audit/siem/elastic.js.map +1 -0
- package/dist/audit/siem/index.d.ts +179 -0
- package/dist/audit/siem/index.d.ts.map +1 -0
- package/dist/audit/siem/index.js +368 -0
- package/dist/audit/siem/index.js.map +1 -0
- package/dist/audit/siem/loki.d.ts +100 -0
- package/dist/audit/siem/loki.d.ts.map +1 -0
- package/dist/audit/siem/loki.js +406 -0
- package/dist/audit/siem/loki.js.map +1 -0
- package/dist/audit/siem/splunk.d.ts +91 -0
- package/dist/audit/siem/splunk.d.ts.map +1 -0
- package/dist/audit/siem/splunk.js +375 -0
- package/dist/audit/siem/splunk.js.map +1 -0
- package/dist/audit/siem/types.d.ts +547 -0
- package/dist/audit/siem/types.d.ts.map +1 -0
- package/dist/audit/siem/types.js +270 -0
- package/dist/audit/siem/types.js.map +1 -0
- package/dist/audit/types.d.ts +410 -0
- package/dist/audit/types.d.ts.map +1 -0
- package/dist/audit/types.js +130 -0
- package/dist/audit/types.js.map +1 -0
- package/dist/auth/index.d.ts +10 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +10 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/mfa/index.d.ts +9 -0
- package/dist/auth/mfa/index.d.ts.map +1 -0
- package/dist/auth/mfa/index.js +9 -0
- package/dist/auth/mfa/index.js.map +1 -0
- package/dist/auth/mfa/totp.d.ts +222 -0
- package/dist/auth/mfa/totp.d.ts.map +1 -0
- package/dist/auth/mfa/totp.js +329 -0
- package/dist/auth/mfa/totp.js.map +1 -0
- package/dist/auth/piv-cac/card-removal-handler.d.ts +197 -0
- package/dist/auth/piv-cac/card-removal-handler.d.ts.map +1 -0
- package/dist/auth/piv-cac/card-removal-handler.js +560 -0
- package/dist/auth/piv-cac/card-removal-handler.js.map +1 -0
- package/dist/auth/piv-cac/certificate-auth.d.ts +117 -0
- package/dist/auth/piv-cac/certificate-auth.d.ts.map +1 -0
- package/dist/auth/piv-cac/certificate-auth.js +727 -0
- package/dist/auth/piv-cac/certificate-auth.js.map +1 -0
- package/dist/auth/piv-cac/certificate-mapper.d.ts +141 -0
- package/dist/auth/piv-cac/certificate-mapper.d.ts.map +1 -0
- package/dist/auth/piv-cac/certificate-mapper.js +569 -0
- package/dist/auth/piv-cac/certificate-mapper.js.map +1 -0
- package/dist/auth/piv-cac/crl-validator.d.ts +195 -0
- package/dist/auth/piv-cac/crl-validator.d.ts.map +1 -0
- package/dist/auth/piv-cac/crl-validator.js +824 -0
- package/dist/auth/piv-cac/crl-validator.js.map +1 -0
- package/dist/auth/piv-cac/index.d.ts +72 -0
- package/dist/auth/piv-cac/index.d.ts.map +1 -0
- package/dist/auth/piv-cac/index.js +172 -0
- package/dist/auth/piv-cac/index.js.map +1 -0
- package/dist/auth/piv-cac/ocsp-validator.d.ts +183 -0
- package/dist/auth/piv-cac/ocsp-validator.d.ts.map +1 -0
- package/dist/auth/piv-cac/ocsp-validator.js +657 -0
- package/dist/auth/piv-cac/ocsp-validator.js.map +1 -0
- package/dist/auth/piv-cac/piv-middleware.d.ts +95 -0
- package/dist/auth/piv-cac/piv-middleware.d.ts.map +1 -0
- package/dist/auth/piv-cac/piv-middleware.js +524 -0
- package/dist/auth/piv-cac/piv-middleware.js.map +1 -0
- package/dist/auth/piv-cac/piv-routes.d.ts +29 -0
- package/dist/auth/piv-cac/piv-routes.d.ts.map +1 -0
- package/dist/auth/piv-cac/piv-routes.js +534 -0
- package/dist/auth/piv-cac/piv-routes.js.map +1 -0
- package/dist/auth/piv-cac/pkcs11-provider.d.ts +280 -0
- package/dist/auth/piv-cac/pkcs11-provider.d.ts.map +1 -0
- package/dist/auth/piv-cac/pkcs11-provider.js +535 -0
- package/dist/auth/piv-cac/pkcs11-provider.js.map +1 -0
- package/dist/auth/piv-cac/types.d.ts +4098 -0
- package/dist/auth/piv-cac/types.d.ts.map +1 -0
- package/dist/auth/piv-cac/types.js +495 -0
- package/dist/auth/piv-cac/types.js.map +1 -0
- package/dist/basis/evaluator.d.ts +72 -0
- package/dist/basis/evaluator.d.ts.map +1 -0
- package/dist/basis/evaluator.js +275 -0
- package/dist/basis/evaluator.js.map +1 -0
- package/dist/basis/expression-evaluator.d.ts +77 -0
- package/dist/basis/expression-evaluator.d.ts.map +1 -0
- package/dist/basis/expression-evaluator.js +826 -0
- package/dist/basis/expression-evaluator.js.map +1 -0
- package/dist/basis/index.d.ts +13 -0
- package/dist/basis/index.d.ts.map +1 -0
- package/dist/basis/index.js +13 -0
- package/dist/basis/index.js.map +1 -0
- package/dist/basis/parser.d.ts +376 -0
- package/dist/basis/parser.d.ts.map +1 -0
- package/dist/basis/parser.js +178 -0
- package/dist/basis/parser.js.map +1 -0
- package/dist/basis/types.d.ts +115 -0
- package/dist/basis/types.d.ts.map +1 -0
- package/dist/basis/types.js +5 -0
- package/dist/basis/types.js.map +1 -0
- package/dist/car-extensions/aci-string-extensions.d.ts +10 -0
- package/dist/car-extensions/aci-string-extensions.d.ts.map +1 -0
- package/dist/car-extensions/aci-string-extensions.js +24 -0
- package/dist/car-extensions/aci-string-extensions.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/audit.d.ts +88 -0
- package/dist/car-extensions/builtin-extensions/audit.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/audit.js +445 -0
- package/dist/car-extensions/builtin-extensions/audit.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/governance.d.ts +32 -0
- package/dist/car-extensions/builtin-extensions/governance.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/governance.js +534 -0
- package/dist/car-extensions/builtin-extensions/governance.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/monitoring.d.ts +43 -0
- package/dist/car-extensions/builtin-extensions/monitoring.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/monitoring.js +416 -0
- package/dist/car-extensions/builtin-extensions/monitoring.js.map +1 -0
- package/dist/car-extensions/car-string-extensions.d.ts +355 -0
- package/dist/car-extensions/car-string-extensions.d.ts.map +1 -0
- package/dist/car-extensions/car-string-extensions.js +473 -0
- package/dist/car-extensions/car-string-extensions.js.map +1 -0
- package/dist/car-extensions/executor.d.ts +208 -0
- package/dist/car-extensions/executor.d.ts.map +1 -0
- package/dist/car-extensions/executor.js +789 -0
- package/dist/car-extensions/executor.js.map +1 -0
- package/dist/car-extensions/index.d.ts +94 -0
- package/dist/car-extensions/index.d.ts.map +1 -0
- package/dist/car-extensions/index.js +159 -0
- package/dist/car-extensions/index.js.map +1 -0
- package/dist/car-extensions/registry.d.ts +217 -0
- package/dist/car-extensions/registry.d.ts.map +1 -0
- package/dist/car-extensions/registry.js +450 -0
- package/dist/car-extensions/registry.js.map +1 -0
- package/dist/car-extensions/service.d.ts +220 -0
- package/dist/car-extensions/service.d.ts.map +1 -0
- package/dist/car-extensions/service.js +486 -0
- package/dist/car-extensions/service.js.map +1 -0
- package/dist/car-extensions/types.d.ts +2269 -0
- package/dist/car-extensions/types.d.ts.map +1 -0
- package/dist/car-extensions/types.js +389 -0
- package/dist/car-extensions/types.js.map +1 -0
- package/dist/cognigate/index.d.ts +192 -0
- package/dist/cognigate/index.d.ts.map +1 -0
- package/dist/cognigate/index.js +435 -0
- package/dist/cognigate/index.js.map +1 -0
- package/dist/cognigate/sandbox/capability-broker.d.ts +166 -0
- package/dist/cognigate/sandbox/capability-broker.d.ts.map +1 -0
- package/dist/cognigate/sandbox/capability-broker.js +461 -0
- package/dist/cognigate/sandbox/capability-broker.js.map +1 -0
- package/dist/cognigate/sandbox/filesystem-policy.d.ts +139 -0
- package/dist/cognigate/sandbox/filesystem-policy.d.ts.map +1 -0
- package/dist/cognigate/sandbox/filesystem-policy.js +426 -0
- package/dist/cognigate/sandbox/filesystem-policy.js.map +1 -0
- package/dist/cognigate/sandbox/index.d.ts +17 -0
- package/dist/cognigate/sandbox/index.d.ts.map +1 -0
- package/dist/cognigate/sandbox/index.js +24 -0
- package/dist/cognigate/sandbox/index.js.map +1 -0
- package/dist/cognigate/sandbox/network-policy.d.ts +126 -0
- package/dist/cognigate/sandbox/network-policy.d.ts.map +1 -0
- package/dist/cognigate/sandbox/network-policy.js +382 -0
- package/dist/cognigate/sandbox/network-policy.js.map +1 -0
- package/dist/cognigate/sandbox/sandbox-service.d.ts +70 -0
- package/dist/cognigate/sandbox/sandbox-service.d.ts.map +1 -0
- package/dist/cognigate/sandbox/sandbox-service.js +472 -0
- package/dist/cognigate/sandbox/sandbox-service.js.map +1 -0
- package/dist/cognigate/sandbox/types.d.ts +376 -0
- package/dist/cognigate/sandbox/types.d.ts.map +1 -0
- package/dist/cognigate/sandbox/types.js +179 -0
- package/dist/cognigate/sandbox/types.js.map +1 -0
- package/dist/common/adapters/index.d.ts +34 -0
- package/dist/common/adapters/index.d.ts.map +1 -0
- package/dist/common/adapters/index.js +46 -0
- package/dist/common/adapters/index.js.map +1 -0
- package/dist/common/adapters/memory-cache.d.ts +91 -0
- package/dist/common/adapters/memory-cache.d.ts.map +1 -0
- package/dist/common/adapters/memory-cache.js +201 -0
- package/dist/common/adapters/memory-cache.js.map +1 -0
- package/dist/common/adapters/memory-lock.d.ts +75 -0
- package/dist/common/adapters/memory-lock.d.ts.map +1 -0
- package/dist/common/adapters/memory-lock.js +219 -0
- package/dist/common/adapters/memory-lock.js.map +1 -0
- package/dist/common/adapters/memory-queue.d.ts +64 -0
- package/dist/common/adapters/memory-queue.d.ts.map +1 -0
- package/dist/common/adapters/memory-queue.js +233 -0
- package/dist/common/adapters/memory-queue.js.map +1 -0
- package/dist/common/adapters/memory-ratelimit.d.ts +78 -0
- package/dist/common/adapters/memory-ratelimit.d.ts.map +1 -0
- package/dist/common/adapters/memory-ratelimit.js +196 -0
- package/dist/common/adapters/memory-ratelimit.js.map +1 -0
- package/dist/common/adapters/memory-session.d.ts +105 -0
- package/dist/common/adapters/memory-session.d.ts.map +1 -0
- package/dist/common/adapters/memory-session.js +302 -0
- package/dist/common/adapters/memory-session.js.map +1 -0
- package/dist/common/adapters/provider.d.ts +47 -0
- package/dist/common/adapters/provider.d.ts.map +1 -0
- package/dist/common/adapters/provider.js +347 -0
- package/dist/common/adapters/provider.js.map +1 -0
- package/dist/common/adapters/types.d.ts +247 -0
- package/dist/common/adapters/types.d.ts.map +1 -0
- package/dist/common/adapters/types.js +11 -0
- package/dist/common/adapters/types.js.map +1 -0
- package/dist/common/alerts.d.ts +57 -0
- package/dist/common/alerts.d.ts.map +1 -0
- package/dist/common/alerts.js +216 -0
- package/dist/common/alerts.js.map +1 -0
- package/dist/common/authorization.d.ts +137 -0
- package/dist/common/authorization.d.ts.map +1 -0
- package/dist/common/authorization.js +270 -0
- package/dist/common/authorization.js.map +1 -0
- package/dist/common/canonical-bridge.d.ts +153 -0
- package/dist/common/canonical-bridge.d.ts.map +1 -0
- package/dist/common/canonical-bridge.js +236 -0
- package/dist/common/canonical-bridge.js.map +1 -0
- package/dist/common/canonical-json.d.ts +64 -0
- package/dist/common/canonical-json.d.ts.map +1 -0
- package/dist/common/canonical-json.js +95 -0
- package/dist/common/canonical-json.js.map +1 -0
- package/dist/common/circuit-breaker.d.ts +320 -0
- package/dist/common/circuit-breaker.d.ts.map +1 -0
- package/dist/common/circuit-breaker.js +887 -0
- package/dist/common/circuit-breaker.js.map +1 -0
- package/dist/common/config.d.ts +2053 -0
- package/dist/common/config.d.ts.map +1 -0
- package/dist/common/config.js +1314 -0
- package/dist/common/config.js.map +1 -0
- package/dist/common/contracts/index.d.ts +2 -0
- package/dist/common/contracts/index.d.ts.map +1 -0
- package/dist/common/contracts/index.js +2 -0
- package/dist/common/contracts/index.js.map +1 -0
- package/dist/common/contracts/output.d.ts +81 -0
- package/dist/common/contracts/output.d.ts.map +1 -0
- package/dist/common/contracts/output.js +38 -0
- package/dist/common/contracts/output.js.map +1 -0
- package/dist/common/crypto-utils.d.ts +103 -0
- package/dist/common/crypto-utils.d.ts.map +1 -0
- package/dist/common/crypto-utils.js +275 -0
- package/dist/common/crypto-utils.js.map +1 -0
- package/dist/common/crypto.d.ts +70 -0
- package/dist/common/crypto.d.ts.map +1 -0
- package/dist/common/crypto.js +201 -0
- package/dist/common/crypto.js.map +1 -0
- package/dist/common/database-resilience.d.ts +156 -0
- package/dist/common/database-resilience.d.ts.map +1 -0
- package/dist/common/database-resilience.js +269 -0
- package/dist/common/database-resilience.js.map +1 -0
- package/dist/common/db-metrics.d.ts +90 -0
- package/dist/common/db-metrics.d.ts.map +1 -0
- package/dist/common/db-metrics.js +219 -0
- package/dist/common/db-metrics.js.map +1 -0
- package/dist/common/db-pool.d.ts +307 -0
- package/dist/common/db-pool.d.ts.map +1 -0
- package/dist/common/db-pool.js +879 -0
- package/dist/common/db-pool.js.map +1 -0
- package/dist/common/db.d.ts +105 -0
- package/dist/common/db.d.ts.map +1 -0
- package/dist/common/db.js +216 -0
- package/dist/common/db.js.map +1 -0
- package/dist/common/debug-auth-middleware.d.ts +111 -0
- package/dist/common/debug-auth-middleware.d.ts.map +1 -0
- package/dist/common/debug-auth-middleware.js +285 -0
- package/dist/common/debug-auth-middleware.js.map +1 -0
- package/dist/common/di.d.ts +202 -0
- package/dist/common/di.d.ts.map +1 -0
- package/dist/common/di.js +219 -0
- package/dist/common/di.js.map +1 -0
- package/dist/common/encryption.d.ts +233 -0
- package/dist/common/encryption.d.ts.map +1 -0
- package/dist/common/encryption.js +527 -0
- package/dist/common/encryption.js.map +1 -0
- package/dist/common/error-sanitizer.d.ts +67 -0
- package/dist/common/error-sanitizer.d.ts.map +1 -0
- package/dist/common/error-sanitizer.js +298 -0
- package/dist/common/error-sanitizer.js.map +1 -0
- package/dist/common/errors.d.ts +229 -0
- package/dist/common/errors.d.ts.map +1 -0
- package/dist/common/errors.js +349 -0
- package/dist/common/errors.js.map +1 -0
- package/dist/common/expression/evaluator.d.ts +58 -0
- package/dist/common/expression/evaluator.d.ts.map +1 -0
- package/dist/common/expression/evaluator.js +326 -0
- package/dist/common/expression/evaluator.js.map +1 -0
- package/dist/common/expression/index.d.ts +180 -0
- package/dist/common/expression/index.d.ts.map +1 -0
- package/dist/common/expression/index.js +198 -0
- package/dist/common/expression/index.js.map +1 -0
- package/dist/common/expression/lexer.d.ts +69 -0
- package/dist/common/expression/lexer.d.ts.map +1 -0
- package/dist/common/expression/lexer.js +255 -0
- package/dist/common/expression/lexer.js.map +1 -0
- package/dist/common/expression/parser.d.ts +133 -0
- package/dist/common/expression/parser.d.ts.map +1 -0
- package/dist/common/expression/parser.js +293 -0
- package/dist/common/expression/parser.js.map +1 -0
- package/dist/common/group-membership.d.ts +119 -0
- package/dist/common/group-membership.d.ts.map +1 -0
- package/dist/common/group-membership.js +250 -0
- package/dist/common/group-membership.js.map +1 -0
- package/dist/common/index.d.ts +14 -0
- package/dist/common/index.d.ts.map +1 -0
- package/dist/common/index.js +15 -0
- package/dist/common/index.js.map +1 -0
- package/dist/common/leader-election.d.ts +40 -0
- package/dist/common/leader-election.d.ts.map +1 -0
- package/dist/common/leader-election.js +232 -0
- package/dist/common/leader-election.js.map +1 -0
- package/dist/common/lock.d.ts +77 -0
- package/dist/common/lock.d.ts.map +1 -0
- package/dist/common/lock.js +167 -0
- package/dist/common/lock.js.map +1 -0
- package/dist/common/logger.d.ts +19 -0
- package/dist/common/logger.d.ts.map +1 -0
- package/dist/common/logger.js +80 -0
- package/dist/common/logger.js.map +1 -0
- package/dist/common/metrics-registry.d.ts +48 -0
- package/dist/common/metrics-registry.d.ts.map +1 -0
- package/dist/common/metrics-registry.js +77 -0
- package/dist/common/metrics-registry.js.map +1 -0
- package/dist/common/metrics.d.ts +204 -0
- package/dist/common/metrics.d.ts.map +1 -0
- package/dist/common/metrics.js +497 -0
- package/dist/common/metrics.js.map +1 -0
- package/dist/common/operation-tracker.d.ts +137 -0
- package/dist/common/operation-tracker.d.ts.map +1 -0
- package/dist/common/operation-tracker.js +366 -0
- package/dist/common/operation-tracker.js.map +1 -0
- package/dist/common/provenance/chain.d.ts +54 -0
- package/dist/common/provenance/chain.d.ts.map +1 -0
- package/dist/common/provenance/chain.js +252 -0
- package/dist/common/provenance/chain.js.map +1 -0
- package/dist/common/provenance/index.d.ts +14 -0
- package/dist/common/provenance/index.d.ts.map +1 -0
- package/dist/common/provenance/index.js +19 -0
- package/dist/common/provenance/index.js.map +1 -0
- package/dist/common/provenance/query.d.ts +111 -0
- package/dist/common/provenance/query.d.ts.map +1 -0
- package/dist/common/provenance/query.js +310 -0
- package/dist/common/provenance/query.js.map +1 -0
- package/dist/common/provenance/storage.d.ts +297 -0
- package/dist/common/provenance/storage.d.ts.map +1 -0
- package/dist/common/provenance/storage.js +436 -0
- package/dist/common/provenance/storage.js.map +1 -0
- package/dist/common/provenance/tracker.d.ts +57 -0
- package/dist/common/provenance/tracker.d.ts.map +1 -0
- package/dist/common/provenance/tracker.js +209 -0
- package/dist/common/provenance/tracker.js.map +1 -0
- package/dist/common/provenance/types.d.ts +146 -0
- package/dist/common/provenance/types.d.ts.map +1 -0
- package/dist/common/provenance/types.js +10 -0
- package/dist/common/provenance/types.js.map +1 -0
- package/dist/common/random.d.ts +84 -0
- package/dist/common/random.d.ts.map +1 -0
- package/dist/common/random.js +130 -0
- package/dist/common/random.js.map +1 -0
- package/dist/common/redaction.d.ts +49 -0
- package/dist/common/redaction.d.ts.map +1 -0
- package/dist/common/redaction.js +217 -0
- package/dist/common/redaction.js.map +1 -0
- package/dist/common/redis-cluster.d.ts +538 -0
- package/dist/common/redis-cluster.d.ts.map +1 -0
- package/dist/common/redis-cluster.js +1539 -0
- package/dist/common/redis-cluster.js.map +1 -0
- package/dist/common/redis-resilience.d.ts +270 -0
- package/dist/common/redis-resilience.d.ts.map +1 -0
- package/dist/common/redis-resilience.js +586 -0
- package/dist/common/redis-resilience.js.map +1 -0
- package/dist/common/redis.d.ts +19 -0
- package/dist/common/redis.d.ts.map +1 -0
- package/dist/common/redis.js +73 -0
- package/dist/common/redis.js.map +1 -0
- package/dist/common/safe-json.d.ts +246 -0
- package/dist/common/safe-json.d.ts.map +1 -0
- package/dist/common/safe-json.js +442 -0
- package/dist/common/safe-json.js.map +1 -0
- package/dist/common/secret-generator.d.ts +142 -0
- package/dist/common/secret-generator.d.ts.map +1 -0
- package/dist/common/secret-generator.js +286 -0
- package/dist/common/secret-generator.js.map +1 -0
- package/dist/common/secure-fetch.d.ts +182 -0
- package/dist/common/secure-fetch.d.ts.map +1 -0
- package/dist/common/secure-fetch.js +657 -0
- package/dist/common/secure-fetch.js.map +1 -0
- package/dist/common/security-mode.d.ts +151 -0
- package/dist/common/security-mode.d.ts.map +1 -0
- package/dist/common/security-mode.js +482 -0
- package/dist/common/security-mode.js.map +1 -0
- package/dist/common/telemetry/index.d.ts +82 -0
- package/dist/common/telemetry/index.d.ts.map +1 -0
- package/dist/common/telemetry/index.js +198 -0
- package/dist/common/telemetry/index.js.map +1 -0
- package/dist/common/telemetry/instrumentation.d.ts +167 -0
- package/dist/common/telemetry/instrumentation.d.ts.map +1 -0
- package/dist/common/telemetry/instrumentation.js +492 -0
- package/dist/common/telemetry/instrumentation.js.map +1 -0
- package/dist/common/telemetry/metrics-bridge.d.ts +227 -0
- package/dist/common/telemetry/metrics-bridge.d.ts.map +1 -0
- package/dist/common/telemetry/metrics-bridge.js +437 -0
- package/dist/common/telemetry/metrics-bridge.js.map +1 -0
- package/dist/common/telemetry/middleware.d.ts +114 -0
- package/dist/common/telemetry/middleware.d.ts.map +1 -0
- package/dist/common/telemetry/middleware.js +353 -0
- package/dist/common/telemetry/middleware.js.map +1 -0
- package/dist/common/telemetry/propagation.d.ts +221 -0
- package/dist/common/telemetry/propagation.d.ts.map +1 -0
- package/dist/common/telemetry/propagation.js +409 -0
- package/dist/common/telemetry/propagation.js.map +1 -0
- package/dist/common/telemetry/spans.d.ts +295 -0
- package/dist/common/telemetry/spans.d.ts.map +1 -0
- package/dist/common/telemetry/spans.js +439 -0
- package/dist/common/telemetry/spans.js.map +1 -0
- package/dist/common/telemetry/tracer.d.ts +155 -0
- package/dist/common/telemetry/tracer.d.ts.map +1 -0
- package/dist/common/telemetry/tracer.js +343 -0
- package/dist/common/telemetry/tracer.js.map +1 -0
- package/dist/common/telemetry.d.ts +15 -0
- package/dist/common/telemetry.d.ts.map +1 -0
- package/dist/common/telemetry.js +61 -0
- package/dist/common/telemetry.js.map +1 -0
- package/dist/common/tenant-context.d.ts +253 -0
- package/dist/common/tenant-context.d.ts.map +1 -0
- package/dist/common/tenant-context.js +259 -0
- package/dist/common/tenant-context.js.map +1 -0
- package/dist/common/tenant-verification.d.ts +86 -0
- package/dist/common/tenant-verification.d.ts.map +1 -0
- package/dist/common/tenant-verification.js +184 -0
- package/dist/common/tenant-verification.js.map +1 -0
- package/dist/common/timeout.d.ts +40 -0
- package/dist/common/timeout.d.ts.map +1 -0
- package/dist/common/timeout.js +82 -0
- package/dist/common/timeout.js.map +1 -0
- package/dist/common/token-revocation.d.ts +44 -0
- package/dist/common/token-revocation.d.ts.map +1 -0
- package/dist/common/token-revocation.js +169 -0
- package/dist/common/token-revocation.js.map +1 -0
- package/dist/common/trace.d.ts +149 -0
- package/dist/common/trace.d.ts.map +1 -0
- package/dist/common/trace.js +328 -0
- package/dist/common/trace.js.map +1 -0
- package/dist/common/trust-cache.d.ts +263 -0
- package/dist/common/trust-cache.d.ts.map +1 -0
- package/dist/common/trust-cache.js +670 -0
- package/dist/common/trust-cache.js.map +1 -0
- package/dist/common/types.d.ts +351 -0
- package/dist/common/types.d.ts.map +1 -0
- package/dist/common/types.js +55 -0
- package/dist/common/types.js.map +1 -0
- package/dist/common/validation.d.ts +113 -0
- package/dist/common/validation.d.ts.map +1 -0
- package/dist/common/validation.js +221 -0
- package/dist/common/validation.js.map +1 -0
- package/dist/db/client.d.ts +72 -0
- package/dist/db/client.d.ts.map +1 -0
- package/dist/db/client.js +110 -0
- package/dist/db/client.js.map +1 -0
- package/dist/db/index.d.ts +9 -0
- package/dist/db/index.d.ts.map +1 -0
- package/dist/db/index.js +9 -0
- package/dist/db/index.js.map +1 -0
- package/dist/db/schema/merkle.d.ts +475 -0
- package/dist/db/schema/merkle.d.ts.map +1 -0
- package/dist/db/schema/merkle.js +100 -0
- package/dist/db/schema/merkle.js.map +1 -0
- package/dist/db/schema/proofs.d.ts +412 -0
- package/dist/db/schema/proofs.d.ts.map +1 -0
- package/dist/db/schema/proofs.js +63 -0
- package/dist/db/schema/proofs.js.map +1 -0
- package/dist/enforce/adapters.d.ts +73 -0
- package/dist/enforce/adapters.d.ts.map +1 -0
- package/dist/enforce/adapters.js +293 -0
- package/dist/enforce/adapters.js.map +1 -0
- package/dist/enforce/index.d.ts +213 -0
- package/dist/enforce/index.d.ts.map +1 -0
- package/dist/enforce/index.js +630 -0
- package/dist/enforce/index.js.map +1 -0
- package/dist/enforce/repository.d.ts +203 -0
- package/dist/enforce/repository.d.ts.map +1 -0
- package/dist/enforce/repository.js +359 -0
- package/dist/enforce/repository.js.map +1 -0
- package/dist/enforce/schema.d.ts +1198 -0
- package/dist/enforce/schema.d.ts.map +1 -0
- package/dist/enforce/schema.js +257 -0
- package/dist/enforce/schema.js.map +1 -0
- package/dist/friction/index.d.ts +235 -0
- package/dist/friction/index.d.ts.map +1 -0
- package/dist/friction/index.js +636 -0
- package/dist/friction/index.js.map +1 -0
- package/dist/friction/openapi.d.ts +23 -0
- package/dist/friction/openapi.d.ts.map +1 -0
- package/dist/friction/openapi.js +883 -0
- package/dist/friction/openapi.js.map +1 -0
- package/dist/friction/routes.d.ts +14 -0
- package/dist/friction/routes.d.ts.map +1 -0
- package/dist/friction/routes.js +206 -0
- package/dist/friction/routes.js.map +1 -0
- package/dist/governance/engine.d.ts +158 -0
- package/dist/governance/engine.d.ts.map +1 -0
- package/dist/governance/engine.js +248 -0
- package/dist/governance/engine.js.map +1 -0
- package/dist/governance/evaluator.d.ts +106 -0
- package/dist/governance/evaluator.d.ts.map +1 -0
- package/dist/governance/evaluator.js +277 -0
- package/dist/governance/evaluator.js.map +1 -0
- package/dist/governance/index.d.ts +11 -0
- package/dist/governance/index.d.ts.map +1 -0
- package/dist/governance/index.js +14 -0
- package/dist/governance/index.js.map +1 -0
- package/dist/governance/policy.d.ts +152 -0
- package/dist/governance/policy.d.ts.map +1 -0
- package/dist/governance/policy.js +152 -0
- package/dist/governance/policy.js.map +1 -0
- package/dist/index.d.ts +50 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +61 -0
- package/dist/index.js.map +1 -0
- package/dist/intent/adapters.d.ts +101 -0
- package/dist/intent/adapters.d.ts.map +1 -0
- package/dist/intent/adapters.js +250 -0
- package/dist/intent/adapters.js.map +1 -0
- package/dist/intent/audit.d.ts +119 -0
- package/dist/intent/audit.d.ts.map +1 -0
- package/dist/intent/audit.js +463 -0
- package/dist/intent/audit.js.map +1 -0
- package/dist/intent/classifier/index.d.ts +121 -0
- package/dist/intent/classifier/index.d.ts.map +1 -0
- package/dist/intent/classifier/index.js +232 -0
- package/dist/intent/classifier/index.js.map +1 -0
- package/dist/intent/classifier/patterns.d.ts +129 -0
- package/dist/intent/classifier/patterns.d.ts.map +1 -0
- package/dist/intent/classifier/patterns.js +471 -0
- package/dist/intent/classifier/patterns.js.map +1 -0
- package/dist/intent/classifier/risk.d.ts +177 -0
- package/dist/intent/classifier/risk.d.ts.map +1 -0
- package/dist/intent/classifier/risk.js +335 -0
- package/dist/intent/classifier/risk.js.map +1 -0
- package/dist/intent/cleanup.d.ts +24 -0
- package/dist/intent/cleanup.d.ts.map +1 -0
- package/dist/intent/cleanup.js +104 -0
- package/dist/intent/cleanup.js.map +1 -0
- package/dist/intent/consent.d.ts +238 -0
- package/dist/intent/consent.d.ts.map +1 -0
- package/dist/intent/consent.js +427 -0
- package/dist/intent/consent.js.map +1 -0
- package/dist/intent/escalation.d.ts +284 -0
- package/dist/intent/escalation.d.ts.map +1 -0
- package/dist/intent/escalation.js +618 -0
- package/dist/intent/escalation.js.map +1 -0
- package/dist/intent/gdpr-rate-limiter.d.ts +170 -0
- package/dist/intent/gdpr-rate-limiter.d.ts.map +1 -0
- package/dist/intent/gdpr-rate-limiter.js +385 -0
- package/dist/intent/gdpr-rate-limiter.js.map +1 -0
- package/dist/intent/gdpr.d.ts +323 -0
- package/dist/intent/gdpr.d.ts.map +1 -0
- package/dist/intent/gdpr.js +1013 -0
- package/dist/intent/gdpr.js.map +1 -0
- package/dist/intent/health.d.ts +214 -0
- package/dist/intent/health.d.ts.map +1 -0
- package/dist/intent/health.js +526 -0
- package/dist/intent/health.js.map +1 -0
- package/dist/intent/index.d.ts +565 -0
- package/dist/intent/index.d.ts.map +1 -0
- package/dist/intent/index.js +756 -0
- package/dist/intent/index.js.map +1 -0
- package/dist/intent/metrics.d.ts +399 -0
- package/dist/intent/metrics.d.ts.map +1 -0
- package/dist/intent/metrics.js +886 -0
- package/dist/intent/metrics.js.map +1 -0
- package/dist/intent/openapi.d.ts +22 -0
- package/dist/intent/openapi.d.ts.map +1 -0
- package/dist/intent/openapi.js +1674 -0
- package/dist/intent/openapi.js.map +1 -0
- package/dist/intent/planner/dependency.d.ts +78 -0
- package/dist/intent/planner/dependency.d.ts.map +1 -0
- package/dist/intent/planner/dependency.js +334 -0
- package/dist/intent/planner/dependency.js.map +1 -0
- package/dist/intent/planner/index.d.ts +130 -0
- package/dist/intent/planner/index.d.ts.map +1 -0
- package/dist/intent/planner/index.js +372 -0
- package/dist/intent/planner/index.js.map +1 -0
- package/dist/intent/planner/rollback.d.ts +92 -0
- package/dist/intent/planner/rollback.d.ts.map +1 -0
- package/dist/intent/planner/rollback.js +326 -0
- package/dist/intent/planner/rollback.js.map +1 -0
- package/dist/intent/planner/templates.d.ts +81 -0
- package/dist/intent/planner/templates.d.ts.map +1 -0
- package/dist/intent/planner/templates.js +560 -0
- package/dist/intent/planner/templates.js.map +1 -0
- package/dist/intent/planner/types.d.ts +38 -0
- package/dist/intent/planner/types.d.ts.map +1 -0
- package/dist/intent/planner/types.js +10 -0
- package/dist/intent/planner/types.js.map +1 -0
- package/dist/intent/queue.d.ts +150 -0
- package/dist/intent/queue.d.ts.map +1 -0
- package/dist/intent/queue.js +339 -0
- package/dist/intent/queue.js.map +1 -0
- package/dist/intent/queues.d.ts +176 -0
- package/dist/intent/queues.d.ts.map +1 -0
- package/dist/intent/queues.js +1393 -0
- package/dist/intent/queues.js.map +1 -0
- package/dist/intent/ratelimit.d.ts +147 -0
- package/dist/intent/ratelimit.d.ts.map +1 -0
- package/dist/intent/ratelimit.js +301 -0
- package/dist/intent/ratelimit.js.map +1 -0
- package/dist/intent/replay/comparator.d.ts +73 -0
- package/dist/intent/replay/comparator.d.ts.map +1 -0
- package/dist/intent/replay/comparator.js +320 -0
- package/dist/intent/replay/comparator.js.map +1 -0
- package/dist/intent/replay/index.d.ts +104 -0
- package/dist/intent/replay/index.d.ts.map +1 -0
- package/dist/intent/replay/index.js +487 -0
- package/dist/intent/replay/index.js.map +1 -0
- package/dist/intent/replay/simulator.d.ts +184 -0
- package/dist/intent/replay/simulator.d.ts.map +1 -0
- package/dist/intent/replay/simulator.js +512 -0
- package/dist/intent/replay/simulator.js.map +1 -0
- package/dist/intent/replay/snapshot.d.ts +149 -0
- package/dist/intent/replay/snapshot.d.ts.map +1 -0
- package/dist/intent/replay/snapshot.js +245 -0
- package/dist/intent/replay/snapshot.js.map +1 -0
- package/dist/intent/replay/types.d.ts +143 -0
- package/dist/intent/replay/types.d.ts.map +1 -0
- package/dist/intent/replay/types.js +10 -0
- package/dist/intent/replay/types.js.map +1 -0
- package/dist/intent/repository.d.ts +198 -0
- package/dist/intent/repository.d.ts.map +1 -0
- package/dist/intent/repository.js +538 -0
- package/dist/intent/repository.js.map +1 -0
- package/dist/intent/response-middleware.d.ts +156 -0
- package/dist/intent/response-middleware.d.ts.map +1 -0
- package/dist/intent/response-middleware.js +346 -0
- package/dist/intent/response-middleware.js.map +1 -0
- package/dist/intent/response.d.ts +267 -0
- package/dist/intent/response.d.ts.map +1 -0
- package/dist/intent/response.js +402 -0
- package/dist/intent/response.js.map +1 -0
- package/dist/intent/routes.d.ts +35 -0
- package/dist/intent/routes.d.ts.map +1 -0
- package/dist/intent/routes.js +1023 -0
- package/dist/intent/routes.js.map +1 -0
- package/dist/intent/scheduler.d.ts +45 -0
- package/dist/intent/scheduler.d.ts.map +1 -0
- package/dist/intent/scheduler.js +221 -0
- package/dist/intent/scheduler.js.map +1 -0
- package/dist/intent/schema.d.ts +3817 -0
- package/dist/intent/schema.d.ts.map +1 -0
- package/dist/intent/schema.js +631 -0
- package/dist/intent/schema.js.map +1 -0
- package/dist/intent/shutdown.d.ts +145 -0
- package/dist/intent/shutdown.d.ts.map +1 -0
- package/dist/intent/shutdown.js +468 -0
- package/dist/intent/shutdown.js.map +1 -0
- package/dist/intent/state-machine.d.ts +111 -0
- package/dist/intent/state-machine.d.ts.map +1 -0
- package/dist/intent/state-machine.js +242 -0
- package/dist/intent/state-machine.js.map +1 -0
- package/dist/intent/tracing.d.ts +152 -0
- package/dist/intent/tracing.d.ts.map +1 -0
- package/dist/intent/tracing.js +658 -0
- package/dist/intent/tracing.js.map +1 -0
- package/dist/intent/types.d.ts +188 -0
- package/dist/intent/types.d.ts.map +1 -0
- package/dist/intent/types.js +25 -0
- package/dist/intent/types.js.map +1 -0
- package/dist/intent/webhooks/delivery-repository.d.ts +80 -0
- package/dist/intent/webhooks/delivery-repository.d.ts.map +1 -0
- package/dist/intent/webhooks/delivery-repository.js +251 -0
- package/dist/intent/webhooks/delivery-repository.js.map +1 -0
- package/dist/intent/webhooks/dns-pinning.d.ts +30 -0
- package/dist/intent/webhooks/dns-pinning.d.ts.map +1 -0
- package/dist/intent/webhooks/dns-pinning.js +69 -0
- package/dist/intent/webhooks/dns-pinning.js.map +1 -0
- package/dist/intent/webhooks/index.d.ts +14 -0
- package/dist/intent/webhooks/index.d.ts.map +1 -0
- package/dist/intent/webhooks/index.js +17 -0
- package/dist/intent/webhooks/index.js.map +1 -0
- package/dist/intent/webhooks/signature.d.ts +47 -0
- package/dist/intent/webhooks/signature.d.ts.map +1 -0
- package/dist/intent/webhooks/signature.js +80 -0
- package/dist/intent/webhooks/signature.js.map +1 -0
- package/dist/intent/webhooks/ssrf-protection.d.ts +29 -0
- package/dist/intent/webhooks/ssrf-protection.d.ts.map +1 -0
- package/dist/intent/webhooks/ssrf-protection.js +161 -0
- package/dist/intent/webhooks/ssrf-protection.js.map +1 -0
- package/dist/intent/webhooks/types.d.ts +132 -0
- package/dist/intent/webhooks/types.d.ts.map +1 -0
- package/dist/intent/webhooks/types.js +14 -0
- package/dist/intent/webhooks/types.js.map +1 -0
- package/dist/intent/webhooks.d.ts +618 -0
- package/dist/intent/webhooks.d.ts.map +1 -0
- package/dist/intent/webhooks.js +1836 -0
- package/dist/intent/webhooks.js.map +1 -0
- package/dist/intent-gateway/ai-act-classifier.d.ts +18 -0
- package/dist/intent-gateway/ai-act-classifier.d.ts.map +1 -0
- package/dist/intent-gateway/ai-act-classifier.js +296 -0
- package/dist/intent-gateway/ai-act-classifier.js.map +1 -0
- package/dist/intent-gateway/index.d.ts +43 -0
- package/dist/intent-gateway/index.d.ts.map +1 -0
- package/dist/intent-gateway/index.js +236 -0
- package/dist/intent-gateway/index.js.map +1 -0
- package/dist/intent-gateway/jurisdiction-resolver.d.ts +19 -0
- package/dist/intent-gateway/jurisdiction-resolver.d.ts.map +1 -0
- package/dist/intent-gateway/jurisdiction-resolver.js +236 -0
- package/dist/intent-gateway/jurisdiction-resolver.js.map +1 -0
- package/dist/intent-gateway/policy-composer.d.ts +27 -0
- package/dist/intent-gateway/policy-composer.d.ts.map +1 -0
- package/dist/intent-gateway/policy-composer.js +418 -0
- package/dist/intent-gateway/policy-composer.js.map +1 -0
- package/dist/intent-gateway/regime-selector.d.ts +26 -0
- package/dist/intent-gateway/regime-selector.d.ts.map +1 -0
- package/dist/intent-gateway/regime-selector.js +185 -0
- package/dist/intent-gateway/regime-selector.js.map +1 -0
- package/dist/intent-gateway/types.d.ts +103 -0
- package/dist/intent-gateway/types.d.ts.map +1 -0
- package/dist/intent-gateway/types.js +85 -0
- package/dist/intent-gateway/types.js.map +1 -0
- package/dist/observability/alerts.d.ts +136 -0
- package/dist/observability/alerts.d.ts.map +1 -0
- package/dist/observability/alerts.js +485 -0
- package/dist/observability/alerts.js.map +1 -0
- package/dist/observability/health.d.ts +102 -0
- package/dist/observability/health.d.ts.map +1 -0
- package/dist/observability/health.js +415 -0
- package/dist/observability/health.js.map +1 -0
- package/dist/observability/index.d.ts +29 -0
- package/dist/observability/index.d.ts.map +1 -0
- package/dist/observability/index.js +72 -0
- package/dist/observability/index.js.map +1 -0
- package/dist/observability/logging.d.ts +90 -0
- package/dist/observability/logging.d.ts.map +1 -0
- package/dist/observability/logging.js +260 -0
- package/dist/observability/logging.js.map +1 -0
- package/dist/observability/metrics.d.ts +226 -0
- package/dist/observability/metrics.d.ts.map +1 -0
- package/dist/observability/metrics.js +527 -0
- package/dist/observability/metrics.js.map +1 -0
- package/dist/observability/tracing.d.ts +120 -0
- package/dist/observability/tracing.d.ts.map +1 -0
- package/dist/observability/tracing.js +285 -0
- package/dist/observability/tracing.js.map +1 -0
- package/dist/persistence/audit.d.ts +169 -0
- package/dist/persistence/audit.d.ts.map +1 -0
- package/dist/persistence/audit.js +342 -0
- package/dist/persistence/audit.js.map +1 -0
- package/dist/persistence/index.d.ts +13 -0
- package/dist/persistence/index.d.ts.map +1 -0
- package/dist/persistence/index.js +15 -0
- package/dist/persistence/index.js.map +1 -0
- package/dist/persistence/repository.d.ts +192 -0
- package/dist/persistence/repository.d.ts.map +1 -0
- package/dist/persistence/repository.js +223 -0
- package/dist/persistence/repository.js.map +1 -0
- package/dist/policy/diff.d.ts +88 -0
- package/dist/policy/diff.d.ts.map +1 -0
- package/dist/policy/diff.js +325 -0
- package/dist/policy/diff.js.map +1 -0
- package/dist/policy/distributed-cache.d.ts +205 -0
- package/dist/policy/distributed-cache.d.ts.map +1 -0
- package/dist/policy/distributed-cache.js +683 -0
- package/dist/policy/distributed-cache.js.map +1 -0
- package/dist/policy/evaluator.d.ts +102 -0
- package/dist/policy/evaluator.d.ts.map +1 -0
- package/dist/policy/evaluator.js +648 -0
- package/dist/policy/evaluator.js.map +1 -0
- package/dist/policy/index.d.ts +24 -0
- package/dist/policy/index.d.ts.map +1 -0
- package/dist/policy/index.js +27 -0
- package/dist/policy/index.js.map +1 -0
- package/dist/policy/loader.d.ts +63 -0
- package/dist/policy/loader.d.ts.map +1 -0
- package/dist/policy/loader.js +176 -0
- package/dist/policy/loader.js.map +1 -0
- package/dist/policy/service.d.ts +240 -0
- package/dist/policy/service.d.ts.map +1 -0
- package/dist/policy/service.js +1032 -0
- package/dist/policy/service.js.map +1 -0
- package/dist/policy/types.d.ts +220 -0
- package/dist/policy/types.d.ts.map +1 -0
- package/dist/policy/types.js +36 -0
- package/dist/policy/types.js.map +1 -0
- package/dist/policy/visual-builder/index.d.ts +201 -0
- package/dist/policy/visual-builder/index.d.ts.map +1 -0
- package/dist/policy/visual-builder/index.js +727 -0
- package/dist/policy/visual-builder/index.js.map +1 -0
- package/dist/policy/visual-builder/inheritance.d.ts +151 -0
- package/dist/policy/visual-builder/inheritance.d.ts.map +1 -0
- package/dist/policy/visual-builder/inheritance.js +314 -0
- package/dist/policy/visual-builder/inheritance.js.map +1 -0
- package/dist/policy/visual-builder/propagation.d.ts +146 -0
- package/dist/policy/visual-builder/propagation.d.ts.map +1 -0
- package/dist/policy/visual-builder/propagation.js +299 -0
- package/dist/policy/visual-builder/propagation.js.map +1 -0
- package/dist/policy/visual-builder/routes.d.ts +14 -0
- package/dist/policy/visual-builder/routes.d.ts.map +1 -0
- package/dist/policy/visual-builder/routes.js +528 -0
- package/dist/policy/visual-builder/routes.js.map +1 -0
- package/dist/policy/visual-builder/simulator.d.ts +161 -0
- package/dist/policy/visual-builder/simulator.d.ts.map +1 -0
- package/dist/policy/visual-builder/simulator.js +413 -0
- package/dist/policy/visual-builder/simulator.js.map +1 -0
- package/dist/policy/visual-builder/templates.d.ts +119 -0
- package/dist/policy/visual-builder/templates.d.ts.map +1 -0
- package/dist/policy/visual-builder/templates.js +627 -0
- package/dist/policy/visual-builder/templates.js.map +1 -0
- package/dist/proof/chain/index.d.ts +271 -0
- package/dist/proof/chain/index.d.ts.map +1 -0
- package/dist/proof/chain/index.js +483 -0
- package/dist/proof/chain/index.js.map +1 -0
- package/dist/proof/index.d.ts +206 -0
- package/dist/proof/index.d.ts.map +1 -0
- package/dist/proof/index.js +597 -0
- package/dist/proof/index.js.map +1 -0
- package/dist/proof/merkle-service.d.ts +194 -0
- package/dist/proof/merkle-service.d.ts.map +1 -0
- package/dist/proof/merkle-service.js +463 -0
- package/dist/proof/merkle-service.js.map +1 -0
- package/dist/proof/merkle.d.ts +118 -0
- package/dist/proof/merkle.d.ts.map +1 -0
- package/dist/proof/merkle.js +265 -0
- package/dist/proof/merkle.js.map +1 -0
- package/dist/security/ai-governance/access-policy.d.ts +197 -0
- package/dist/security/ai-governance/access-policy.d.ts.map +1 -0
- package/dist/security/ai-governance/access-policy.js +522 -0
- package/dist/security/ai-governance/access-policy.js.map +1 -0
- package/dist/security/ai-governance/audit-trail.d.ts +241 -0
- package/dist/security/ai-governance/audit-trail.d.ts.map +1 -0
- package/dist/security/ai-governance/audit-trail.js +645 -0
- package/dist/security/ai-governance/audit-trail.js.map +1 -0
- package/dist/security/ai-governance/bias-detection.d.ts +221 -0
- package/dist/security/ai-governance/bias-detection.d.ts.map +1 -0
- package/dist/security/ai-governance/bias-detection.js +615 -0
- package/dist/security/ai-governance/bias-detection.js.map +1 -0
- package/dist/security/ai-governance/index.d.ts +92 -0
- package/dist/security/ai-governance/index.d.ts.map +1 -0
- package/dist/security/ai-governance/index.js +184 -0
- package/dist/security/ai-governance/index.js.map +1 -0
- package/dist/security/ai-governance/middleware.d.ts +110 -0
- package/dist/security/ai-governance/middleware.d.ts.map +1 -0
- package/dist/security/ai-governance/middleware.js +359 -0
- package/dist/security/ai-governance/middleware.js.map +1 -0
- package/dist/security/ai-governance/model-registry.d.ts +229 -0
- package/dist/security/ai-governance/model-registry.d.ts.map +1 -0
- package/dist/security/ai-governance/model-registry.js +535 -0
- package/dist/security/ai-governance/model-registry.js.map +1 -0
- package/dist/security/ai-governance/output-filter.d.ts +150 -0
- package/dist/security/ai-governance/output-filter.d.ts.map +1 -0
- package/dist/security/ai-governance/output-filter.js +561 -0
- package/dist/security/ai-governance/output-filter.js.map +1 -0
- package/dist/security/ai-governance/prompt-injection.d.ts +153 -0
- package/dist/security/ai-governance/prompt-injection.d.ts.map +1 -0
- package/dist/security/ai-governance/prompt-injection.js +614 -0
- package/dist/security/ai-governance/prompt-injection.js.map +1 -0
- package/dist/security/ai-governance/rate-limiter.d.ts +156 -0
- package/dist/security/ai-governance/rate-limiter.d.ts.map +1 -0
- package/dist/security/ai-governance/rate-limiter.js +541 -0
- package/dist/security/ai-governance/rate-limiter.js.map +1 -0
- package/dist/security/ai-governance/types.d.ts +594 -0
- package/dist/security/ai-governance/types.d.ts.map +1 -0
- package/dist/security/ai-governance/types.js +6 -0
- package/dist/security/ai-governance/types.js.map +1 -0
- package/dist/security/alerting/channels/base.d.ts +91 -0
- package/dist/security/alerting/channels/base.d.ts.map +1 -0
- package/dist/security/alerting/channels/base.js +128 -0
- package/dist/security/alerting/channels/base.js.map +1 -0
- package/dist/security/alerting/channels/email.d.ts +92 -0
- package/dist/security/alerting/channels/email.d.ts.map +1 -0
- package/dist/security/alerting/channels/email.js +418 -0
- package/dist/security/alerting/channels/email.js.map +1 -0
- package/dist/security/alerting/channels/http-base.d.ts +86 -0
- package/dist/security/alerting/channels/http-base.d.ts.map +1 -0
- package/dist/security/alerting/channels/http-base.js +133 -0
- package/dist/security/alerting/channels/http-base.js.map +1 -0
- package/dist/security/alerting/channels/index.d.ts +30 -0
- package/dist/security/alerting/channels/index.d.ts.map +1 -0
- package/dist/security/alerting/channels/index.js +22 -0
- package/dist/security/alerting/channels/index.js.map +1 -0
- package/dist/security/alerting/channels/pagerduty.d.ts +70 -0
- package/dist/security/alerting/channels/pagerduty.d.ts.map +1 -0
- package/dist/security/alerting/channels/pagerduty.js +248 -0
- package/dist/security/alerting/channels/pagerduty.js.map +1 -0
- package/dist/security/alerting/channels/slack.d.ts +55 -0
- package/dist/security/alerting/channels/slack.d.ts.map +1 -0
- package/dist/security/alerting/channels/slack.js +215 -0
- package/dist/security/alerting/channels/slack.js.map +1 -0
- package/dist/security/alerting/channels/sns.d.ts +87 -0
- package/dist/security/alerting/channels/sns.d.ts.map +1 -0
- package/dist/security/alerting/channels/sns.js +251 -0
- package/dist/security/alerting/channels/sns.js.map +1 -0
- package/dist/security/alerting/channels/webhook.d.ts +92 -0
- package/dist/security/alerting/channels/webhook.d.ts.map +1 -0
- package/dist/security/alerting/channels/webhook.js +203 -0
- package/dist/security/alerting/channels/webhook.js.map +1 -0
- package/dist/security/alerting/detector.d.ts +217 -0
- package/dist/security/alerting/detector.d.ts.map +1 -0
- package/dist/security/alerting/detector.js +725 -0
- package/dist/security/alerting/detector.js.map +1 -0
- package/dist/security/alerting/index.d.ts +57 -0
- package/dist/security/alerting/index.d.ts.map +1 -0
- package/dist/security/alerting/index.js +214 -0
- package/dist/security/alerting/index.js.map +1 -0
- package/dist/security/alerting/service.d.ts +190 -0
- package/dist/security/alerting/service.d.ts.map +1 -0
- package/dist/security/alerting/service.js +815 -0
- package/dist/security/alerting/service.js.map +1 -0
- package/dist/security/alerting/types.d.ts +2165 -0
- package/dist/security/alerting/types.d.ts.map +1 -0
- package/dist/security/alerting/types.js +278 -0
- package/dist/security/alerting/types.js.map +1 -0
- package/dist/security/anomaly/detectors/account-compromise.d.ts +198 -0
- package/dist/security/anomaly/detectors/account-compromise.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/account-compromise.js +815 -0
- package/dist/security/anomaly/detectors/account-compromise.js.map +1 -0
- package/dist/security/anomaly/detectors/data-exfiltration.d.ts +175 -0
- package/dist/security/anomaly/detectors/data-exfiltration.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/data-exfiltration.js +733 -0
- package/dist/security/anomaly/detectors/data-exfiltration.js.map +1 -0
- package/dist/security/anomaly/detectors/geographic.d.ts +100 -0
- package/dist/security/anomaly/detectors/geographic.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/geographic.js +348 -0
- package/dist/security/anomaly/detectors/geographic.js.map +1 -0
- package/dist/security/anomaly/detectors/index.d.ts +86 -0
- package/dist/security/anomaly/detectors/index.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/index.js +118 -0
- package/dist/security/anomaly/detectors/index.js.map +1 -0
- package/dist/security/anomaly/detectors/lateral-movement.d.ts +168 -0
- package/dist/security/anomaly/detectors/lateral-movement.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/lateral-movement.js +795 -0
- package/dist/security/anomaly/detectors/lateral-movement.js.map +1 -0
- package/dist/security/anomaly/detectors/privilege-escalation.d.ts +177 -0
- package/dist/security/anomaly/detectors/privilege-escalation.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/privilege-escalation.js +741 -0
- package/dist/security/anomaly/detectors/privilege-escalation.js.map +1 -0
- package/dist/security/anomaly/detectors/temporal.d.ts +71 -0
- package/dist/security/anomaly/detectors/temporal.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/temporal.js +398 -0
- package/dist/security/anomaly/detectors/temporal.js.map +1 -0
- package/dist/security/anomaly/detectors/volume.d.ts +97 -0
- package/dist/security/anomaly/detectors/volume.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/volume.js +424 -0
- package/dist/security/anomaly/detectors/volume.js.map +1 -0
- package/dist/security/anomaly/index.d.ts +128 -0
- package/dist/security/anomaly/index.d.ts.map +1 -0
- package/dist/security/anomaly/index.js +378 -0
- package/dist/security/anomaly/index.js.map +1 -0
- package/dist/security/anomaly/types.d.ts +1209 -0
- package/dist/security/anomaly/types.d.ts.map +1 -0
- package/dist/security/anomaly/types.js +193 -0
- package/dist/security/anomaly/types.js.map +1 -0
- package/dist/security/api-keys/cache.d.ts +255 -0
- package/dist/security/api-keys/cache.d.ts.map +1 -0
- package/dist/security/api-keys/cache.js +595 -0
- package/dist/security/api-keys/cache.js.map +1 -0
- package/dist/security/api-keys/db-store.d.ts +150 -0
- package/dist/security/api-keys/db-store.d.ts.map +1 -0
- package/dist/security/api-keys/db-store.js +694 -0
- package/dist/security/api-keys/db-store.js.map +1 -0
- package/dist/security/api-keys/index.d.ts +29 -0
- package/dist/security/api-keys/index.d.ts.map +1 -0
- package/dist/security/api-keys/index.js +81 -0
- package/dist/security/api-keys/index.js.map +1 -0
- package/dist/security/api-keys/middleware.d.ts +164 -0
- package/dist/security/api-keys/middleware.d.ts.map +1 -0
- package/dist/security/api-keys/middleware.js +392 -0
- package/dist/security/api-keys/middleware.js.map +1 -0
- package/dist/security/api-keys/service.d.ts +226 -0
- package/dist/security/api-keys/service.d.ts.map +1 -0
- package/dist/security/api-keys/service.js +861 -0
- package/dist/security/api-keys/service.js.map +1 -0
- package/dist/security/api-keys/store.d.ts +241 -0
- package/dist/security/api-keys/store.d.ts.map +1 -0
- package/dist/security/api-keys/store.js +360 -0
- package/dist/security/api-keys/store.js.map +1 -0
- package/dist/security/api-keys/types.d.ts +718 -0
- package/dist/security/api-keys/types.d.ts.map +1 -0
- package/dist/security/api-keys/types.js +162 -0
- package/dist/security/api-keys/types.js.map +1 -0
- package/dist/security/brute-force.d.ts +390 -0
- package/dist/security/brute-force.d.ts.map +1 -0
- package/dist/security/brute-force.js +677 -0
- package/dist/security/brute-force.js.map +1 -0
- package/dist/security/config-validator.d.ts +152 -0
- package/dist/security/config-validator.d.ts.map +1 -0
- package/dist/security/config-validator.js +667 -0
- package/dist/security/config-validator.js.map +1 -0
- package/dist/security/crypto/fips-mode.d.ts +726 -0
- package/dist/security/crypto/fips-mode.d.ts.map +1 -0
- package/dist/security/crypto/fips-mode.js +1297 -0
- package/dist/security/crypto/fips-mode.js.map +1 -0
- package/dist/security/crypto/index.d.ts +203 -0
- package/dist/security/crypto/index.d.ts.map +1 -0
- package/dist/security/crypto/index.js +293 -0
- package/dist/security/crypto/index.js.map +1 -0
- package/dist/security/crypto/post-quantum/benchmark.d.ts +125 -0
- package/dist/security/crypto/post-quantum/benchmark.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/benchmark.js +530 -0
- package/dist/security/crypto/post-quantum/benchmark.js.map +1 -0
- package/dist/security/crypto/post-quantum/dilithium.d.ts +146 -0
- package/dist/security/crypto/post-quantum/dilithium.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/dilithium.js +662 -0
- package/dist/security/crypto/post-quantum/dilithium.js.map +1 -0
- package/dist/security/crypto/post-quantum/hybrid.d.ts +267 -0
- package/dist/security/crypto/post-quantum/hybrid.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/hybrid.js +457 -0
- package/dist/security/crypto/post-quantum/hybrid.js.map +1 -0
- package/dist/security/crypto/post-quantum/index.d.ts +166 -0
- package/dist/security/crypto/post-quantum/index.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/index.js +236 -0
- package/dist/security/crypto/post-quantum/index.js.map +1 -0
- package/dist/security/crypto/post-quantum/kyber.d.ts +131 -0
- package/dist/security/crypto/post-quantum/kyber.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/kyber.js +640 -0
- package/dist/security/crypto/post-quantum/kyber.js.map +1 -0
- package/dist/security/crypto/post-quantum/migration.d.ts +230 -0
- package/dist/security/crypto/post-quantum/migration.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/migration.js +563 -0
- package/dist/security/crypto/post-quantum/migration.js.map +1 -0
- package/dist/security/crypto/post-quantum/types.d.ts +1056 -0
- package/dist/security/crypto/post-quantum/types.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/types.js +350 -0
- package/dist/security/crypto/post-quantum/types.js.map +1 -0
- package/dist/security/crypto/shamir/comparison.d.ts +128 -0
- package/dist/security/crypto/shamir/comparison.d.ts.map +1 -0
- package/dist/security/crypto/shamir/comparison.js +423 -0
- package/dist/security/crypto/shamir/comparison.js.map +1 -0
- package/dist/security/crypto/shamir/index.d.ts +76 -0
- package/dist/security/crypto/shamir/index.d.ts.map +1 -0
- package/dist/security/crypto/shamir/index.js +155 -0
- package/dist/security/crypto/shamir/index.js.map +1 -0
- package/dist/security/crypto/shamir/proofs.d.ts +259 -0
- package/dist/security/crypto/shamir/proofs.d.ts.map +1 -0
- package/dist/security/crypto/shamir/proofs.js +605 -0
- package/dist/security/crypto/shamir/proofs.js.map +1 -0
- package/dist/security/crypto/shamir/property-tests.d.ts +104 -0
- package/dist/security/crypto/shamir/property-tests.d.ts.map +1 -0
- package/dist/security/crypto/shamir/property-tests.js +480 -0
- package/dist/security/crypto/shamir/property-tests.js.map +1 -0
- package/dist/security/crypto/shamir/security-analysis.d.ts +97 -0
- package/dist/security/crypto/shamir/security-analysis.d.ts.map +1 -0
- package/dist/security/crypto/shamir/security-analysis.js +503 -0
- package/dist/security/crypto/shamir/security-analysis.js.map +1 -0
- package/dist/security/crypto/shamir/test-vectors.d.ts +116 -0
- package/dist/security/crypto/shamir/test-vectors.d.ts.map +1 -0
- package/dist/security/crypto/shamir/test-vectors.js +377 -0
- package/dist/security/crypto/shamir/test-vectors.js.map +1 -0
- package/dist/security/crypto/shamir/types.d.ts +281 -0
- package/dist/security/crypto/shamir/types.d.ts.map +1 -0
- package/dist/security/crypto/shamir/types.js +82 -0
- package/dist/security/crypto/shamir/types.js.map +1 -0
- package/dist/security/crypto/shamir/verified-shamir.d.ts +170 -0
- package/dist/security/crypto/shamir/verified-shamir.d.ts.map +1 -0
- package/dist/security/crypto/shamir/verified-shamir.js +624 -0
- package/dist/security/crypto/shamir/verified-shamir.js.map +1 -0
- package/dist/security/csrf.d.ts +215 -0
- package/dist/security/csrf.d.ts.map +1 -0
- package/dist/security/csrf.js +467 -0
- package/dist/security/csrf.js.map +1 -0
- package/dist/security/distributed-state.d.ts +331 -0
- package/dist/security/distributed-state.d.ts.map +1 -0
- package/dist/security/distributed-state.js +768 -0
- package/dist/security/distributed-state.js.map +1 -0
- package/dist/security/dlp/index.d.ts +27 -0
- package/dist/security/dlp/index.d.ts.map +1 -0
- package/dist/security/dlp/index.js +54 -0
- package/dist/security/dlp/index.js.map +1 -0
- package/dist/security/dlp/scanner.d.ts +451 -0
- package/dist/security/dlp/scanner.d.ts.map +1 -0
- package/dist/security/dlp/scanner.js +1241 -0
- package/dist/security/dlp/scanner.js.map +1 -0
- package/dist/security/dpop.d.ts +260 -0
- package/dist/security/dpop.d.ts.map +1 -0
- package/dist/security/dpop.js +1058 -0
- package/dist/security/dpop.js.map +1 -0
- package/dist/security/encryption/decorators.d.ts +263 -0
- package/dist/security/encryption/decorators.d.ts.map +1 -0
- package/dist/security/encryption/decorators.js +359 -0
- package/dist/security/encryption/decorators.js.map +1 -0
- package/dist/security/encryption/index.d.ts +83 -0
- package/dist/security/encryption/index.d.ts.map +1 -0
- package/dist/security/encryption/index.js +140 -0
- package/dist/security/encryption/index.js.map +1 -0
- package/dist/security/encryption/key-provider.d.ts +335 -0
- package/dist/security/encryption/key-provider.d.ts.map +1 -0
- package/dist/security/encryption/key-provider.js +853 -0
- package/dist/security/encryption/key-provider.js.map +1 -0
- package/dist/security/encryption/middleware.d.ts +279 -0
- package/dist/security/encryption/middleware.d.ts.map +1 -0
- package/dist/security/encryption/middleware.js +493 -0
- package/dist/security/encryption/middleware.js.map +1 -0
- package/dist/security/encryption/service.d.ts +164 -0
- package/dist/security/encryption/service.d.ts.map +1 -0
- package/dist/security/encryption/service.js +623 -0
- package/dist/security/encryption/service.js.map +1 -0
- package/dist/security/encryption/types.d.ts +745 -0
- package/dist/security/encryption/types.d.ts.map +1 -0
- package/dist/security/encryption/types.js +229 -0
- package/dist/security/encryption/types.js.map +1 -0
- package/dist/security/error-sanitizer.d.ts +329 -0
- package/dist/security/error-sanitizer.d.ts.map +1 -0
- package/dist/security/error-sanitizer.js +700 -0
- package/dist/security/error-sanitizer.js.map +1 -0
- package/dist/security/fingerprint-service.d.ts +139 -0
- package/dist/security/fingerprint-service.d.ts.map +1 -0
- package/dist/security/fingerprint-service.js +240 -0
- package/dist/security/fingerprint-service.js.map +1 -0
- package/dist/security/headers/csp.d.ts +270 -0
- package/dist/security/headers/csp.d.ts.map +1 -0
- package/dist/security/headers/csp.js +655 -0
- package/dist/security/headers/csp.js.map +1 -0
- package/dist/security/headers/hsts.d.ts +161 -0
- package/dist/security/headers/hsts.d.ts.map +1 -0
- package/dist/security/headers/hsts.js +346 -0
- package/dist/security/headers/hsts.js.map +1 -0
- package/dist/security/headers/index.d.ts +47 -0
- package/dist/security/headers/index.d.ts.map +1 -0
- package/dist/security/headers/index.js +110 -0
- package/dist/security/headers/index.js.map +1 -0
- package/dist/security/headers/middleware.d.ts +70 -0
- package/dist/security/headers/middleware.d.ts.map +1 -0
- package/dist/security/headers/middleware.js +549 -0
- package/dist/security/headers/middleware.js.map +1 -0
- package/dist/security/headers/permissions-policy.d.ts +189 -0
- package/dist/security/headers/permissions-policy.d.ts.map +1 -0
- package/dist/security/headers/permissions-policy.js +508 -0
- package/dist/security/headers/permissions-policy.js.map +1 -0
- package/dist/security/headers/types.d.ts +1570 -0
- package/dist/security/headers/types.d.ts.map +1 -0
- package/dist/security/headers/types.js +281 -0
- package/dist/security/headers/types.js.map +1 -0
- package/dist/security/headers/validator.d.ts +36 -0
- package/dist/security/headers/validator.d.ts.map +1 -0
- package/dist/security/headers/validator.js +616 -0
- package/dist/security/headers/validator.js.map +1 -0
- package/dist/security/hsm/aws-cloudhsm.d.ts +157 -0
- package/dist/security/hsm/aws-cloudhsm.d.ts.map +1 -0
- package/dist/security/hsm/aws-cloudhsm.js +712 -0
- package/dist/security/hsm/aws-cloudhsm.js.map +1 -0
- package/dist/security/hsm/azure-hsm.d.ts +174 -0
- package/dist/security/hsm/azure-hsm.d.ts.map +1 -0
- package/dist/security/hsm/azure-hsm.js +792 -0
- package/dist/security/hsm/azure-hsm.js.map +1 -0
- package/dist/security/hsm/gcp-hsm.d.ts +184 -0
- package/dist/security/hsm/gcp-hsm.d.ts.map +1 -0
- package/dist/security/hsm/gcp-hsm.js +817 -0
- package/dist/security/hsm/gcp-hsm.js.map +1 -0
- package/dist/security/hsm/hsm-service.d.ts +264 -0
- package/dist/security/hsm/hsm-service.d.ts.map +1 -0
- package/dist/security/hsm/hsm-service.js +772 -0
- package/dist/security/hsm/hsm-service.js.map +1 -0
- package/dist/security/hsm/index.d.ts +248 -0
- package/dist/security/hsm/index.d.ts.map +1 -0
- package/dist/security/hsm/index.js +329 -0
- package/dist/security/hsm/index.js.map +1 -0
- package/dist/security/hsm/key-ceremony.d.ts +214 -0
- package/dist/security/hsm/key-ceremony.d.ts.map +1 -0
- package/dist/security/hsm/key-ceremony.js +636 -0
- package/dist/security/hsm/key-ceremony.js.map +1 -0
- package/dist/security/hsm/key-operations.d.ts +218 -0
- package/dist/security/hsm/key-operations.d.ts.map +1 -0
- package/dist/security/hsm/key-operations.js +625 -0
- package/dist/security/hsm/key-operations.js.map +1 -0
- package/dist/security/hsm/local-softHSM.d.ts +122 -0
- package/dist/security/hsm/local-softHSM.d.ts.map +1 -0
- package/dist/security/hsm/local-softHSM.js +786 -0
- package/dist/security/hsm/local-softHSM.js.map +1 -0
- package/dist/security/hsm/pkcs11-wrapper.d.ts +386 -0
- package/dist/security/hsm/pkcs11-wrapper.d.ts.map +1 -0
- package/dist/security/hsm/pkcs11-wrapper.js +1149 -0
- package/dist/security/hsm/pkcs11-wrapper.js.map +1 -0
- package/dist/security/hsm/provider.d.ts +333 -0
- package/dist/security/hsm/provider.d.ts.map +1 -0
- package/dist/security/hsm/provider.js +264 -0
- package/dist/security/hsm/provider.js.map +1 -0
- package/dist/security/hsm/thales-luna.d.ts +209 -0
- package/dist/security/hsm/thales-luna.d.ts.map +1 -0
- package/dist/security/hsm/thales-luna.js +820 -0
- package/dist/security/hsm/thales-luna.js.map +1 -0
- package/dist/security/incident/actions/block-ip.d.ts +82 -0
- package/dist/security/incident/actions/block-ip.d.ts.map +1 -0
- package/dist/security/incident/actions/block-ip.js +454 -0
- package/dist/security/incident/actions/block-ip.js.map +1 -0
- package/dist/security/incident/actions/collect-evidence.d.ts +93 -0
- package/dist/security/incident/actions/collect-evidence.d.ts.map +1 -0
- package/dist/security/incident/actions/collect-evidence.js +449 -0
- package/dist/security/incident/actions/collect-evidence.js.map +1 -0
- package/dist/security/incident/actions/index.d.ts +39 -0
- package/dist/security/incident/actions/index.d.ts.map +1 -0
- package/dist/security/incident/actions/index.js +52 -0
- package/dist/security/incident/actions/index.js.map +1 -0
- package/dist/security/incident/actions/isolate-system.d.ts +61 -0
- package/dist/security/incident/actions/isolate-system.d.ts.map +1 -0
- package/dist/security/incident/actions/isolate-system.js +369 -0
- package/dist/security/incident/actions/isolate-system.js.map +1 -0
- package/dist/security/incident/actions/notify-stakeholders.d.ts +70 -0
- package/dist/security/incident/actions/notify-stakeholders.d.ts.map +1 -0
- package/dist/security/incident/actions/notify-stakeholders.js +377 -0
- package/dist/security/incident/actions/notify-stakeholders.js.map +1 -0
- package/dist/security/incident/actions/revoke-credentials.d.ts +75 -0
- package/dist/security/incident/actions/revoke-credentials.d.ts.map +1 -0
- package/dist/security/incident/actions/revoke-credentials.js +320 -0
- package/dist/security/incident/actions/revoke-credentials.js.map +1 -0
- package/dist/security/incident/actions/scale-monitoring.d.ts +88 -0
- package/dist/security/incident/actions/scale-monitoring.d.ts.map +1 -0
- package/dist/security/incident/actions/scale-monitoring.js +473 -0
- package/dist/security/incident/actions/scale-monitoring.js.map +1 -0
- package/dist/security/incident/executor.d.ts +128 -0
- package/dist/security/incident/executor.d.ts.map +1 -0
- package/dist/security/incident/executor.js +695 -0
- package/dist/security/incident/executor.js.map +1 -0
- package/dist/security/incident/index.d.ts +220 -0
- package/dist/security/incident/index.d.ts.map +1 -0
- package/dist/security/incident/index.js +1284 -0
- package/dist/security/incident/index.js.map +1 -0
- package/dist/security/incident/notification.d.ts +68 -0
- package/dist/security/incident/notification.d.ts.map +1 -0
- package/dist/security/incident/notification.js +512 -0
- package/dist/security/incident/notification.js.map +1 -0
- package/dist/security/incident/playbooks/account-compromise.d.ts +13 -0
- package/dist/security/incident/playbooks/account-compromise.d.ts.map +1 -0
- package/dist/security/incident/playbooks/account-compromise.js +379 -0
- package/dist/security/incident/playbooks/account-compromise.js.map +1 -0
- package/dist/security/incident/playbooks/configuration-error.d.ts +17 -0
- package/dist/security/incident/playbooks/configuration-error.d.ts.map +1 -0
- package/dist/security/incident/playbooks/configuration-error.js +340 -0
- package/dist/security/incident/playbooks/configuration-error.js.map +1 -0
- package/dist/security/incident/playbooks/data-breach.d.ts +13 -0
- package/dist/security/incident/playbooks/data-breach.d.ts.map +1 -0
- package/dist/security/incident/playbooks/data-breach.js +394 -0
- package/dist/security/incident/playbooks/data-breach.js.map +1 -0
- package/dist/security/incident/playbooks/denial-of-service.d.ts +13 -0
- package/dist/security/incident/playbooks/denial-of-service.d.ts.map +1 -0
- package/dist/security/incident/playbooks/denial-of-service.js +540 -0
- package/dist/security/incident/playbooks/denial-of-service.js.map +1 -0
- package/dist/security/incident/playbooks/index.d.ts +36 -0
- package/dist/security/incident/playbooks/index.d.ts.map +1 -0
- package/dist/security/incident/playbooks/index.js +56 -0
- package/dist/security/incident/playbooks/index.js.map +1 -0
- package/dist/security/incident/playbooks/insider-threat.d.ts +18 -0
- package/dist/security/incident/playbooks/insider-threat.d.ts.map +1 -0
- package/dist/security/incident/playbooks/insider-threat.js +600 -0
- package/dist/security/incident/playbooks/insider-threat.js.map +1 -0
- package/dist/security/incident/playbooks/malware.d.ts +13 -0
- package/dist/security/incident/playbooks/malware.d.ts.map +1 -0
- package/dist/security/incident/playbooks/malware.js +515 -0
- package/dist/security/incident/playbooks/malware.js.map +1 -0
- package/dist/security/incident/playbooks/ransomware.d.ts +14 -0
- package/dist/security/incident/playbooks/ransomware.d.ts.map +1 -0
- package/dist/security/incident/playbooks/ransomware.js +693 -0
- package/dist/security/incident/playbooks/ransomware.js.map +1 -0
- package/dist/security/incident/playbooks/unauthorized-access.d.ts +13 -0
- package/dist/security/incident/playbooks/unauthorized-access.d.ts.map +1 -0
- package/dist/security/incident/playbooks/unauthorized-access.js +412 -0
- package/dist/security/incident/playbooks/unauthorized-access.js.map +1 -0
- package/dist/security/incident/triggers.d.ts +120 -0
- package/dist/security/incident/triggers.d.ts.map +1 -0
- package/dist/security/incident/triggers.js +708 -0
- package/dist/security/incident/triggers.js.map +1 -0
- package/dist/security/incident/types.d.ts +1517 -0
- package/dist/security/incident/types.d.ts.map +1 -0
- package/dist/security/incident/types.js +222 -0
- package/dist/security/incident/types.js.map +1 -0
- package/dist/security/index.d.ts +59 -0
- package/dist/security/index.d.ts.map +1 -0
- package/dist/security/index.js +295 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/injection-detector.d.ts +510 -0
- package/dist/security/injection-detector.d.ts.map +1 -0
- package/dist/security/injection-detector.js +1325 -0
- package/dist/security/injection-detector.js.map +1 -0
- package/dist/security/introspection.d.ts +137 -0
- package/dist/security/introspection.d.ts.map +1 -0
- package/dist/security/introspection.js +451 -0
- package/dist/security/introspection.js.map +1 -0
- package/dist/security/key-rotation.d.ts +213 -0
- package/dist/security/key-rotation.d.ts.map +1 -0
- package/dist/security/key-rotation.js +530 -0
- package/dist/security/key-rotation.js.map +1 -0
- package/dist/security/kms/aws-kms.d.ts +152 -0
- package/dist/security/kms/aws-kms.d.ts.map +1 -0
- package/dist/security/kms/aws-kms.js +808 -0
- package/dist/security/kms/aws-kms.js.map +1 -0
- package/dist/security/kms/index.d.ts +165 -0
- package/dist/security/kms/index.d.ts.map +1 -0
- package/dist/security/kms/index.js +351 -0
- package/dist/security/kms/index.js.map +1 -0
- package/dist/security/kms/local.d.ts +127 -0
- package/dist/security/kms/local.d.ts.map +1 -0
- package/dist/security/kms/local.js +682 -0
- package/dist/security/kms/local.js.map +1 -0
- package/dist/security/kms/types.d.ts +1000 -0
- package/dist/security/kms/types.d.ts.map +1 -0
- package/dist/security/kms/types.js +167 -0
- package/dist/security/kms/types.js.map +1 -0
- package/dist/security/kms/vault.d.ts +165 -0
- package/dist/security/kms/vault.d.ts.map +1 -0
- package/dist/security/kms/vault.js +820 -0
- package/dist/security/kms/vault.js.map +1 -0
- package/dist/security/mfa/index.d.ts +17 -0
- package/dist/security/mfa/index.d.ts.map +1 -0
- package/dist/security/mfa/index.js +37 -0
- package/dist/security/mfa/index.js.map +1 -0
- package/dist/security/mfa/mfa-middleware.d.ts +74 -0
- package/dist/security/mfa/mfa-middleware.d.ts.map +1 -0
- package/dist/security/mfa/mfa-middleware.js +244 -0
- package/dist/security/mfa/mfa-middleware.js.map +1 -0
- package/dist/security/mfa/mfa-service.d.ts +115 -0
- package/dist/security/mfa/mfa-service.d.ts.map +1 -0
- package/dist/security/mfa/mfa-service.js +509 -0
- package/dist/security/mfa/mfa-service.js.map +1 -0
- package/dist/security/mfa/mfa-store.d.ts +615 -0
- package/dist/security/mfa/mfa-store.d.ts.map +1 -0
- package/dist/security/mfa/mfa-store.js +431 -0
- package/dist/security/mfa/mfa-store.js.map +1 -0
- package/dist/security/mfa/types.d.ts +417 -0
- package/dist/security/mfa/types.d.ts.map +1 -0
- package/dist/security/mfa/types.js +123 -0
- package/dist/security/mfa/types.js.map +1 -0
- package/dist/security/middleware.d.ts +179 -0
- package/dist/security/middleware.d.ts.map +1 -0
- package/dist/security/middleware.js +534 -0
- package/dist/security/middleware.js.map +1 -0
- package/dist/security/pairwise-did.d.ts +157 -0
- package/dist/security/pairwise-did.d.ts.map +1 -0
- package/dist/security/pairwise-did.js +450 -0
- package/dist/security/pairwise-did.js.map +1 -0
- package/dist/security/pam/break-glass.d.ts +776 -0
- package/dist/security/pam/break-glass.d.ts.map +1 -0
- package/dist/security/pam/break-glass.js +1137 -0
- package/dist/security/pam/break-glass.js.map +1 -0
- package/dist/security/pam/index.d.ts +120 -0
- package/dist/security/pam/index.d.ts.map +1 -0
- package/dist/security/pam/index.js +179 -0
- package/dist/security/pam/index.js.map +1 -0
- package/dist/security/pam/jit-access.d.ts +482 -0
- package/dist/security/pam/jit-access.d.ts.map +1 -0
- package/dist/security/pam/jit-access.js +1030 -0
- package/dist/security/pam/jit-access.js.map +1 -0
- package/dist/security/pam/session-recording.d.ts +1007 -0
- package/dist/security/pam/session-recording.d.ts.map +1 -0
- package/dist/security/pam/session-recording.js +1047 -0
- package/dist/security/pam/session-recording.js.map +1 -0
- package/dist/security/password-hashing.d.ts +199 -0
- package/dist/security/password-hashing.d.ts.map +1 -0
- package/dist/security/password-hashing.js +366 -0
- package/dist/security/password-hashing.js.map +1 -0
- package/dist/security/password-policy.d.ts +304 -0
- package/dist/security/password-policy.d.ts.map +1 -0
- package/dist/security/password-policy.js +730 -0
- package/dist/security/password-policy.js.map +1 -0
- package/dist/security/pkce.d.ts +269 -0
- package/dist/security/pkce.d.ts.map +1 -0
- package/dist/security/pkce.js +408 -0
- package/dist/security/pkce.js.map +1 -0
- package/dist/security/policy-engine/built-in-policies.d.ts +90 -0
- package/dist/security/policy-engine/built-in-policies.d.ts.map +1 -0
- package/dist/security/policy-engine/built-in-policies.js +627 -0
- package/dist/security/policy-engine/built-in-policies.js.map +1 -0
- package/dist/security/policy-engine/condition-evaluator.d.ts +129 -0
- package/dist/security/policy-engine/condition-evaluator.d.ts.map +1 -0
- package/dist/security/policy-engine/condition-evaluator.js +647 -0
- package/dist/security/policy-engine/condition-evaluator.js.map +1 -0
- package/dist/security/policy-engine/engine.d.ts +200 -0
- package/dist/security/policy-engine/engine.d.ts.map +1 -0
- package/dist/security/policy-engine/engine.js +752 -0
- package/dist/security/policy-engine/engine.js.map +1 -0
- package/dist/security/policy-engine/index.d.ts +58 -0
- package/dist/security/policy-engine/index.d.ts.map +1 -0
- package/dist/security/policy-engine/index.js +80 -0
- package/dist/security/policy-engine/index.js.map +1 -0
- package/dist/security/policy-engine/middleware.d.ts +77 -0
- package/dist/security/policy-engine/middleware.d.ts.map +1 -0
- package/dist/security/policy-engine/middleware.js +375 -0
- package/dist/security/policy-engine/middleware.js.map +1 -0
- package/dist/security/policy-engine/rule-evaluator.d.ts +140 -0
- package/dist/security/policy-engine/rule-evaluator.d.ts.map +1 -0
- package/dist/security/policy-engine/rule-evaluator.js +593 -0
- package/dist/security/policy-engine/rule-evaluator.js.map +1 -0
- package/dist/security/policy-engine/types.d.ts +2855 -0
- package/dist/security/policy-engine/types.d.ts.map +1 -0
- package/dist/security/policy-engine/types.js +443 -0
- package/dist/security/policy-engine/types.js.map +1 -0
- package/dist/security/rbac/index.d.ts +317 -0
- package/dist/security/rbac/index.d.ts.map +1 -0
- package/dist/security/rbac/index.js +618 -0
- package/dist/security/rbac/index.js.map +1 -0
- package/dist/security/rbac/permissions.d.ts +305 -0
- package/dist/security/rbac/permissions.d.ts.map +1 -0
- package/dist/security/rbac/permissions.js +947 -0
- package/dist/security/rbac/permissions.js.map +1 -0
- package/dist/security/rbac/policy-engine.d.ts +542 -0
- package/dist/security/rbac/policy-engine.d.ts.map +1 -0
- package/dist/security/rbac/policy-engine.js +1244 -0
- package/dist/security/rbac/policy-engine.js.map +1 -0
- package/dist/security/rbac/roles.d.ts +478 -0
- package/dist/security/rbac/roles.d.ts.map +1 -0
- package/dist/security/rbac/roles.js +363 -0
- package/dist/security/rbac/roles.js.map +1 -0
- package/dist/security/refresh-token.d.ts +305 -0
- package/dist/security/refresh-token.d.ts.map +1 -0
- package/dist/security/refresh-token.js +674 -0
- package/dist/security/refresh-token.js.map +1 -0
- package/dist/security/request-integrity.d.ts +289 -0
- package/dist/security/request-integrity.d.ts.map +1 -0
- package/dist/security/request-integrity.js +663 -0
- package/dist/security/request-integrity.js.map +1 -0
- package/dist/security/revocation-check.d.ts +188 -0
- package/dist/security/revocation-check.d.ts.map +1 -0
- package/dist/security/revocation-check.js +606 -0
- package/dist/security/revocation-check.js.map +1 -0
- package/dist/security/revocation.d.ts +191 -0
- package/dist/security/revocation.d.ts.map +1 -0
- package/dist/security/revocation.js +522 -0
- package/dist/security/revocation.js.map +1 -0
- package/dist/security/secrets-rotation.d.ts +501 -0
- package/dist/security/secrets-rotation.d.ts.map +1 -0
- package/dist/security/secrets-rotation.js +934 -0
- package/dist/security/secrets-rotation.js.map +1 -0
- package/dist/security/secure-memory.d.ts +325 -0
- package/dist/security/secure-memory.d.ts.map +1 -0
- package/dist/security/secure-memory.js +595 -0
- package/dist/security/secure-memory.js.map +1 -0
- package/dist/security/security-service.d.ts +186 -0
- package/dist/security/security-service.d.ts.map +1 -0
- package/dist/security/security-service.js +531 -0
- package/dist/security/security-service.js.map +1 -0
- package/dist/security/service-auth/index.d.ts +20 -0
- package/dist/security/service-auth/index.d.ts.map +1 -0
- package/dist/security/service-auth/index.js +61 -0
- package/dist/security/service-auth/index.js.map +1 -0
- package/dist/security/service-auth/service-account.d.ts +357 -0
- package/dist/security/service-auth/service-account.d.ts.map +1 -0
- package/dist/security/service-auth/service-account.js +475 -0
- package/dist/security/service-auth/service-account.js.map +1 -0
- package/dist/security/service-auth/service-auth-middleware.d.ts +174 -0
- package/dist/security/service-auth/service-auth-middleware.d.ts.map +1 -0
- package/dist/security/service-auth/service-auth-middleware.js +461 -0
- package/dist/security/service-auth/service-auth-middleware.js.map +1 -0
- package/dist/security/service-auth/service-token.d.ts +391 -0
- package/dist/security/service-auth/service-token.d.ts.map +1 -0
- package/dist/security/service-auth/service-token.js +472 -0
- package/dist/security/service-auth/service-token.js.map +1 -0
- package/dist/security/session-manager.d.ts +177 -0
- package/dist/security/session-manager.d.ts.map +1 -0
- package/dist/security/session-manager.js +353 -0
- package/dist/security/session-manager.js.map +1 -0
- package/dist/security/session-store.d.ts +205 -0
- package/dist/security/session-store.d.ts.map +1 -0
- package/dist/security/session-store.js +581 -0
- package/dist/security/session-store.js.map +1 -0
- package/dist/security/siem/connector.d.ts +147 -0
- package/dist/security/siem/connector.d.ts.map +1 -0
- package/dist/security/siem/connector.js +254 -0
- package/dist/security/siem/connector.js.map +1 -0
- package/dist/security/siem/datadog.d.ts +81 -0
- package/dist/security/siem/datadog.d.ts.map +1 -0
- package/dist/security/siem/datadog.js +362 -0
- package/dist/security/siem/datadog.js.map +1 -0
- package/dist/security/siem/elastic.d.ts +83 -0
- package/dist/security/siem/elastic.d.ts.map +1 -0
- package/dist/security/siem/elastic.js +514 -0
- package/dist/security/siem/elastic.js.map +1 -0
- package/dist/security/siem/enrichment.d.ts +133 -0
- package/dist/security/siem/enrichment.d.ts.map +1 -0
- package/dist/security/siem/enrichment.js +434 -0
- package/dist/security/siem/enrichment.js.map +1 -0
- package/dist/security/siem/formatter.d.ts +118 -0
- package/dist/security/siem/formatter.d.ts.map +1 -0
- package/dist/security/siem/formatter.js +381 -0
- package/dist/security/siem/formatter.js.map +1 -0
- package/dist/security/siem/hooks.d.ts +107 -0
- package/dist/security/siem/hooks.d.ts.map +1 -0
- package/dist/security/siem/hooks.js +459 -0
- package/dist/security/siem/hooks.js.map +1 -0
- package/dist/security/siem/index.d.ts +83 -0
- package/dist/security/siem/index.d.ts.map +1 -0
- package/dist/security/siem/index.js +95 -0
- package/dist/security/siem/index.js.map +1 -0
- package/dist/security/siem/service.d.ts +153 -0
- package/dist/security/siem/service.d.ts.map +1 -0
- package/dist/security/siem/service.js +615 -0
- package/dist/security/siem/service.js.map +1 -0
- package/dist/security/siem/splunk.d.ts +76 -0
- package/dist/security/siem/splunk.d.ts.map +1 -0
- package/dist/security/siem/splunk.js +283 -0
- package/dist/security/siem/splunk.js.map +1 -0
- package/dist/security/siem/types.d.ts +1980 -0
- package/dist/security/siem/types.d.ts.map +1 -0
- package/dist/security/siem/types.js +268 -0
- package/dist/security/siem/types.js.map +1 -0
- package/dist/security/tee-production.d.ts +157 -0
- package/dist/security/tee-production.d.ts.map +1 -0
- package/dist/security/tee-production.js +792 -0
- package/dist/security/tee-production.js.map +1 -0
- package/dist/security/tee.d.ts +182 -0
- package/dist/security/tee.d.ts.map +1 -0
- package/dist/security/tee.js +1031 -0
- package/dist/security/tee.js.map +1 -0
- package/dist/security/threat-intel/bot-detection.d.ts +275 -0
- package/dist/security/threat-intel/bot-detection.d.ts.map +1 -0
- package/dist/security/threat-intel/bot-detection.js +890 -0
- package/dist/security/threat-intel/bot-detection.js.map +1 -0
- package/dist/security/threat-intel/credential-stuffing.d.ts +368 -0
- package/dist/security/threat-intel/credential-stuffing.d.ts.map +1 -0
- package/dist/security/threat-intel/credential-stuffing.js +957 -0
- package/dist/security/threat-intel/credential-stuffing.js.map +1 -0
- package/dist/security/threat-intel/index.d.ts +10 -0
- package/dist/security/threat-intel/index.d.ts.map +1 -0
- package/dist/security/threat-intel/index.js +18 -0
- package/dist/security/threat-intel/index.js.map +1 -0
- package/dist/security/threat-intel/ip-reputation.d.ts +323 -0
- package/dist/security/threat-intel/ip-reputation.d.ts.map +1 -0
- package/dist/security/threat-intel/ip-reputation.js +923 -0
- package/dist/security/threat-intel/ip-reputation.js.map +1 -0
- package/dist/security/token-lifecycle.d.ts +272 -0
- package/dist/security/token-lifecycle.d.ts.map +1 -0
- package/dist/security/token-lifecycle.js +732 -0
- package/dist/security/token-lifecycle.js.map +1 -0
- package/dist/security/token-lifetime.d.ts +206 -0
- package/dist/security/token-lifetime.d.ts.map +1 -0
- package/dist/security/token-lifetime.js +388 -0
- package/dist/security/token-lifetime.js.map +1 -0
- package/dist/security/trust-oracle/alerts.d.ts +202 -0
- package/dist/security/trust-oracle/alerts.d.ts.map +1 -0
- package/dist/security/trust-oracle/alerts.js +763 -0
- package/dist/security/trust-oracle/alerts.js.map +1 -0
- package/dist/security/trust-oracle/api.d.ts +116 -0
- package/dist/security/trust-oracle/api.d.ts.map +1 -0
- package/dist/security/trust-oracle/api.js +721 -0
- package/dist/security/trust-oracle/api.js.map +1 -0
- package/dist/security/trust-oracle/continuous-monitoring.d.ts +105 -0
- package/dist/security/trust-oracle/continuous-monitoring.d.ts.map +1 -0
- package/dist/security/trust-oracle/continuous-monitoring.js +696 -0
- package/dist/security/trust-oracle/continuous-monitoring.js.map +1 -0
- package/dist/security/trust-oracle/data-sources.d.ts +126 -0
- package/dist/security/trust-oracle/data-sources.d.ts.map +1 -0
- package/dist/security/trust-oracle/data-sources.js +867 -0
- package/dist/security/trust-oracle/data-sources.js.map +1 -0
- package/dist/security/trust-oracle/index.d.ts +79 -0
- package/dist/security/trust-oracle/index.d.ts.map +1 -0
- package/dist/security/trust-oracle/index.js +206 -0
- package/dist/security/trust-oracle/index.js.map +1 -0
- package/dist/security/trust-oracle/oracle.d.ts +125 -0
- package/dist/security/trust-oracle/oracle.d.ts.map +1 -0
- package/dist/security/trust-oracle/oracle.js +489 -0
- package/dist/security/trust-oracle/oracle.js.map +1 -0
- package/dist/security/trust-oracle/reporting.d.ts +145 -0
- package/dist/security/trust-oracle/reporting.d.ts.map +1 -0
- package/dist/security/trust-oracle/reporting.js +1098 -0
- package/dist/security/trust-oracle/reporting.js.map +1 -0
- package/dist/security/trust-oracle/risk-scorer.d.ts +207 -0
- package/dist/security/trust-oracle/risk-scorer.d.ts.map +1 -0
- package/dist/security/trust-oracle/risk-scorer.js +1033 -0
- package/dist/security/trust-oracle/risk-scorer.js.map +1 -0
- package/dist/security/trust-oracle/types.d.ts +444 -0
- package/dist/security/trust-oracle/types.d.ts.map +1 -0
- package/dist/security/trust-oracle/types.js +6 -0
- package/dist/security/trust-oracle/types.js.map +1 -0
- package/dist/security/trust-oracle/vendor-registry.d.ts +228 -0
- package/dist/security/trust-oracle/vendor-registry.d.ts.map +1 -0
- package/dist/security/trust-oracle/vendor-registry.js +727 -0
- package/dist/security/trust-oracle/vendor-registry.js.map +1 -0
- package/dist/security/types.d.ts +1777 -0
- package/dist/security/types.d.ts.map +1 -0
- package/dist/security/types.js +388 -0
- package/dist/security/types.js.map +1 -0
- package/dist/security/webauthn/index.d.ts +47 -0
- package/dist/security/webauthn/index.d.ts.map +1 -0
- package/dist/security/webauthn/index.js +48 -0
- package/dist/security/webauthn/index.js.map +1 -0
- package/dist/security/webauthn/middleware.d.ts +109 -0
- package/dist/security/webauthn/middleware.d.ts.map +1 -0
- package/dist/security/webauthn/middleware.js +629 -0
- package/dist/security/webauthn/middleware.js.map +1 -0
- package/dist/security/webauthn/service.d.ts +179 -0
- package/dist/security/webauthn/service.d.ts.map +1 -0
- package/dist/security/webauthn/service.js +758 -0
- package/dist/security/webauthn/service.js.map +1 -0
- package/dist/security/webauthn/store.d.ts +240 -0
- package/dist/security/webauthn/store.d.ts.map +1 -0
- package/dist/security/webauthn/store.js +505 -0
- package/dist/security/webauthn/store.js.map +1 -0
- package/dist/security/webauthn/types.d.ts +678 -0
- package/dist/security/webauthn/types.d.ts.map +1 -0
- package/dist/security/webauthn/types.js +176 -0
- package/dist/security/webauthn/types.js.map +1 -0
- package/dist/security/zkp/circuits.d.ts +296 -0
- package/dist/security/zkp/circuits.d.ts.map +1 -0
- package/dist/security/zkp/circuits.js +771 -0
- package/dist/security/zkp/circuits.js.map +1 -0
- package/dist/security/zkp/commitment.d.ts +319 -0
- package/dist/security/zkp/commitment.d.ts.map +1 -0
- package/dist/security/zkp/commitment.js +591 -0
- package/dist/security/zkp/commitment.js.map +1 -0
- package/dist/security/zkp/compliance.d.ts +251 -0
- package/dist/security/zkp/compliance.d.ts.map +1 -0
- package/dist/security/zkp/compliance.js +734 -0
- package/dist/security/zkp/compliance.js.map +1 -0
- package/dist/security/zkp/index.d.ts +184 -0
- package/dist/security/zkp/index.d.ts.map +1 -0
- package/dist/security/zkp/index.js +285 -0
- package/dist/security/zkp/index.js.map +1 -0
- package/dist/security/zkp/integration.d.ts +289 -0
- package/dist/security/zkp/integration.d.ts.map +1 -0
- package/dist/security/zkp/integration.js +571 -0
- package/dist/security/zkp/integration.js.map +1 -0
- package/dist/security/zkp/prover.d.ts +158 -0
- package/dist/security/zkp/prover.d.ts.map +1 -0
- package/dist/security/zkp/prover.js +465 -0
- package/dist/security/zkp/prover.js.map +1 -0
- package/dist/security/zkp/snark-utils.d.ts +321 -0
- package/dist/security/zkp/snark-utils.d.ts.map +1 -0
- package/dist/security/zkp/snark-utils.js +640 -0
- package/dist/security/zkp/snark-utils.js.map +1 -0
- package/dist/security/zkp/types.d.ts +1192 -0
- package/dist/security/zkp/types.d.ts.map +1 -0
- package/dist/security/zkp/types.js +264 -0
- package/dist/security/zkp/types.js.map +1 -0
- package/dist/security/zkp/verifier.d.ts +111 -0
- package/dist/security/zkp/verifier.d.ts.map +1 -0
- package/dist/security/zkp/verifier.js +554 -0
- package/dist/security/zkp/verifier.js.map +1 -0
- package/dist/semantic-governance/context-validator.d.ts +158 -0
- package/dist/semantic-governance/context-validator.d.ts.map +1 -0
- package/dist/semantic-governance/context-validator.js +598 -0
- package/dist/semantic-governance/context-validator.js.map +1 -0
- package/dist/semantic-governance/credential-manager.d.ts +156 -0
- package/dist/semantic-governance/credential-manager.d.ts.map +1 -0
- package/dist/semantic-governance/credential-manager.js +438 -0
- package/dist/semantic-governance/credential-manager.js.map +1 -0
- package/dist/semantic-governance/dual-channel.d.ts +138 -0
- package/dist/semantic-governance/dual-channel.d.ts.map +1 -0
- package/dist/semantic-governance/dual-channel.js +333 -0
- package/dist/semantic-governance/dual-channel.js.map +1 -0
- package/dist/semantic-governance/index.d.ts +107 -0
- package/dist/semantic-governance/index.d.ts.map +1 -0
- package/dist/semantic-governance/index.js +141 -0
- package/dist/semantic-governance/index.js.map +1 -0
- package/dist/semantic-governance/inference-validator.d.ts +114 -0
- package/dist/semantic-governance/inference-validator.d.ts.map +1 -0
- package/dist/semantic-governance/inference-validator.js +390 -0
- package/dist/semantic-governance/inference-validator.js.map +1 -0
- package/dist/semantic-governance/instruction-validator.d.ts +146 -0
- package/dist/semantic-governance/instruction-validator.d.ts.map +1 -0
- package/dist/semantic-governance/instruction-validator.js +363 -0
- package/dist/semantic-governance/instruction-validator.js.map +1 -0
- package/dist/semantic-governance/integration.d.ts +253 -0
- package/dist/semantic-governance/integration.d.ts.map +1 -0
- package/dist/semantic-governance/integration.js +658 -0
- package/dist/semantic-governance/integration.js.map +1 -0
- package/dist/semantic-governance/output-validator.d.ts +135 -0
- package/dist/semantic-governance/output-validator.d.ts.map +1 -0
- package/dist/semantic-governance/output-validator.js +448 -0
- package/dist/semantic-governance/output-validator.js.map +1 -0
- package/dist/semantic-governance/service.d.ts +120 -0
- package/dist/semantic-governance/service.d.ts.map +1 -0
- package/dist/semantic-governance/service.js +527 -0
- package/dist/semantic-governance/service.js.map +1 -0
- package/dist/semantic-governance/types.d.ts +3925 -0
- package/dist/semantic-governance/types.d.ts.map +1 -0
- package/dist/semantic-governance/types.js +471 -0
- package/dist/semantic-governance/types.js.map +1 -0
- package/dist/trust-engine/car-integration.d.ts +263 -0
- package/dist/trust-engine/car-integration.d.ts.map +1 -0
- package/dist/trust-engine/car-integration.js +320 -0
- package/dist/trust-engine/car-integration.js.map +1 -0
- package/dist/trust-engine/context.d.ts +198 -0
- package/dist/trust-engine/context.d.ts.map +1 -0
- package/dist/trust-engine/context.js +308 -0
- package/dist/trust-engine/context.js.map +1 -0
- package/dist/trust-engine/diminishing-returns.d.ts +123 -0
- package/dist/trust-engine/diminishing-returns.d.ts.map +1 -0
- package/dist/trust-engine/diminishing-returns.js +197 -0
- package/dist/trust-engine/diminishing-returns.js.map +1 -0
- package/dist/trust-engine/index.d.ts +433 -0
- package/dist/trust-engine/index.d.ts.map +1 -0
- package/dist/trust-engine/index.js +1241 -0
- package/dist/trust-engine/index.js.map +1 -0
- package/dist/trust-engine/observability.d.ts +175 -0
- package/dist/trust-engine/observability.d.ts.map +1 -0
- package/dist/trust-engine/observability.js +246 -0
- package/dist/trust-engine/observability.js.map +1 -0
- package/dist/trust-engine/signal-diversity.d.ts +130 -0
- package/dist/trust-engine/signal-diversity.d.ts.map +1 -0
- package/dist/trust-engine/signal-diversity.js +238 -0
- package/dist/trust-engine/signal-diversity.js.map +1 -0
- package/dist/versioning/deprecation.d.ts +65 -0
- package/dist/versioning/deprecation.d.ts.map +1 -0
- package/dist/versioning/deprecation.js +199 -0
- package/dist/versioning/deprecation.js.map +1 -0
- package/dist/versioning/index.d.ts +46 -0
- package/dist/versioning/index.d.ts.map +1 -0
- package/dist/versioning/index.js +76 -0
- package/dist/versioning/index.js.map +1 -0
- package/dist/versioning/semver.d.ts +116 -0
- package/dist/versioning/semver.d.ts.map +1 -0
- package/dist/versioning/semver.js +321 -0
- package/dist/versioning/semver.js.map +1 -0
- package/package.json +161 -0
|
@@ -0,0 +1,1624 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Security Event Type Definitions
|
|
3
|
+
*
|
|
4
|
+
* Comprehensive security event types for SOC 2 compliance audit logging.
|
|
5
|
+
* Every security-relevant action must be categorized and logged with full context.
|
|
6
|
+
*
|
|
7
|
+
* @packageDocumentation
|
|
8
|
+
*/
|
|
9
|
+
import { z } from 'zod';
|
|
10
|
+
import type { ID, Timestamp } from '../common/types.js';
|
|
11
|
+
/**
|
|
12
|
+
* Security event categories for SOC 2 compliance
|
|
13
|
+
*/
|
|
14
|
+
export declare const SECURITY_EVENT_CATEGORIES: readonly ["authentication", "authorization", "data_access", "configuration", "incident"];
|
|
15
|
+
export type SecurityEventCategory = (typeof SECURITY_EVENT_CATEGORIES)[number];
|
|
16
|
+
/**
|
|
17
|
+
* Security event severity levels aligned with SOC 2 requirements
|
|
18
|
+
*/
|
|
19
|
+
export declare const SECURITY_SEVERITIES: readonly ["info", "low", "medium", "high", "critical"];
|
|
20
|
+
export type SecuritySeverity = (typeof SECURITY_SEVERITIES)[number];
|
|
21
|
+
/**
|
|
22
|
+
* Security event outcomes for decision tracking
|
|
23
|
+
*/
|
|
24
|
+
export declare const SECURITY_OUTCOMES: readonly ["success", "failure", "blocked", "escalated"];
|
|
25
|
+
export type SecurityOutcome = (typeof SECURITY_OUTCOMES)[number];
|
|
26
|
+
/**
|
|
27
|
+
* Authentication event types
|
|
28
|
+
*/
|
|
29
|
+
export declare const AUTHENTICATION_EVENT_TYPES: {
|
|
30
|
+
readonly LOGIN_SUCCESS: {
|
|
31
|
+
readonly category: "authentication";
|
|
32
|
+
readonly severity: "info";
|
|
33
|
+
readonly description: "User successfully authenticated";
|
|
34
|
+
readonly soc2Control: "CC6.1";
|
|
35
|
+
};
|
|
36
|
+
readonly LOGIN_FAILURE: {
|
|
37
|
+
readonly category: "authentication";
|
|
38
|
+
readonly severity: "medium";
|
|
39
|
+
readonly description: "Authentication attempt failed";
|
|
40
|
+
readonly soc2Control: "CC6.1";
|
|
41
|
+
};
|
|
42
|
+
readonly LOGOUT: {
|
|
43
|
+
readonly category: "authentication";
|
|
44
|
+
readonly severity: "info";
|
|
45
|
+
readonly description: "User logged out";
|
|
46
|
+
readonly soc2Control: "CC6.1";
|
|
47
|
+
};
|
|
48
|
+
readonly LOGIN_LOCKED: {
|
|
49
|
+
readonly category: "authentication";
|
|
50
|
+
readonly severity: "high";
|
|
51
|
+
readonly description: "Account locked due to failed attempts";
|
|
52
|
+
readonly soc2Control: "CC6.1";
|
|
53
|
+
};
|
|
54
|
+
readonly SESSION_CREATED: {
|
|
55
|
+
readonly category: "authentication";
|
|
56
|
+
readonly severity: "info";
|
|
57
|
+
readonly description: "New session established";
|
|
58
|
+
readonly soc2Control: "CC6.1";
|
|
59
|
+
};
|
|
60
|
+
readonly SESSION_VALIDATED: {
|
|
61
|
+
readonly category: "authentication";
|
|
62
|
+
readonly severity: "info";
|
|
63
|
+
readonly description: "Session validated successfully";
|
|
64
|
+
readonly soc2Control: "CC6.1";
|
|
65
|
+
};
|
|
66
|
+
readonly SESSION_INVALID: {
|
|
67
|
+
readonly category: "authentication";
|
|
68
|
+
readonly severity: "medium";
|
|
69
|
+
readonly description: "Session validation failed";
|
|
70
|
+
readonly soc2Control: "CC6.1";
|
|
71
|
+
};
|
|
72
|
+
readonly SESSION_EXPIRED: {
|
|
73
|
+
readonly category: "authentication";
|
|
74
|
+
readonly severity: "info";
|
|
75
|
+
readonly description: "Session expired naturally";
|
|
76
|
+
readonly soc2Control: "CC6.1";
|
|
77
|
+
};
|
|
78
|
+
readonly SESSION_REVOKED: {
|
|
79
|
+
readonly category: "authentication";
|
|
80
|
+
readonly severity: "medium";
|
|
81
|
+
readonly description: "Session forcibly terminated";
|
|
82
|
+
readonly soc2Control: "CC6.1";
|
|
83
|
+
};
|
|
84
|
+
readonly SESSIONS_BULK_REVOKED: {
|
|
85
|
+
readonly category: "authentication";
|
|
86
|
+
readonly severity: "high";
|
|
87
|
+
readonly description: "Multiple sessions revoked for user";
|
|
88
|
+
readonly soc2Control: "CC6.1";
|
|
89
|
+
};
|
|
90
|
+
readonly TOKEN_ISSUED: {
|
|
91
|
+
readonly category: "authentication";
|
|
92
|
+
readonly severity: "info";
|
|
93
|
+
readonly description: "Access token issued";
|
|
94
|
+
readonly soc2Control: "CC6.1";
|
|
95
|
+
};
|
|
96
|
+
readonly TOKEN_REFRESHED: {
|
|
97
|
+
readonly category: "authentication";
|
|
98
|
+
readonly severity: "info";
|
|
99
|
+
readonly description: "Access token refreshed";
|
|
100
|
+
readonly soc2Control: "CC6.1";
|
|
101
|
+
};
|
|
102
|
+
readonly TOKEN_REVOKED: {
|
|
103
|
+
readonly category: "authentication";
|
|
104
|
+
readonly severity: "medium";
|
|
105
|
+
readonly description: "Token manually revoked";
|
|
106
|
+
readonly soc2Control: "CC6.1";
|
|
107
|
+
};
|
|
108
|
+
readonly TOKEN_VALIDATION_FAILED: {
|
|
109
|
+
readonly category: "authentication";
|
|
110
|
+
readonly severity: "medium";
|
|
111
|
+
readonly description: "Token validation failed";
|
|
112
|
+
readonly soc2Control: "CC6.1";
|
|
113
|
+
};
|
|
114
|
+
readonly API_KEY_CREATED: {
|
|
115
|
+
readonly category: "authentication";
|
|
116
|
+
readonly severity: "medium";
|
|
117
|
+
readonly description: "API key created";
|
|
118
|
+
readonly soc2Control: "CC6.1";
|
|
119
|
+
};
|
|
120
|
+
readonly API_KEY_VALIDATED: {
|
|
121
|
+
readonly category: "authentication";
|
|
122
|
+
readonly severity: "info";
|
|
123
|
+
readonly description: "API key validated successfully";
|
|
124
|
+
readonly soc2Control: "CC6.1";
|
|
125
|
+
};
|
|
126
|
+
readonly API_KEY_VALIDATION_FAILED: {
|
|
127
|
+
readonly category: "authentication";
|
|
128
|
+
readonly severity: "medium";
|
|
129
|
+
readonly description: "API key validation failed";
|
|
130
|
+
readonly soc2Control: "CC6.1";
|
|
131
|
+
};
|
|
132
|
+
readonly API_KEY_REVOKED: {
|
|
133
|
+
readonly category: "authentication";
|
|
134
|
+
readonly severity: "medium";
|
|
135
|
+
readonly description: "API key revoked";
|
|
136
|
+
readonly soc2Control: "CC6.1";
|
|
137
|
+
};
|
|
138
|
+
readonly API_KEY_ROTATED: {
|
|
139
|
+
readonly category: "authentication";
|
|
140
|
+
readonly severity: "medium";
|
|
141
|
+
readonly description: "API key rotated";
|
|
142
|
+
readonly soc2Control: "CC6.1";
|
|
143
|
+
};
|
|
144
|
+
readonly API_KEY_EXPIRED: {
|
|
145
|
+
readonly category: "authentication";
|
|
146
|
+
readonly severity: "info";
|
|
147
|
+
readonly description: "API key expired";
|
|
148
|
+
readonly soc2Control: "CC6.1";
|
|
149
|
+
};
|
|
150
|
+
readonly API_KEY_DELETED: {
|
|
151
|
+
readonly category: "authentication";
|
|
152
|
+
readonly severity: "medium";
|
|
153
|
+
readonly description: "API key permanently deleted";
|
|
154
|
+
readonly soc2Control: "CC6.1";
|
|
155
|
+
};
|
|
156
|
+
readonly API_KEY_RATE_LIMITED: {
|
|
157
|
+
readonly category: "authentication";
|
|
158
|
+
readonly severity: "medium";
|
|
159
|
+
readonly description: "API key rate limit exceeded";
|
|
160
|
+
readonly soc2Control: "CC6.1";
|
|
161
|
+
};
|
|
162
|
+
readonly MFA_ENROLLED: {
|
|
163
|
+
readonly category: "authentication";
|
|
164
|
+
readonly severity: "medium";
|
|
165
|
+
readonly description: "MFA enrollment completed";
|
|
166
|
+
readonly soc2Control: "CC6.1";
|
|
167
|
+
};
|
|
168
|
+
readonly MFA_ENROLLMENT_STARTED: {
|
|
169
|
+
readonly category: "authentication";
|
|
170
|
+
readonly severity: "info";
|
|
171
|
+
readonly description: "MFA enrollment initiated";
|
|
172
|
+
readonly soc2Control: "CC6.1";
|
|
173
|
+
};
|
|
174
|
+
readonly MFA_ENROLLMENT_VERIFIED: {
|
|
175
|
+
readonly category: "authentication";
|
|
176
|
+
readonly severity: "info";
|
|
177
|
+
readonly description: "MFA enrollment code verified";
|
|
178
|
+
readonly soc2Control: "CC6.1";
|
|
179
|
+
};
|
|
180
|
+
readonly MFA_ENROLLMENT_FAILED: {
|
|
181
|
+
readonly category: "authentication";
|
|
182
|
+
readonly severity: "medium";
|
|
183
|
+
readonly description: "MFA enrollment verification failed";
|
|
184
|
+
readonly soc2Control: "CC6.1";
|
|
185
|
+
};
|
|
186
|
+
readonly MFA_DISABLED: {
|
|
187
|
+
readonly category: "authentication";
|
|
188
|
+
readonly severity: "high";
|
|
189
|
+
readonly description: "MFA disabled for user";
|
|
190
|
+
readonly soc2Control: "CC6.1";
|
|
191
|
+
};
|
|
192
|
+
readonly MFA_CHALLENGE_CREATED: {
|
|
193
|
+
readonly category: "authentication";
|
|
194
|
+
readonly severity: "info";
|
|
195
|
+
readonly description: "MFA challenge initiated";
|
|
196
|
+
readonly soc2Control: "CC6.1";
|
|
197
|
+
};
|
|
198
|
+
readonly MFA_VERIFICATION_SUCCESS: {
|
|
199
|
+
readonly category: "authentication";
|
|
200
|
+
readonly severity: "info";
|
|
201
|
+
readonly description: "MFA verification successful";
|
|
202
|
+
readonly soc2Control: "CC6.1";
|
|
203
|
+
};
|
|
204
|
+
readonly MFA_VERIFICATION_FAILED: {
|
|
205
|
+
readonly category: "authentication";
|
|
206
|
+
readonly severity: "medium";
|
|
207
|
+
readonly description: "MFA verification failed";
|
|
208
|
+
readonly soc2Control: "CC6.1";
|
|
209
|
+
};
|
|
210
|
+
readonly MFA_BACKUP_CODE_USED: {
|
|
211
|
+
readonly category: "authentication";
|
|
212
|
+
readonly severity: "medium";
|
|
213
|
+
readonly description: "MFA backup code used";
|
|
214
|
+
readonly soc2Control: "CC6.1";
|
|
215
|
+
};
|
|
216
|
+
readonly MFA_BACKUP_CODES_REGENERATED: {
|
|
217
|
+
readonly category: "authentication";
|
|
218
|
+
readonly severity: "medium";
|
|
219
|
+
readonly description: "MFA backup codes regenerated";
|
|
220
|
+
readonly soc2Control: "CC6.1";
|
|
221
|
+
};
|
|
222
|
+
readonly MFA_TOO_MANY_ATTEMPTS: {
|
|
223
|
+
readonly category: "authentication";
|
|
224
|
+
readonly severity: "high";
|
|
225
|
+
readonly description: "MFA verification exceeded maximum attempts";
|
|
226
|
+
readonly soc2Control: "CC6.1";
|
|
227
|
+
};
|
|
228
|
+
readonly PASSWORD_CHANGED: {
|
|
229
|
+
readonly category: "authentication";
|
|
230
|
+
readonly severity: "medium";
|
|
231
|
+
readonly description: "Password changed";
|
|
232
|
+
readonly soc2Control: "CC6.1";
|
|
233
|
+
};
|
|
234
|
+
readonly PASSWORD_RESET_REQUESTED: {
|
|
235
|
+
readonly category: "authentication";
|
|
236
|
+
readonly severity: "info";
|
|
237
|
+
readonly description: "Password reset requested";
|
|
238
|
+
readonly soc2Control: "CC6.1";
|
|
239
|
+
};
|
|
240
|
+
readonly PASSWORD_RESET_COMPLETED: {
|
|
241
|
+
readonly category: "authentication";
|
|
242
|
+
readonly severity: "medium";
|
|
243
|
+
readonly description: "Password reset completed";
|
|
244
|
+
readonly soc2Control: "CC6.1";
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* Authorization event types
|
|
249
|
+
*/
|
|
250
|
+
export declare const AUTHORIZATION_EVENT_TYPES: {
|
|
251
|
+
readonly ACCESS_GRANTED: {
|
|
252
|
+
readonly category: "authorization";
|
|
253
|
+
readonly severity: "info";
|
|
254
|
+
readonly description: "Access granted to resource";
|
|
255
|
+
readonly soc2Control: "CC6.2";
|
|
256
|
+
};
|
|
257
|
+
readonly ACCESS_DENIED: {
|
|
258
|
+
readonly category: "authorization";
|
|
259
|
+
readonly severity: "medium";
|
|
260
|
+
readonly description: "Access denied to resource";
|
|
261
|
+
readonly soc2Control: "CC6.2";
|
|
262
|
+
};
|
|
263
|
+
readonly PERMISSION_GRANTED: {
|
|
264
|
+
readonly category: "authorization";
|
|
265
|
+
readonly severity: "medium";
|
|
266
|
+
readonly description: "Permission granted to user";
|
|
267
|
+
readonly soc2Control: "CC6.2";
|
|
268
|
+
};
|
|
269
|
+
readonly PERMISSION_REVOKED: {
|
|
270
|
+
readonly category: "authorization";
|
|
271
|
+
readonly severity: "medium";
|
|
272
|
+
readonly description: "Permission revoked from user";
|
|
273
|
+
readonly soc2Control: "CC6.2";
|
|
274
|
+
};
|
|
275
|
+
readonly ROLE_ASSIGNED: {
|
|
276
|
+
readonly category: "authorization";
|
|
277
|
+
readonly severity: "medium";
|
|
278
|
+
readonly description: "Role assigned to user";
|
|
279
|
+
readonly soc2Control: "CC6.2";
|
|
280
|
+
};
|
|
281
|
+
readonly ROLE_REMOVED: {
|
|
282
|
+
readonly category: "authorization";
|
|
283
|
+
readonly severity: "medium";
|
|
284
|
+
readonly description: "Role removed from user";
|
|
285
|
+
readonly soc2Control: "CC6.2";
|
|
286
|
+
};
|
|
287
|
+
readonly PRIVILEGE_ESCALATED: {
|
|
288
|
+
readonly category: "authorization";
|
|
289
|
+
readonly severity: "high";
|
|
290
|
+
readonly description: "Privilege escalation occurred";
|
|
291
|
+
readonly soc2Control: "CC6.2";
|
|
292
|
+
};
|
|
293
|
+
readonly TRUST_TIER_CHANGED: {
|
|
294
|
+
readonly category: "authorization";
|
|
295
|
+
readonly severity: "medium";
|
|
296
|
+
readonly description: "Entity trust tier changed";
|
|
297
|
+
readonly soc2Control: "CC6.2";
|
|
298
|
+
};
|
|
299
|
+
readonly POLICY_EVALUATED: {
|
|
300
|
+
readonly category: "authorization";
|
|
301
|
+
readonly severity: "info";
|
|
302
|
+
readonly description: "Authorization policy evaluated";
|
|
303
|
+
readonly soc2Control: "CC6.2";
|
|
304
|
+
};
|
|
305
|
+
readonly POLICY_VIOLATION: {
|
|
306
|
+
readonly category: "authorization";
|
|
307
|
+
readonly severity: "high";
|
|
308
|
+
readonly description: "Policy violation detected";
|
|
309
|
+
readonly soc2Control: "CC6.2";
|
|
310
|
+
};
|
|
311
|
+
readonly SCOPE_CHECK_PASSED: {
|
|
312
|
+
readonly category: "authorization";
|
|
313
|
+
readonly severity: "info";
|
|
314
|
+
readonly description: "Scope check passed";
|
|
315
|
+
readonly soc2Control: "CC6.2";
|
|
316
|
+
};
|
|
317
|
+
readonly SCOPE_CHECK_FAILED: {
|
|
318
|
+
readonly category: "authorization";
|
|
319
|
+
readonly severity: "medium";
|
|
320
|
+
readonly description: "Scope check failed";
|
|
321
|
+
readonly soc2Control: "CC6.2";
|
|
322
|
+
};
|
|
323
|
+
readonly DPOP_VERIFIED: {
|
|
324
|
+
readonly category: "authorization";
|
|
325
|
+
readonly severity: "info";
|
|
326
|
+
readonly description: "DPoP proof verified successfully";
|
|
327
|
+
readonly soc2Control: "CC6.2";
|
|
328
|
+
};
|
|
329
|
+
readonly DPOP_FAILED: {
|
|
330
|
+
readonly category: "authorization";
|
|
331
|
+
readonly severity: "medium";
|
|
332
|
+
readonly description: "DPoP proof verification failed";
|
|
333
|
+
readonly soc2Control: "CC6.2";
|
|
334
|
+
};
|
|
335
|
+
readonly AGENT_REVOKED: {
|
|
336
|
+
readonly category: "authorization";
|
|
337
|
+
readonly severity: "high";
|
|
338
|
+
readonly description: "Agent access revoked";
|
|
339
|
+
readonly soc2Control: "CC6.2";
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
/**
|
|
343
|
+
* Data access event types
|
|
344
|
+
*/
|
|
345
|
+
export declare const DATA_ACCESS_EVENT_TYPES: {
|
|
346
|
+
readonly DATA_READ: {
|
|
347
|
+
readonly category: "data_access";
|
|
348
|
+
readonly severity: "info";
|
|
349
|
+
readonly description: "Data read operation";
|
|
350
|
+
readonly soc2Control: "CC6.5";
|
|
351
|
+
};
|
|
352
|
+
readonly DATA_CREATED: {
|
|
353
|
+
readonly category: "data_access";
|
|
354
|
+
readonly severity: "info";
|
|
355
|
+
readonly description: "Data created";
|
|
356
|
+
readonly soc2Control: "CC6.5";
|
|
357
|
+
};
|
|
358
|
+
readonly DATA_UPDATED: {
|
|
359
|
+
readonly category: "data_access";
|
|
360
|
+
readonly severity: "info";
|
|
361
|
+
readonly description: "Data updated";
|
|
362
|
+
readonly soc2Control: "CC6.5";
|
|
363
|
+
};
|
|
364
|
+
readonly DATA_DELETED: {
|
|
365
|
+
readonly category: "data_access";
|
|
366
|
+
readonly severity: "medium";
|
|
367
|
+
readonly description: "Data deleted";
|
|
368
|
+
readonly soc2Control: "CC6.5";
|
|
369
|
+
};
|
|
370
|
+
readonly DATA_EXPORTED: {
|
|
371
|
+
readonly category: "data_access";
|
|
372
|
+
readonly severity: "high";
|
|
373
|
+
readonly description: "Data exported";
|
|
374
|
+
readonly soc2Control: "CC6.5";
|
|
375
|
+
};
|
|
376
|
+
readonly BULK_DATA_ACCESS: {
|
|
377
|
+
readonly category: "data_access";
|
|
378
|
+
readonly severity: "high";
|
|
379
|
+
readonly description: "Bulk data access operation";
|
|
380
|
+
readonly soc2Control: "CC6.5";
|
|
381
|
+
};
|
|
382
|
+
readonly SENSITIVE_DATA_ACCESS: {
|
|
383
|
+
readonly category: "data_access";
|
|
384
|
+
readonly severity: "high";
|
|
385
|
+
readonly description: "Sensitive data accessed";
|
|
386
|
+
readonly soc2Control: "CC6.5";
|
|
387
|
+
};
|
|
388
|
+
readonly PII_ACCESSED: {
|
|
389
|
+
readonly category: "data_access";
|
|
390
|
+
readonly severity: "high";
|
|
391
|
+
readonly description: "Personally identifiable information accessed";
|
|
392
|
+
readonly soc2Control: "CC6.5";
|
|
393
|
+
};
|
|
394
|
+
readonly AUDIT_LOG_ACCESSED: {
|
|
395
|
+
readonly category: "data_access";
|
|
396
|
+
readonly severity: "medium";
|
|
397
|
+
readonly description: "Audit log accessed";
|
|
398
|
+
readonly soc2Control: "CC6.5";
|
|
399
|
+
};
|
|
400
|
+
readonly AUDIT_LOG_EXPORTED: {
|
|
401
|
+
readonly category: "data_access";
|
|
402
|
+
readonly severity: "high";
|
|
403
|
+
readonly description: "Audit log exported";
|
|
404
|
+
readonly soc2Control: "CC6.5";
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Configuration event types
|
|
409
|
+
*/
|
|
410
|
+
export declare const CONFIGURATION_EVENT_TYPES: {
|
|
411
|
+
readonly CONFIG_CHANGED: {
|
|
412
|
+
readonly category: "configuration";
|
|
413
|
+
readonly severity: "high";
|
|
414
|
+
readonly description: "System configuration changed";
|
|
415
|
+
readonly soc2Control: "CC8.1";
|
|
416
|
+
};
|
|
417
|
+
readonly SECURITY_SETTING_CHANGED: {
|
|
418
|
+
readonly category: "configuration";
|
|
419
|
+
readonly severity: "high";
|
|
420
|
+
readonly description: "Security setting modified";
|
|
421
|
+
readonly soc2Control: "CC8.1";
|
|
422
|
+
};
|
|
423
|
+
readonly KEY_CREATED: {
|
|
424
|
+
readonly category: "configuration";
|
|
425
|
+
readonly severity: "high";
|
|
426
|
+
readonly description: "Encryption key created";
|
|
427
|
+
readonly soc2Control: "CC8.1";
|
|
428
|
+
};
|
|
429
|
+
readonly KEY_ROTATED: {
|
|
430
|
+
readonly category: "configuration";
|
|
431
|
+
readonly severity: "high";
|
|
432
|
+
readonly description: "Encryption key rotated";
|
|
433
|
+
readonly soc2Control: "CC8.1";
|
|
434
|
+
};
|
|
435
|
+
readonly KEY_REVOKED: {
|
|
436
|
+
readonly category: "configuration";
|
|
437
|
+
readonly severity: "critical";
|
|
438
|
+
readonly description: "Encryption key revoked";
|
|
439
|
+
readonly soc2Control: "CC8.1";
|
|
440
|
+
};
|
|
441
|
+
readonly KEY_ACCESSED: {
|
|
442
|
+
readonly category: "configuration";
|
|
443
|
+
readonly severity: "medium";
|
|
444
|
+
readonly description: "Encryption key accessed";
|
|
445
|
+
readonly soc2Control: "CC8.1";
|
|
446
|
+
};
|
|
447
|
+
readonly SECRET_ROTATED: {
|
|
448
|
+
readonly category: "configuration";
|
|
449
|
+
readonly severity: "high";
|
|
450
|
+
readonly description: "Secret rotated";
|
|
451
|
+
readonly soc2Control: "CC8.1";
|
|
452
|
+
};
|
|
453
|
+
readonly SECRET_ACCESSED: {
|
|
454
|
+
readonly category: "configuration";
|
|
455
|
+
readonly severity: "medium";
|
|
456
|
+
readonly description: "Secret accessed";
|
|
457
|
+
readonly soc2Control: "CC8.1";
|
|
458
|
+
};
|
|
459
|
+
readonly POLICY_CREATED: {
|
|
460
|
+
readonly category: "configuration";
|
|
461
|
+
readonly severity: "medium";
|
|
462
|
+
readonly description: "Security policy created";
|
|
463
|
+
readonly soc2Control: "CC8.1";
|
|
464
|
+
};
|
|
465
|
+
readonly POLICY_UPDATED: {
|
|
466
|
+
readonly category: "configuration";
|
|
467
|
+
readonly severity: "high";
|
|
468
|
+
readonly description: "Security policy updated";
|
|
469
|
+
readonly soc2Control: "CC8.1";
|
|
470
|
+
};
|
|
471
|
+
readonly POLICY_DELETED: {
|
|
472
|
+
readonly category: "configuration";
|
|
473
|
+
readonly severity: "high";
|
|
474
|
+
readonly description: "Security policy deleted";
|
|
475
|
+
readonly soc2Control: "CC8.1";
|
|
476
|
+
};
|
|
477
|
+
readonly TENANT_CREATED: {
|
|
478
|
+
readonly category: "configuration";
|
|
479
|
+
readonly severity: "medium";
|
|
480
|
+
readonly description: "Tenant created";
|
|
481
|
+
readonly soc2Control: "CC8.1";
|
|
482
|
+
};
|
|
483
|
+
readonly TENANT_UPDATED: {
|
|
484
|
+
readonly category: "configuration";
|
|
485
|
+
readonly severity: "medium";
|
|
486
|
+
readonly description: "Tenant configuration updated";
|
|
487
|
+
readonly soc2Control: "CC8.1";
|
|
488
|
+
};
|
|
489
|
+
readonly USER_CREATED: {
|
|
490
|
+
readonly category: "configuration";
|
|
491
|
+
readonly severity: "medium";
|
|
492
|
+
readonly description: "User account created";
|
|
493
|
+
readonly soc2Control: "CC8.1";
|
|
494
|
+
};
|
|
495
|
+
readonly USER_UPDATED: {
|
|
496
|
+
readonly category: "configuration";
|
|
497
|
+
readonly severity: "medium";
|
|
498
|
+
readonly description: "User account updated";
|
|
499
|
+
readonly soc2Control: "CC8.1";
|
|
500
|
+
};
|
|
501
|
+
readonly USER_DELETED: {
|
|
502
|
+
readonly category: "configuration";
|
|
503
|
+
readonly severity: "high";
|
|
504
|
+
readonly description: "User account deleted";
|
|
505
|
+
readonly soc2Control: "CC8.1";
|
|
506
|
+
};
|
|
507
|
+
readonly USER_DISABLED: {
|
|
508
|
+
readonly category: "configuration";
|
|
509
|
+
readonly severity: "medium";
|
|
510
|
+
readonly description: "User account disabled";
|
|
511
|
+
readonly soc2Control: "CC8.1";
|
|
512
|
+
};
|
|
513
|
+
readonly USER_ENABLED: {
|
|
514
|
+
readonly category: "configuration";
|
|
515
|
+
readonly severity: "medium";
|
|
516
|
+
readonly description: "User account enabled";
|
|
517
|
+
readonly soc2Control: "CC8.1";
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
/**
|
|
521
|
+
* Incident and security alert event types
|
|
522
|
+
*/
|
|
523
|
+
export declare const INCIDENT_EVENT_TYPES: {
|
|
524
|
+
readonly BRUTE_FORCE_DETECTED: {
|
|
525
|
+
readonly category: "incident";
|
|
526
|
+
readonly severity: "critical";
|
|
527
|
+
readonly description: "Brute force attack detected";
|
|
528
|
+
readonly soc2Control: "CC7.2";
|
|
529
|
+
};
|
|
530
|
+
readonly INJECTION_ATTEMPT: {
|
|
531
|
+
readonly category: "incident";
|
|
532
|
+
readonly severity: "critical";
|
|
533
|
+
readonly description: "Injection attack attempt detected";
|
|
534
|
+
readonly soc2Control: "CC7.2";
|
|
535
|
+
};
|
|
536
|
+
readonly ANOMALY_DETECTED: {
|
|
537
|
+
readonly category: "incident";
|
|
538
|
+
readonly severity: "high";
|
|
539
|
+
readonly description: "Anomalous behavior detected";
|
|
540
|
+
readonly soc2Control: "CC7.2";
|
|
541
|
+
};
|
|
542
|
+
readonly RATE_LIMIT_EXCEEDED: {
|
|
543
|
+
readonly category: "incident";
|
|
544
|
+
readonly severity: "medium";
|
|
545
|
+
readonly description: "Rate limit exceeded";
|
|
546
|
+
readonly soc2Control: "CC7.2";
|
|
547
|
+
};
|
|
548
|
+
readonly IP_BLOCKED: {
|
|
549
|
+
readonly category: "incident";
|
|
550
|
+
readonly severity: "high";
|
|
551
|
+
readonly description: "IP address blocked";
|
|
552
|
+
readonly soc2Control: "CC7.2";
|
|
553
|
+
};
|
|
554
|
+
readonly IP_UNBLOCKED: {
|
|
555
|
+
readonly category: "incident";
|
|
556
|
+
readonly severity: "medium";
|
|
557
|
+
readonly description: "IP address unblocked";
|
|
558
|
+
readonly soc2Control: "CC7.2";
|
|
559
|
+
};
|
|
560
|
+
readonly SUSPICIOUS_ACTIVITY: {
|
|
561
|
+
readonly category: "incident";
|
|
562
|
+
readonly severity: "high";
|
|
563
|
+
readonly description: "Suspicious activity flagged";
|
|
564
|
+
readonly soc2Control: "CC7.2";
|
|
565
|
+
};
|
|
566
|
+
readonly SECURITY_ALERT: {
|
|
567
|
+
readonly category: "incident";
|
|
568
|
+
readonly severity: "high";
|
|
569
|
+
readonly description: "Security alert triggered";
|
|
570
|
+
readonly soc2Control: "CC7.2";
|
|
571
|
+
};
|
|
572
|
+
readonly INCIDENT_CREATED: {
|
|
573
|
+
readonly category: "incident";
|
|
574
|
+
readonly severity: "critical";
|
|
575
|
+
readonly description: "Security incident created";
|
|
576
|
+
readonly soc2Control: "CC7.3";
|
|
577
|
+
};
|
|
578
|
+
readonly INCIDENT_UPDATED: {
|
|
579
|
+
readonly category: "incident";
|
|
580
|
+
readonly severity: "high";
|
|
581
|
+
readonly description: "Security incident updated";
|
|
582
|
+
readonly soc2Control: "CC7.3";
|
|
583
|
+
};
|
|
584
|
+
readonly INCIDENT_RESOLVED: {
|
|
585
|
+
readonly category: "incident";
|
|
586
|
+
readonly severity: "medium";
|
|
587
|
+
readonly description: "Security incident resolved";
|
|
588
|
+
readonly soc2Control: "CC7.3";
|
|
589
|
+
};
|
|
590
|
+
readonly GEOGRAPHIC_ANOMALY: {
|
|
591
|
+
readonly category: "incident";
|
|
592
|
+
readonly severity: "high";
|
|
593
|
+
readonly description: "Geographic access anomaly detected";
|
|
594
|
+
readonly soc2Control: "CC7.2";
|
|
595
|
+
};
|
|
596
|
+
readonly TEMPORAL_ANOMALY: {
|
|
597
|
+
readonly category: "incident";
|
|
598
|
+
readonly severity: "medium";
|
|
599
|
+
readonly description: "Temporal access anomaly detected";
|
|
600
|
+
readonly soc2Control: "CC7.2";
|
|
601
|
+
};
|
|
602
|
+
readonly VOLUME_ANOMALY: {
|
|
603
|
+
readonly category: "incident";
|
|
604
|
+
readonly severity: "high";
|
|
605
|
+
readonly description: "Access volume anomaly detected";
|
|
606
|
+
readonly soc2Control: "CC7.2";
|
|
607
|
+
};
|
|
608
|
+
readonly CERTIFICATE_INVALID: {
|
|
609
|
+
readonly category: "incident";
|
|
610
|
+
readonly severity: "high";
|
|
611
|
+
readonly description: "Invalid certificate detected";
|
|
612
|
+
readonly soc2Control: "CC7.2";
|
|
613
|
+
};
|
|
614
|
+
readonly INTEGRITY_VIOLATION: {
|
|
615
|
+
readonly category: "incident";
|
|
616
|
+
readonly severity: "critical";
|
|
617
|
+
readonly description: "Data integrity violation detected";
|
|
618
|
+
readonly soc2Control: "CC7.2";
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
/**
|
|
622
|
+
* Combined security event types for comprehensive logging
|
|
623
|
+
*/
|
|
624
|
+
export declare const SECURITY_EVENT_TYPES: {
|
|
625
|
+
readonly BRUTE_FORCE_DETECTED: {
|
|
626
|
+
readonly category: "incident";
|
|
627
|
+
readonly severity: "critical";
|
|
628
|
+
readonly description: "Brute force attack detected";
|
|
629
|
+
readonly soc2Control: "CC7.2";
|
|
630
|
+
};
|
|
631
|
+
readonly INJECTION_ATTEMPT: {
|
|
632
|
+
readonly category: "incident";
|
|
633
|
+
readonly severity: "critical";
|
|
634
|
+
readonly description: "Injection attack attempt detected";
|
|
635
|
+
readonly soc2Control: "CC7.2";
|
|
636
|
+
};
|
|
637
|
+
readonly ANOMALY_DETECTED: {
|
|
638
|
+
readonly category: "incident";
|
|
639
|
+
readonly severity: "high";
|
|
640
|
+
readonly description: "Anomalous behavior detected";
|
|
641
|
+
readonly soc2Control: "CC7.2";
|
|
642
|
+
};
|
|
643
|
+
readonly RATE_LIMIT_EXCEEDED: {
|
|
644
|
+
readonly category: "incident";
|
|
645
|
+
readonly severity: "medium";
|
|
646
|
+
readonly description: "Rate limit exceeded";
|
|
647
|
+
readonly soc2Control: "CC7.2";
|
|
648
|
+
};
|
|
649
|
+
readonly IP_BLOCKED: {
|
|
650
|
+
readonly category: "incident";
|
|
651
|
+
readonly severity: "high";
|
|
652
|
+
readonly description: "IP address blocked";
|
|
653
|
+
readonly soc2Control: "CC7.2";
|
|
654
|
+
};
|
|
655
|
+
readonly IP_UNBLOCKED: {
|
|
656
|
+
readonly category: "incident";
|
|
657
|
+
readonly severity: "medium";
|
|
658
|
+
readonly description: "IP address unblocked";
|
|
659
|
+
readonly soc2Control: "CC7.2";
|
|
660
|
+
};
|
|
661
|
+
readonly SUSPICIOUS_ACTIVITY: {
|
|
662
|
+
readonly category: "incident";
|
|
663
|
+
readonly severity: "high";
|
|
664
|
+
readonly description: "Suspicious activity flagged";
|
|
665
|
+
readonly soc2Control: "CC7.2";
|
|
666
|
+
};
|
|
667
|
+
readonly SECURITY_ALERT: {
|
|
668
|
+
readonly category: "incident";
|
|
669
|
+
readonly severity: "high";
|
|
670
|
+
readonly description: "Security alert triggered";
|
|
671
|
+
readonly soc2Control: "CC7.2";
|
|
672
|
+
};
|
|
673
|
+
readonly INCIDENT_CREATED: {
|
|
674
|
+
readonly category: "incident";
|
|
675
|
+
readonly severity: "critical";
|
|
676
|
+
readonly description: "Security incident created";
|
|
677
|
+
readonly soc2Control: "CC7.3";
|
|
678
|
+
};
|
|
679
|
+
readonly INCIDENT_UPDATED: {
|
|
680
|
+
readonly category: "incident";
|
|
681
|
+
readonly severity: "high";
|
|
682
|
+
readonly description: "Security incident updated";
|
|
683
|
+
readonly soc2Control: "CC7.3";
|
|
684
|
+
};
|
|
685
|
+
readonly INCIDENT_RESOLVED: {
|
|
686
|
+
readonly category: "incident";
|
|
687
|
+
readonly severity: "medium";
|
|
688
|
+
readonly description: "Security incident resolved";
|
|
689
|
+
readonly soc2Control: "CC7.3";
|
|
690
|
+
};
|
|
691
|
+
readonly GEOGRAPHIC_ANOMALY: {
|
|
692
|
+
readonly category: "incident";
|
|
693
|
+
readonly severity: "high";
|
|
694
|
+
readonly description: "Geographic access anomaly detected";
|
|
695
|
+
readonly soc2Control: "CC7.2";
|
|
696
|
+
};
|
|
697
|
+
readonly TEMPORAL_ANOMALY: {
|
|
698
|
+
readonly category: "incident";
|
|
699
|
+
readonly severity: "medium";
|
|
700
|
+
readonly description: "Temporal access anomaly detected";
|
|
701
|
+
readonly soc2Control: "CC7.2";
|
|
702
|
+
};
|
|
703
|
+
readonly VOLUME_ANOMALY: {
|
|
704
|
+
readonly category: "incident";
|
|
705
|
+
readonly severity: "high";
|
|
706
|
+
readonly description: "Access volume anomaly detected";
|
|
707
|
+
readonly soc2Control: "CC7.2";
|
|
708
|
+
};
|
|
709
|
+
readonly CERTIFICATE_INVALID: {
|
|
710
|
+
readonly category: "incident";
|
|
711
|
+
readonly severity: "high";
|
|
712
|
+
readonly description: "Invalid certificate detected";
|
|
713
|
+
readonly soc2Control: "CC7.2";
|
|
714
|
+
};
|
|
715
|
+
readonly INTEGRITY_VIOLATION: {
|
|
716
|
+
readonly category: "incident";
|
|
717
|
+
readonly severity: "critical";
|
|
718
|
+
readonly description: "Data integrity violation detected";
|
|
719
|
+
readonly soc2Control: "CC7.2";
|
|
720
|
+
};
|
|
721
|
+
readonly CONFIG_CHANGED: {
|
|
722
|
+
readonly category: "configuration";
|
|
723
|
+
readonly severity: "high";
|
|
724
|
+
readonly description: "System configuration changed";
|
|
725
|
+
readonly soc2Control: "CC8.1";
|
|
726
|
+
};
|
|
727
|
+
readonly SECURITY_SETTING_CHANGED: {
|
|
728
|
+
readonly category: "configuration";
|
|
729
|
+
readonly severity: "high";
|
|
730
|
+
readonly description: "Security setting modified";
|
|
731
|
+
readonly soc2Control: "CC8.1";
|
|
732
|
+
};
|
|
733
|
+
readonly KEY_CREATED: {
|
|
734
|
+
readonly category: "configuration";
|
|
735
|
+
readonly severity: "high";
|
|
736
|
+
readonly description: "Encryption key created";
|
|
737
|
+
readonly soc2Control: "CC8.1";
|
|
738
|
+
};
|
|
739
|
+
readonly KEY_ROTATED: {
|
|
740
|
+
readonly category: "configuration";
|
|
741
|
+
readonly severity: "high";
|
|
742
|
+
readonly description: "Encryption key rotated";
|
|
743
|
+
readonly soc2Control: "CC8.1";
|
|
744
|
+
};
|
|
745
|
+
readonly KEY_REVOKED: {
|
|
746
|
+
readonly category: "configuration";
|
|
747
|
+
readonly severity: "critical";
|
|
748
|
+
readonly description: "Encryption key revoked";
|
|
749
|
+
readonly soc2Control: "CC8.1";
|
|
750
|
+
};
|
|
751
|
+
readonly KEY_ACCESSED: {
|
|
752
|
+
readonly category: "configuration";
|
|
753
|
+
readonly severity: "medium";
|
|
754
|
+
readonly description: "Encryption key accessed";
|
|
755
|
+
readonly soc2Control: "CC8.1";
|
|
756
|
+
};
|
|
757
|
+
readonly SECRET_ROTATED: {
|
|
758
|
+
readonly category: "configuration";
|
|
759
|
+
readonly severity: "high";
|
|
760
|
+
readonly description: "Secret rotated";
|
|
761
|
+
readonly soc2Control: "CC8.1";
|
|
762
|
+
};
|
|
763
|
+
readonly SECRET_ACCESSED: {
|
|
764
|
+
readonly category: "configuration";
|
|
765
|
+
readonly severity: "medium";
|
|
766
|
+
readonly description: "Secret accessed";
|
|
767
|
+
readonly soc2Control: "CC8.1";
|
|
768
|
+
};
|
|
769
|
+
readonly POLICY_CREATED: {
|
|
770
|
+
readonly category: "configuration";
|
|
771
|
+
readonly severity: "medium";
|
|
772
|
+
readonly description: "Security policy created";
|
|
773
|
+
readonly soc2Control: "CC8.1";
|
|
774
|
+
};
|
|
775
|
+
readonly POLICY_UPDATED: {
|
|
776
|
+
readonly category: "configuration";
|
|
777
|
+
readonly severity: "high";
|
|
778
|
+
readonly description: "Security policy updated";
|
|
779
|
+
readonly soc2Control: "CC8.1";
|
|
780
|
+
};
|
|
781
|
+
readonly POLICY_DELETED: {
|
|
782
|
+
readonly category: "configuration";
|
|
783
|
+
readonly severity: "high";
|
|
784
|
+
readonly description: "Security policy deleted";
|
|
785
|
+
readonly soc2Control: "CC8.1";
|
|
786
|
+
};
|
|
787
|
+
readonly TENANT_CREATED: {
|
|
788
|
+
readonly category: "configuration";
|
|
789
|
+
readonly severity: "medium";
|
|
790
|
+
readonly description: "Tenant created";
|
|
791
|
+
readonly soc2Control: "CC8.1";
|
|
792
|
+
};
|
|
793
|
+
readonly TENANT_UPDATED: {
|
|
794
|
+
readonly category: "configuration";
|
|
795
|
+
readonly severity: "medium";
|
|
796
|
+
readonly description: "Tenant configuration updated";
|
|
797
|
+
readonly soc2Control: "CC8.1";
|
|
798
|
+
};
|
|
799
|
+
readonly USER_CREATED: {
|
|
800
|
+
readonly category: "configuration";
|
|
801
|
+
readonly severity: "medium";
|
|
802
|
+
readonly description: "User account created";
|
|
803
|
+
readonly soc2Control: "CC8.1";
|
|
804
|
+
};
|
|
805
|
+
readonly USER_UPDATED: {
|
|
806
|
+
readonly category: "configuration";
|
|
807
|
+
readonly severity: "medium";
|
|
808
|
+
readonly description: "User account updated";
|
|
809
|
+
readonly soc2Control: "CC8.1";
|
|
810
|
+
};
|
|
811
|
+
readonly USER_DELETED: {
|
|
812
|
+
readonly category: "configuration";
|
|
813
|
+
readonly severity: "high";
|
|
814
|
+
readonly description: "User account deleted";
|
|
815
|
+
readonly soc2Control: "CC8.1";
|
|
816
|
+
};
|
|
817
|
+
readonly USER_DISABLED: {
|
|
818
|
+
readonly category: "configuration";
|
|
819
|
+
readonly severity: "medium";
|
|
820
|
+
readonly description: "User account disabled";
|
|
821
|
+
readonly soc2Control: "CC8.1";
|
|
822
|
+
};
|
|
823
|
+
readonly USER_ENABLED: {
|
|
824
|
+
readonly category: "configuration";
|
|
825
|
+
readonly severity: "medium";
|
|
826
|
+
readonly description: "User account enabled";
|
|
827
|
+
readonly soc2Control: "CC8.1";
|
|
828
|
+
};
|
|
829
|
+
readonly DATA_READ: {
|
|
830
|
+
readonly category: "data_access";
|
|
831
|
+
readonly severity: "info";
|
|
832
|
+
readonly description: "Data read operation";
|
|
833
|
+
readonly soc2Control: "CC6.5";
|
|
834
|
+
};
|
|
835
|
+
readonly DATA_CREATED: {
|
|
836
|
+
readonly category: "data_access";
|
|
837
|
+
readonly severity: "info";
|
|
838
|
+
readonly description: "Data created";
|
|
839
|
+
readonly soc2Control: "CC6.5";
|
|
840
|
+
};
|
|
841
|
+
readonly DATA_UPDATED: {
|
|
842
|
+
readonly category: "data_access";
|
|
843
|
+
readonly severity: "info";
|
|
844
|
+
readonly description: "Data updated";
|
|
845
|
+
readonly soc2Control: "CC6.5";
|
|
846
|
+
};
|
|
847
|
+
readonly DATA_DELETED: {
|
|
848
|
+
readonly category: "data_access";
|
|
849
|
+
readonly severity: "medium";
|
|
850
|
+
readonly description: "Data deleted";
|
|
851
|
+
readonly soc2Control: "CC6.5";
|
|
852
|
+
};
|
|
853
|
+
readonly DATA_EXPORTED: {
|
|
854
|
+
readonly category: "data_access";
|
|
855
|
+
readonly severity: "high";
|
|
856
|
+
readonly description: "Data exported";
|
|
857
|
+
readonly soc2Control: "CC6.5";
|
|
858
|
+
};
|
|
859
|
+
readonly BULK_DATA_ACCESS: {
|
|
860
|
+
readonly category: "data_access";
|
|
861
|
+
readonly severity: "high";
|
|
862
|
+
readonly description: "Bulk data access operation";
|
|
863
|
+
readonly soc2Control: "CC6.5";
|
|
864
|
+
};
|
|
865
|
+
readonly SENSITIVE_DATA_ACCESS: {
|
|
866
|
+
readonly category: "data_access";
|
|
867
|
+
readonly severity: "high";
|
|
868
|
+
readonly description: "Sensitive data accessed";
|
|
869
|
+
readonly soc2Control: "CC6.5";
|
|
870
|
+
};
|
|
871
|
+
readonly PII_ACCESSED: {
|
|
872
|
+
readonly category: "data_access";
|
|
873
|
+
readonly severity: "high";
|
|
874
|
+
readonly description: "Personally identifiable information accessed";
|
|
875
|
+
readonly soc2Control: "CC6.5";
|
|
876
|
+
};
|
|
877
|
+
readonly AUDIT_LOG_ACCESSED: {
|
|
878
|
+
readonly category: "data_access";
|
|
879
|
+
readonly severity: "medium";
|
|
880
|
+
readonly description: "Audit log accessed";
|
|
881
|
+
readonly soc2Control: "CC6.5";
|
|
882
|
+
};
|
|
883
|
+
readonly AUDIT_LOG_EXPORTED: {
|
|
884
|
+
readonly category: "data_access";
|
|
885
|
+
readonly severity: "high";
|
|
886
|
+
readonly description: "Audit log exported";
|
|
887
|
+
readonly soc2Control: "CC6.5";
|
|
888
|
+
};
|
|
889
|
+
readonly ACCESS_GRANTED: {
|
|
890
|
+
readonly category: "authorization";
|
|
891
|
+
readonly severity: "info";
|
|
892
|
+
readonly description: "Access granted to resource";
|
|
893
|
+
readonly soc2Control: "CC6.2";
|
|
894
|
+
};
|
|
895
|
+
readonly ACCESS_DENIED: {
|
|
896
|
+
readonly category: "authorization";
|
|
897
|
+
readonly severity: "medium";
|
|
898
|
+
readonly description: "Access denied to resource";
|
|
899
|
+
readonly soc2Control: "CC6.2";
|
|
900
|
+
};
|
|
901
|
+
readonly PERMISSION_GRANTED: {
|
|
902
|
+
readonly category: "authorization";
|
|
903
|
+
readonly severity: "medium";
|
|
904
|
+
readonly description: "Permission granted to user";
|
|
905
|
+
readonly soc2Control: "CC6.2";
|
|
906
|
+
};
|
|
907
|
+
readonly PERMISSION_REVOKED: {
|
|
908
|
+
readonly category: "authorization";
|
|
909
|
+
readonly severity: "medium";
|
|
910
|
+
readonly description: "Permission revoked from user";
|
|
911
|
+
readonly soc2Control: "CC6.2";
|
|
912
|
+
};
|
|
913
|
+
readonly ROLE_ASSIGNED: {
|
|
914
|
+
readonly category: "authorization";
|
|
915
|
+
readonly severity: "medium";
|
|
916
|
+
readonly description: "Role assigned to user";
|
|
917
|
+
readonly soc2Control: "CC6.2";
|
|
918
|
+
};
|
|
919
|
+
readonly ROLE_REMOVED: {
|
|
920
|
+
readonly category: "authorization";
|
|
921
|
+
readonly severity: "medium";
|
|
922
|
+
readonly description: "Role removed from user";
|
|
923
|
+
readonly soc2Control: "CC6.2";
|
|
924
|
+
};
|
|
925
|
+
readonly PRIVILEGE_ESCALATED: {
|
|
926
|
+
readonly category: "authorization";
|
|
927
|
+
readonly severity: "high";
|
|
928
|
+
readonly description: "Privilege escalation occurred";
|
|
929
|
+
readonly soc2Control: "CC6.2";
|
|
930
|
+
};
|
|
931
|
+
readonly TRUST_TIER_CHANGED: {
|
|
932
|
+
readonly category: "authorization";
|
|
933
|
+
readonly severity: "medium";
|
|
934
|
+
readonly description: "Entity trust tier changed";
|
|
935
|
+
readonly soc2Control: "CC6.2";
|
|
936
|
+
};
|
|
937
|
+
readonly POLICY_EVALUATED: {
|
|
938
|
+
readonly category: "authorization";
|
|
939
|
+
readonly severity: "info";
|
|
940
|
+
readonly description: "Authorization policy evaluated";
|
|
941
|
+
readonly soc2Control: "CC6.2";
|
|
942
|
+
};
|
|
943
|
+
readonly POLICY_VIOLATION: {
|
|
944
|
+
readonly category: "authorization";
|
|
945
|
+
readonly severity: "high";
|
|
946
|
+
readonly description: "Policy violation detected";
|
|
947
|
+
readonly soc2Control: "CC6.2";
|
|
948
|
+
};
|
|
949
|
+
readonly SCOPE_CHECK_PASSED: {
|
|
950
|
+
readonly category: "authorization";
|
|
951
|
+
readonly severity: "info";
|
|
952
|
+
readonly description: "Scope check passed";
|
|
953
|
+
readonly soc2Control: "CC6.2";
|
|
954
|
+
};
|
|
955
|
+
readonly SCOPE_CHECK_FAILED: {
|
|
956
|
+
readonly category: "authorization";
|
|
957
|
+
readonly severity: "medium";
|
|
958
|
+
readonly description: "Scope check failed";
|
|
959
|
+
readonly soc2Control: "CC6.2";
|
|
960
|
+
};
|
|
961
|
+
readonly DPOP_VERIFIED: {
|
|
962
|
+
readonly category: "authorization";
|
|
963
|
+
readonly severity: "info";
|
|
964
|
+
readonly description: "DPoP proof verified successfully";
|
|
965
|
+
readonly soc2Control: "CC6.2";
|
|
966
|
+
};
|
|
967
|
+
readonly DPOP_FAILED: {
|
|
968
|
+
readonly category: "authorization";
|
|
969
|
+
readonly severity: "medium";
|
|
970
|
+
readonly description: "DPoP proof verification failed";
|
|
971
|
+
readonly soc2Control: "CC6.2";
|
|
972
|
+
};
|
|
973
|
+
readonly AGENT_REVOKED: {
|
|
974
|
+
readonly category: "authorization";
|
|
975
|
+
readonly severity: "high";
|
|
976
|
+
readonly description: "Agent access revoked";
|
|
977
|
+
readonly soc2Control: "CC6.2";
|
|
978
|
+
};
|
|
979
|
+
readonly LOGIN_SUCCESS: {
|
|
980
|
+
readonly category: "authentication";
|
|
981
|
+
readonly severity: "info";
|
|
982
|
+
readonly description: "User successfully authenticated";
|
|
983
|
+
readonly soc2Control: "CC6.1";
|
|
984
|
+
};
|
|
985
|
+
readonly LOGIN_FAILURE: {
|
|
986
|
+
readonly category: "authentication";
|
|
987
|
+
readonly severity: "medium";
|
|
988
|
+
readonly description: "Authentication attempt failed";
|
|
989
|
+
readonly soc2Control: "CC6.1";
|
|
990
|
+
};
|
|
991
|
+
readonly LOGOUT: {
|
|
992
|
+
readonly category: "authentication";
|
|
993
|
+
readonly severity: "info";
|
|
994
|
+
readonly description: "User logged out";
|
|
995
|
+
readonly soc2Control: "CC6.1";
|
|
996
|
+
};
|
|
997
|
+
readonly LOGIN_LOCKED: {
|
|
998
|
+
readonly category: "authentication";
|
|
999
|
+
readonly severity: "high";
|
|
1000
|
+
readonly description: "Account locked due to failed attempts";
|
|
1001
|
+
readonly soc2Control: "CC6.1";
|
|
1002
|
+
};
|
|
1003
|
+
readonly SESSION_CREATED: {
|
|
1004
|
+
readonly category: "authentication";
|
|
1005
|
+
readonly severity: "info";
|
|
1006
|
+
readonly description: "New session established";
|
|
1007
|
+
readonly soc2Control: "CC6.1";
|
|
1008
|
+
};
|
|
1009
|
+
readonly SESSION_VALIDATED: {
|
|
1010
|
+
readonly category: "authentication";
|
|
1011
|
+
readonly severity: "info";
|
|
1012
|
+
readonly description: "Session validated successfully";
|
|
1013
|
+
readonly soc2Control: "CC6.1";
|
|
1014
|
+
};
|
|
1015
|
+
readonly SESSION_INVALID: {
|
|
1016
|
+
readonly category: "authentication";
|
|
1017
|
+
readonly severity: "medium";
|
|
1018
|
+
readonly description: "Session validation failed";
|
|
1019
|
+
readonly soc2Control: "CC6.1";
|
|
1020
|
+
};
|
|
1021
|
+
readonly SESSION_EXPIRED: {
|
|
1022
|
+
readonly category: "authentication";
|
|
1023
|
+
readonly severity: "info";
|
|
1024
|
+
readonly description: "Session expired naturally";
|
|
1025
|
+
readonly soc2Control: "CC6.1";
|
|
1026
|
+
};
|
|
1027
|
+
readonly SESSION_REVOKED: {
|
|
1028
|
+
readonly category: "authentication";
|
|
1029
|
+
readonly severity: "medium";
|
|
1030
|
+
readonly description: "Session forcibly terminated";
|
|
1031
|
+
readonly soc2Control: "CC6.1";
|
|
1032
|
+
};
|
|
1033
|
+
readonly SESSIONS_BULK_REVOKED: {
|
|
1034
|
+
readonly category: "authentication";
|
|
1035
|
+
readonly severity: "high";
|
|
1036
|
+
readonly description: "Multiple sessions revoked for user";
|
|
1037
|
+
readonly soc2Control: "CC6.1";
|
|
1038
|
+
};
|
|
1039
|
+
readonly TOKEN_ISSUED: {
|
|
1040
|
+
readonly category: "authentication";
|
|
1041
|
+
readonly severity: "info";
|
|
1042
|
+
readonly description: "Access token issued";
|
|
1043
|
+
readonly soc2Control: "CC6.1";
|
|
1044
|
+
};
|
|
1045
|
+
readonly TOKEN_REFRESHED: {
|
|
1046
|
+
readonly category: "authentication";
|
|
1047
|
+
readonly severity: "info";
|
|
1048
|
+
readonly description: "Access token refreshed";
|
|
1049
|
+
readonly soc2Control: "CC6.1";
|
|
1050
|
+
};
|
|
1051
|
+
readonly TOKEN_REVOKED: {
|
|
1052
|
+
readonly category: "authentication";
|
|
1053
|
+
readonly severity: "medium";
|
|
1054
|
+
readonly description: "Token manually revoked";
|
|
1055
|
+
readonly soc2Control: "CC6.1";
|
|
1056
|
+
};
|
|
1057
|
+
readonly TOKEN_VALIDATION_FAILED: {
|
|
1058
|
+
readonly category: "authentication";
|
|
1059
|
+
readonly severity: "medium";
|
|
1060
|
+
readonly description: "Token validation failed";
|
|
1061
|
+
readonly soc2Control: "CC6.1";
|
|
1062
|
+
};
|
|
1063
|
+
readonly API_KEY_CREATED: {
|
|
1064
|
+
readonly category: "authentication";
|
|
1065
|
+
readonly severity: "medium";
|
|
1066
|
+
readonly description: "API key created";
|
|
1067
|
+
readonly soc2Control: "CC6.1";
|
|
1068
|
+
};
|
|
1069
|
+
readonly API_KEY_VALIDATED: {
|
|
1070
|
+
readonly category: "authentication";
|
|
1071
|
+
readonly severity: "info";
|
|
1072
|
+
readonly description: "API key validated successfully";
|
|
1073
|
+
readonly soc2Control: "CC6.1";
|
|
1074
|
+
};
|
|
1075
|
+
readonly API_KEY_VALIDATION_FAILED: {
|
|
1076
|
+
readonly category: "authentication";
|
|
1077
|
+
readonly severity: "medium";
|
|
1078
|
+
readonly description: "API key validation failed";
|
|
1079
|
+
readonly soc2Control: "CC6.1";
|
|
1080
|
+
};
|
|
1081
|
+
readonly API_KEY_REVOKED: {
|
|
1082
|
+
readonly category: "authentication";
|
|
1083
|
+
readonly severity: "medium";
|
|
1084
|
+
readonly description: "API key revoked";
|
|
1085
|
+
readonly soc2Control: "CC6.1";
|
|
1086
|
+
};
|
|
1087
|
+
readonly API_KEY_ROTATED: {
|
|
1088
|
+
readonly category: "authentication";
|
|
1089
|
+
readonly severity: "medium";
|
|
1090
|
+
readonly description: "API key rotated";
|
|
1091
|
+
readonly soc2Control: "CC6.1";
|
|
1092
|
+
};
|
|
1093
|
+
readonly API_KEY_EXPIRED: {
|
|
1094
|
+
readonly category: "authentication";
|
|
1095
|
+
readonly severity: "info";
|
|
1096
|
+
readonly description: "API key expired";
|
|
1097
|
+
readonly soc2Control: "CC6.1";
|
|
1098
|
+
};
|
|
1099
|
+
readonly API_KEY_DELETED: {
|
|
1100
|
+
readonly category: "authentication";
|
|
1101
|
+
readonly severity: "medium";
|
|
1102
|
+
readonly description: "API key permanently deleted";
|
|
1103
|
+
readonly soc2Control: "CC6.1";
|
|
1104
|
+
};
|
|
1105
|
+
readonly API_KEY_RATE_LIMITED: {
|
|
1106
|
+
readonly category: "authentication";
|
|
1107
|
+
readonly severity: "medium";
|
|
1108
|
+
readonly description: "API key rate limit exceeded";
|
|
1109
|
+
readonly soc2Control: "CC6.1";
|
|
1110
|
+
};
|
|
1111
|
+
readonly MFA_ENROLLED: {
|
|
1112
|
+
readonly category: "authentication";
|
|
1113
|
+
readonly severity: "medium";
|
|
1114
|
+
readonly description: "MFA enrollment completed";
|
|
1115
|
+
readonly soc2Control: "CC6.1";
|
|
1116
|
+
};
|
|
1117
|
+
readonly MFA_ENROLLMENT_STARTED: {
|
|
1118
|
+
readonly category: "authentication";
|
|
1119
|
+
readonly severity: "info";
|
|
1120
|
+
readonly description: "MFA enrollment initiated";
|
|
1121
|
+
readonly soc2Control: "CC6.1";
|
|
1122
|
+
};
|
|
1123
|
+
readonly MFA_ENROLLMENT_VERIFIED: {
|
|
1124
|
+
readonly category: "authentication";
|
|
1125
|
+
readonly severity: "info";
|
|
1126
|
+
readonly description: "MFA enrollment code verified";
|
|
1127
|
+
readonly soc2Control: "CC6.1";
|
|
1128
|
+
};
|
|
1129
|
+
readonly MFA_ENROLLMENT_FAILED: {
|
|
1130
|
+
readonly category: "authentication";
|
|
1131
|
+
readonly severity: "medium";
|
|
1132
|
+
readonly description: "MFA enrollment verification failed";
|
|
1133
|
+
readonly soc2Control: "CC6.1";
|
|
1134
|
+
};
|
|
1135
|
+
readonly MFA_DISABLED: {
|
|
1136
|
+
readonly category: "authentication";
|
|
1137
|
+
readonly severity: "high";
|
|
1138
|
+
readonly description: "MFA disabled for user";
|
|
1139
|
+
readonly soc2Control: "CC6.1";
|
|
1140
|
+
};
|
|
1141
|
+
readonly MFA_CHALLENGE_CREATED: {
|
|
1142
|
+
readonly category: "authentication";
|
|
1143
|
+
readonly severity: "info";
|
|
1144
|
+
readonly description: "MFA challenge initiated";
|
|
1145
|
+
readonly soc2Control: "CC6.1";
|
|
1146
|
+
};
|
|
1147
|
+
readonly MFA_VERIFICATION_SUCCESS: {
|
|
1148
|
+
readonly category: "authentication";
|
|
1149
|
+
readonly severity: "info";
|
|
1150
|
+
readonly description: "MFA verification successful";
|
|
1151
|
+
readonly soc2Control: "CC6.1";
|
|
1152
|
+
};
|
|
1153
|
+
readonly MFA_VERIFICATION_FAILED: {
|
|
1154
|
+
readonly category: "authentication";
|
|
1155
|
+
readonly severity: "medium";
|
|
1156
|
+
readonly description: "MFA verification failed";
|
|
1157
|
+
readonly soc2Control: "CC6.1";
|
|
1158
|
+
};
|
|
1159
|
+
readonly MFA_BACKUP_CODE_USED: {
|
|
1160
|
+
readonly category: "authentication";
|
|
1161
|
+
readonly severity: "medium";
|
|
1162
|
+
readonly description: "MFA backup code used";
|
|
1163
|
+
readonly soc2Control: "CC6.1";
|
|
1164
|
+
};
|
|
1165
|
+
readonly MFA_BACKUP_CODES_REGENERATED: {
|
|
1166
|
+
readonly category: "authentication";
|
|
1167
|
+
readonly severity: "medium";
|
|
1168
|
+
readonly description: "MFA backup codes regenerated";
|
|
1169
|
+
readonly soc2Control: "CC6.1";
|
|
1170
|
+
};
|
|
1171
|
+
readonly MFA_TOO_MANY_ATTEMPTS: {
|
|
1172
|
+
readonly category: "authentication";
|
|
1173
|
+
readonly severity: "high";
|
|
1174
|
+
readonly description: "MFA verification exceeded maximum attempts";
|
|
1175
|
+
readonly soc2Control: "CC6.1";
|
|
1176
|
+
};
|
|
1177
|
+
readonly PASSWORD_CHANGED: {
|
|
1178
|
+
readonly category: "authentication";
|
|
1179
|
+
readonly severity: "medium";
|
|
1180
|
+
readonly description: "Password changed";
|
|
1181
|
+
readonly soc2Control: "CC6.1";
|
|
1182
|
+
};
|
|
1183
|
+
readonly PASSWORD_RESET_REQUESTED: {
|
|
1184
|
+
readonly category: "authentication";
|
|
1185
|
+
readonly severity: "info";
|
|
1186
|
+
readonly description: "Password reset requested";
|
|
1187
|
+
readonly soc2Control: "CC6.1";
|
|
1188
|
+
};
|
|
1189
|
+
readonly PASSWORD_RESET_COMPLETED: {
|
|
1190
|
+
readonly category: "authentication";
|
|
1191
|
+
readonly severity: "medium";
|
|
1192
|
+
readonly description: "Password reset completed";
|
|
1193
|
+
readonly soc2Control: "CC6.1";
|
|
1194
|
+
};
|
|
1195
|
+
};
|
|
1196
|
+
export type SecurityEventType = keyof typeof SECURITY_EVENT_TYPES;
|
|
1197
|
+
/**
|
|
1198
|
+
* Actor performing the security action
|
|
1199
|
+
*/
|
|
1200
|
+
export interface SecurityActor {
|
|
1201
|
+
/** Actor type (user, agent, service, or system) */
|
|
1202
|
+
type: 'user' | 'agent' | 'service' | 'system';
|
|
1203
|
+
/** Actor's unique identifier */
|
|
1204
|
+
id: ID;
|
|
1205
|
+
/** Actor's display name */
|
|
1206
|
+
name?: string;
|
|
1207
|
+
/** Actor's email (if applicable) */
|
|
1208
|
+
email?: string;
|
|
1209
|
+
/** IP address of the actor */
|
|
1210
|
+
ip?: string;
|
|
1211
|
+
/** User agent string */
|
|
1212
|
+
userAgent?: string;
|
|
1213
|
+
/** Session ID (if authenticated) */
|
|
1214
|
+
sessionId?: string;
|
|
1215
|
+
/** Tenant context */
|
|
1216
|
+
tenantId?: ID;
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* Zod schema for SecurityActor
|
|
1220
|
+
*/
|
|
1221
|
+
export declare const securityActorSchema: z.ZodObject<{
|
|
1222
|
+
type: z.ZodEnum<["user", "agent", "service", "system"]>;
|
|
1223
|
+
id: z.ZodString;
|
|
1224
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
ip: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
1230
|
+
}, "strip", z.ZodTypeAny, {
|
|
1231
|
+
name?: string;
|
|
1232
|
+
id?: string;
|
|
1233
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1234
|
+
email?: string;
|
|
1235
|
+
ip?: string;
|
|
1236
|
+
userAgent?: string;
|
|
1237
|
+
tenantId?: string;
|
|
1238
|
+
sessionId?: string;
|
|
1239
|
+
}, {
|
|
1240
|
+
name?: string;
|
|
1241
|
+
id?: string;
|
|
1242
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1243
|
+
email?: string;
|
|
1244
|
+
ip?: string;
|
|
1245
|
+
userAgent?: string;
|
|
1246
|
+
tenantId?: string;
|
|
1247
|
+
sessionId?: string;
|
|
1248
|
+
}>;
|
|
1249
|
+
/**
|
|
1250
|
+
* Resource affected by the security event
|
|
1251
|
+
*/
|
|
1252
|
+
export interface SecurityResource {
|
|
1253
|
+
/** Resource type */
|
|
1254
|
+
type: string;
|
|
1255
|
+
/** Resource identifier */
|
|
1256
|
+
id: ID;
|
|
1257
|
+
/** Resource name (human readable) */
|
|
1258
|
+
name?: string;
|
|
1259
|
+
/** Resource path or location */
|
|
1260
|
+
path?: string;
|
|
1261
|
+
/** Additional resource attributes */
|
|
1262
|
+
attributes?: Record<string, unknown>;
|
|
1263
|
+
}
|
|
1264
|
+
/**
|
|
1265
|
+
* Zod schema for SecurityResource
|
|
1266
|
+
*/
|
|
1267
|
+
export declare const securityResourceSchema: z.ZodObject<{
|
|
1268
|
+
type: z.ZodString;
|
|
1269
|
+
id: z.ZodString;
|
|
1270
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1273
|
+
}, "strip", z.ZodTypeAny, {
|
|
1274
|
+
name?: string;
|
|
1275
|
+
path?: string;
|
|
1276
|
+
id?: string;
|
|
1277
|
+
type?: string;
|
|
1278
|
+
attributes?: Record<string, unknown>;
|
|
1279
|
+
}, {
|
|
1280
|
+
name?: string;
|
|
1281
|
+
path?: string;
|
|
1282
|
+
id?: string;
|
|
1283
|
+
type?: string;
|
|
1284
|
+
attributes?: Record<string, unknown>;
|
|
1285
|
+
}>;
|
|
1286
|
+
/**
|
|
1287
|
+
* Complete security event for audit logging
|
|
1288
|
+
*/
|
|
1289
|
+
export interface SecurityEvent {
|
|
1290
|
+
/** Unique event identifier */
|
|
1291
|
+
id: ID;
|
|
1292
|
+
/** Event timestamp (ISO 8601) */
|
|
1293
|
+
timestamp: Timestamp;
|
|
1294
|
+
/** Event type from SECURITY_EVENT_TYPES */
|
|
1295
|
+
eventType: SecurityEventType;
|
|
1296
|
+
/** Event category */
|
|
1297
|
+
category: SecurityEventCategory;
|
|
1298
|
+
/** Event severity */
|
|
1299
|
+
severity: SecuritySeverity;
|
|
1300
|
+
/** Actor who performed the action */
|
|
1301
|
+
actor: SecurityActor;
|
|
1302
|
+
/** Action performed */
|
|
1303
|
+
action: string;
|
|
1304
|
+
/** Resource affected */
|
|
1305
|
+
resource: SecurityResource;
|
|
1306
|
+
/** Outcome of the action */
|
|
1307
|
+
outcome: SecurityOutcome;
|
|
1308
|
+
/** Additional event metadata */
|
|
1309
|
+
metadata: Record<string, unknown>;
|
|
1310
|
+
/** Unique request identifier */
|
|
1311
|
+
requestId: ID;
|
|
1312
|
+
/** W3C TraceContext trace ID */
|
|
1313
|
+
traceId?: string;
|
|
1314
|
+
/** Reason for the outcome (especially for failures) */
|
|
1315
|
+
reason?: string;
|
|
1316
|
+
/** SOC 2 control identifier */
|
|
1317
|
+
soc2Control?: string;
|
|
1318
|
+
/** Hash of this record for chain integrity */
|
|
1319
|
+
recordHash?: string;
|
|
1320
|
+
/** Hash of previous record in chain */
|
|
1321
|
+
previousHash?: string;
|
|
1322
|
+
/** Sequence number in audit chain */
|
|
1323
|
+
sequenceNumber?: number;
|
|
1324
|
+
}
|
|
1325
|
+
/**
|
|
1326
|
+
* Zod schema for SecurityEvent
|
|
1327
|
+
*/
|
|
1328
|
+
export declare const securityEventSchema: z.ZodObject<{
|
|
1329
|
+
id: z.ZodString;
|
|
1330
|
+
timestamp: z.ZodString;
|
|
1331
|
+
eventType: z.ZodString;
|
|
1332
|
+
category: z.ZodEnum<["authentication", "authorization", "data_access", "configuration", "incident"]>;
|
|
1333
|
+
severity: z.ZodEnum<["info", "low", "medium", "high", "critical"]>;
|
|
1334
|
+
actor: z.ZodObject<{
|
|
1335
|
+
type: z.ZodEnum<["user", "agent", "service", "system"]>;
|
|
1336
|
+
id: z.ZodString;
|
|
1337
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1338
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1339
|
+
ip: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
1341
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
1342
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
}, "strip", z.ZodTypeAny, {
|
|
1344
|
+
name?: string;
|
|
1345
|
+
id?: string;
|
|
1346
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1347
|
+
email?: string;
|
|
1348
|
+
ip?: string;
|
|
1349
|
+
userAgent?: string;
|
|
1350
|
+
tenantId?: string;
|
|
1351
|
+
sessionId?: string;
|
|
1352
|
+
}, {
|
|
1353
|
+
name?: string;
|
|
1354
|
+
id?: string;
|
|
1355
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1356
|
+
email?: string;
|
|
1357
|
+
ip?: string;
|
|
1358
|
+
userAgent?: string;
|
|
1359
|
+
tenantId?: string;
|
|
1360
|
+
sessionId?: string;
|
|
1361
|
+
}>;
|
|
1362
|
+
action: z.ZodString;
|
|
1363
|
+
resource: z.ZodObject<{
|
|
1364
|
+
type: z.ZodString;
|
|
1365
|
+
id: z.ZodString;
|
|
1366
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1367
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1368
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1369
|
+
}, "strip", z.ZodTypeAny, {
|
|
1370
|
+
name?: string;
|
|
1371
|
+
path?: string;
|
|
1372
|
+
id?: string;
|
|
1373
|
+
type?: string;
|
|
1374
|
+
attributes?: Record<string, unknown>;
|
|
1375
|
+
}, {
|
|
1376
|
+
name?: string;
|
|
1377
|
+
path?: string;
|
|
1378
|
+
id?: string;
|
|
1379
|
+
type?: string;
|
|
1380
|
+
attributes?: Record<string, unknown>;
|
|
1381
|
+
}>;
|
|
1382
|
+
outcome: z.ZodEnum<["success", "failure", "blocked", "escalated"]>;
|
|
1383
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1384
|
+
requestId: z.ZodString;
|
|
1385
|
+
traceId: z.ZodOptional<z.ZodString>;
|
|
1386
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1387
|
+
soc2Control: z.ZodOptional<z.ZodString>;
|
|
1388
|
+
recordHash: z.ZodOptional<z.ZodString>;
|
|
1389
|
+
previousHash: z.ZodOptional<z.ZodString>;
|
|
1390
|
+
sequenceNumber: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
+
}, "strip", z.ZodTypeAny, {
|
|
1392
|
+
traceId?: string;
|
|
1393
|
+
action?: string;
|
|
1394
|
+
reason?: string;
|
|
1395
|
+
id?: string;
|
|
1396
|
+
metadata?: Record<string, unknown>;
|
|
1397
|
+
requestId?: string;
|
|
1398
|
+
outcome?: "escalated" | "success" | "failure" | "blocked";
|
|
1399
|
+
eventType?: string;
|
|
1400
|
+
previousHash?: string;
|
|
1401
|
+
severity?: "info" | "critical" | "low" | "medium" | "high";
|
|
1402
|
+
sequenceNumber?: number;
|
|
1403
|
+
recordHash?: string;
|
|
1404
|
+
timestamp?: string;
|
|
1405
|
+
resource?: {
|
|
1406
|
+
name?: string;
|
|
1407
|
+
path?: string;
|
|
1408
|
+
id?: string;
|
|
1409
|
+
type?: string;
|
|
1410
|
+
attributes?: Record<string, unknown>;
|
|
1411
|
+
};
|
|
1412
|
+
category?: "authorization" | "data_access" | "authentication" | "configuration" | "incident";
|
|
1413
|
+
actor?: {
|
|
1414
|
+
name?: string;
|
|
1415
|
+
id?: string;
|
|
1416
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1417
|
+
email?: string;
|
|
1418
|
+
ip?: string;
|
|
1419
|
+
userAgent?: string;
|
|
1420
|
+
tenantId?: string;
|
|
1421
|
+
sessionId?: string;
|
|
1422
|
+
};
|
|
1423
|
+
soc2Control?: string;
|
|
1424
|
+
}, {
|
|
1425
|
+
traceId?: string;
|
|
1426
|
+
action?: string;
|
|
1427
|
+
reason?: string;
|
|
1428
|
+
id?: string;
|
|
1429
|
+
metadata?: Record<string, unknown>;
|
|
1430
|
+
requestId?: string;
|
|
1431
|
+
outcome?: "escalated" | "success" | "failure" | "blocked";
|
|
1432
|
+
eventType?: string;
|
|
1433
|
+
previousHash?: string;
|
|
1434
|
+
severity?: "info" | "critical" | "low" | "medium" | "high";
|
|
1435
|
+
sequenceNumber?: number;
|
|
1436
|
+
recordHash?: string;
|
|
1437
|
+
timestamp?: string;
|
|
1438
|
+
resource?: {
|
|
1439
|
+
name?: string;
|
|
1440
|
+
path?: string;
|
|
1441
|
+
id?: string;
|
|
1442
|
+
type?: string;
|
|
1443
|
+
attributes?: Record<string, unknown>;
|
|
1444
|
+
};
|
|
1445
|
+
category?: "authorization" | "data_access" | "authentication" | "configuration" | "incident";
|
|
1446
|
+
actor?: {
|
|
1447
|
+
name?: string;
|
|
1448
|
+
id?: string;
|
|
1449
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1450
|
+
email?: string;
|
|
1451
|
+
ip?: string;
|
|
1452
|
+
userAgent?: string;
|
|
1453
|
+
tenantId?: string;
|
|
1454
|
+
sessionId?: string;
|
|
1455
|
+
};
|
|
1456
|
+
soc2Control?: string;
|
|
1457
|
+
}>;
|
|
1458
|
+
/**
|
|
1459
|
+
* Input for creating a security event (without auto-generated fields)
|
|
1460
|
+
*/
|
|
1461
|
+
export interface CreateSecurityEventInput {
|
|
1462
|
+
/** Event type from SECURITY_EVENT_TYPES */
|
|
1463
|
+
eventType: SecurityEventType;
|
|
1464
|
+
/** Actor who performed the action */
|
|
1465
|
+
actor: SecurityActor;
|
|
1466
|
+
/** Action performed */
|
|
1467
|
+
action: string;
|
|
1468
|
+
/** Resource affected */
|
|
1469
|
+
resource: SecurityResource;
|
|
1470
|
+
/** Outcome of the action */
|
|
1471
|
+
outcome: SecurityOutcome;
|
|
1472
|
+
/** Additional event metadata */
|
|
1473
|
+
metadata?: Record<string, unknown>;
|
|
1474
|
+
/** Reason for the outcome */
|
|
1475
|
+
reason?: string;
|
|
1476
|
+
/** Override timestamp (defaults to now) */
|
|
1477
|
+
timestamp?: Timestamp;
|
|
1478
|
+
/** Override request ID (auto-populated from trace context) */
|
|
1479
|
+
requestId?: ID;
|
|
1480
|
+
/** Override trace ID (auto-populated from trace context) */
|
|
1481
|
+
traceId?: string;
|
|
1482
|
+
}
|
|
1483
|
+
/**
|
|
1484
|
+
* Zod schema for CreateSecurityEventInput
|
|
1485
|
+
*/
|
|
1486
|
+
export declare const createSecurityEventInputSchema: z.ZodObject<{
|
|
1487
|
+
eventType: z.ZodString;
|
|
1488
|
+
actor: z.ZodObject<{
|
|
1489
|
+
type: z.ZodEnum<["user", "agent", "service", "system"]>;
|
|
1490
|
+
id: z.ZodString;
|
|
1491
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1492
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
ip: z.ZodOptional<z.ZodString>;
|
|
1494
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
1497
|
+
}, "strip", z.ZodTypeAny, {
|
|
1498
|
+
name?: string;
|
|
1499
|
+
id?: string;
|
|
1500
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1501
|
+
email?: string;
|
|
1502
|
+
ip?: string;
|
|
1503
|
+
userAgent?: string;
|
|
1504
|
+
tenantId?: string;
|
|
1505
|
+
sessionId?: string;
|
|
1506
|
+
}, {
|
|
1507
|
+
name?: string;
|
|
1508
|
+
id?: string;
|
|
1509
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1510
|
+
email?: string;
|
|
1511
|
+
ip?: string;
|
|
1512
|
+
userAgent?: string;
|
|
1513
|
+
tenantId?: string;
|
|
1514
|
+
sessionId?: string;
|
|
1515
|
+
}>;
|
|
1516
|
+
action: z.ZodString;
|
|
1517
|
+
resource: z.ZodObject<{
|
|
1518
|
+
type: z.ZodString;
|
|
1519
|
+
id: z.ZodString;
|
|
1520
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1522
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1523
|
+
}, "strip", z.ZodTypeAny, {
|
|
1524
|
+
name?: string;
|
|
1525
|
+
path?: string;
|
|
1526
|
+
id?: string;
|
|
1527
|
+
type?: string;
|
|
1528
|
+
attributes?: Record<string, unknown>;
|
|
1529
|
+
}, {
|
|
1530
|
+
name?: string;
|
|
1531
|
+
path?: string;
|
|
1532
|
+
id?: string;
|
|
1533
|
+
type?: string;
|
|
1534
|
+
attributes?: Record<string, unknown>;
|
|
1535
|
+
}>;
|
|
1536
|
+
outcome: z.ZodEnum<["success", "failure", "blocked", "escalated"]>;
|
|
1537
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1538
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
traceId: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
}, "strip", z.ZodTypeAny, {
|
|
1543
|
+
traceId?: string;
|
|
1544
|
+
action?: string;
|
|
1545
|
+
reason?: string;
|
|
1546
|
+
metadata?: Record<string, unknown>;
|
|
1547
|
+
requestId?: string;
|
|
1548
|
+
outcome?: "escalated" | "success" | "failure" | "blocked";
|
|
1549
|
+
eventType?: string;
|
|
1550
|
+
timestamp?: string;
|
|
1551
|
+
resource?: {
|
|
1552
|
+
name?: string;
|
|
1553
|
+
path?: string;
|
|
1554
|
+
id?: string;
|
|
1555
|
+
type?: string;
|
|
1556
|
+
attributes?: Record<string, unknown>;
|
|
1557
|
+
};
|
|
1558
|
+
actor?: {
|
|
1559
|
+
name?: string;
|
|
1560
|
+
id?: string;
|
|
1561
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1562
|
+
email?: string;
|
|
1563
|
+
ip?: string;
|
|
1564
|
+
userAgent?: string;
|
|
1565
|
+
tenantId?: string;
|
|
1566
|
+
sessionId?: string;
|
|
1567
|
+
};
|
|
1568
|
+
}, {
|
|
1569
|
+
traceId?: string;
|
|
1570
|
+
action?: string;
|
|
1571
|
+
reason?: string;
|
|
1572
|
+
metadata?: Record<string, unknown>;
|
|
1573
|
+
requestId?: string;
|
|
1574
|
+
outcome?: "escalated" | "success" | "failure" | "blocked";
|
|
1575
|
+
eventType?: string;
|
|
1576
|
+
timestamp?: string;
|
|
1577
|
+
resource?: {
|
|
1578
|
+
name?: string;
|
|
1579
|
+
path?: string;
|
|
1580
|
+
id?: string;
|
|
1581
|
+
type?: string;
|
|
1582
|
+
attributes?: Record<string, unknown>;
|
|
1583
|
+
};
|
|
1584
|
+
actor?: {
|
|
1585
|
+
name?: string;
|
|
1586
|
+
id?: string;
|
|
1587
|
+
type?: "agent" | "user" | "service" | "system";
|
|
1588
|
+
email?: string;
|
|
1589
|
+
ip?: string;
|
|
1590
|
+
userAgent?: string;
|
|
1591
|
+
tenantId?: string;
|
|
1592
|
+
sessionId?: string;
|
|
1593
|
+
};
|
|
1594
|
+
}>;
|
|
1595
|
+
/**
|
|
1596
|
+
* Get event definition by type
|
|
1597
|
+
*/
|
|
1598
|
+
export declare function getSecurityEventDefinition(eventType: SecurityEventType): {
|
|
1599
|
+
category: SecurityEventCategory;
|
|
1600
|
+
severity: SecuritySeverity;
|
|
1601
|
+
description: string;
|
|
1602
|
+
soc2Control: string;
|
|
1603
|
+
};
|
|
1604
|
+
/**
|
|
1605
|
+
* Get all event types for a category
|
|
1606
|
+
*/
|
|
1607
|
+
export declare function getSecurityEventsByCategory(category: SecurityEventCategory): SecurityEventType[];
|
|
1608
|
+
/**
|
|
1609
|
+
* Get all event types for a severity level
|
|
1610
|
+
*/
|
|
1611
|
+
export declare function getSecurityEventsBySeverity(severity: SecuritySeverity): SecurityEventType[];
|
|
1612
|
+
/**
|
|
1613
|
+
* Validate that a string is a valid security event type
|
|
1614
|
+
*/
|
|
1615
|
+
export declare function isValidSecurityEventType(type: string): type is SecurityEventType;
|
|
1616
|
+
/**
|
|
1617
|
+
* Get all security event types
|
|
1618
|
+
*/
|
|
1619
|
+
export declare function getAllSecurityEventTypes(): SecurityEventType[];
|
|
1620
|
+
/**
|
|
1621
|
+
* Get SOC 2 control for an event type
|
|
1622
|
+
*/
|
|
1623
|
+
export declare function getSoc2Control(eventType: SecurityEventType): string;
|
|
1624
|
+
//# sourceMappingURL=security-events.d.ts.map
|