chore: crush git history - reborn from consolidation on 2026-03-10

This commit is contained in:
John Dvorak
2026-03-10 00:00:00 -07:00
commit d278c4b105
313 changed files with 87549 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* apophis-fastify - Package entry point.
* Exports the plugin as a Fastify plugin with proper metadata.
*/
import fp from 'fastify-plugin'
import { apophisPlugin } from './plugin/index.js'
export default fp(apophisPlugin, {
name: 'apophis-fastify',
dependencies: ['@fastify/swagger'],
})
export * from './types.js'
// Chaos-v3: Pure chaos application for property-based testing
export {
applyChaosToExecution,
applyChaosToAllResponses,
createChaosEventArbitrary,
extractDelays,
sleep,
type ChaosEvent,
type ChaosEventType,
type ChaosApplicationResult,
} from './quality/chaos-v3.js'