├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .nvmrc ├── LICENSE ├── README.md ├── docs ├── bundle.js ├── bundle.js.LICENSE.txt └── index.html ├── examples └── browser │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ ├── data-generator.ts │ ├── dom.ts │ ├── index.ts │ ├── logs.ts │ ├── minimongo.ts │ ├── nedb.ts │ ├── pouchdb.ts │ ├── types.ts │ └── util.ts │ ├── style.less │ ├── test │ └── e2e.test.ts │ ├── tsconfig.json │ ├── tslint.json │ └── webpack.js ├── javascript ├── .gitignore ├── .npmignore ├── .npmrc ├── DEVELOPER.md ├── README.md ├── dist │ ├── cjs │ │ └── src │ │ │ ├── actions │ │ │ ├── action-functions.d.ts │ │ │ ├── action-functions.js │ │ │ ├── action-functions.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── bdd │ │ │ ├── bdd.generated.d.ts │ │ │ ├── bdd.generated.js │ │ │ ├── bdd.generated.js.map │ │ │ ├── bdd.template.d.ts │ │ │ ├── bdd.template.js │ │ │ ├── bdd.template.js.map │ │ │ ├── write-bdd-template.d.ts │ │ │ ├── write-bdd-template.js │ │ │ └── write-bdd-template.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.es5.d.ts │ │ │ ├── index.es5.js │ │ │ ├── index.es5.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── states │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── state-resolver.d.ts │ │ │ ├── state-resolver.js │ │ │ └── state-resolver.js.map │ │ │ ├── truth-table-generator │ │ │ ├── binary-state.d.ts │ │ │ ├── binary-state.js │ │ │ ├── binary-state.js.map │ │ │ ├── calculate-bdd-quality.d.ts │ │ │ ├── calculate-bdd-quality.js │ │ │ ├── calculate-bdd-quality.js.map │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── config.js.map │ │ │ ├── data-generator.d.ts │ │ │ ├── data-generator.js │ │ │ ├── data-generator.js.map │ │ │ ├── database │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mingo.d.ts │ │ │ │ ├── mingo.js │ │ │ │ └── mingo.js.map │ │ │ ├── fuzzing.d.ts │ │ │ ├── fuzzing.js │ │ │ ├── fuzzing.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── procedures.d.ts │ │ │ ├── procedures.js │ │ │ ├── procedures.js.map │ │ │ ├── queries.d.ts │ │ │ ├── queries.js │ │ │ ├── queries.js.map │ │ │ ├── runner.node.d.ts │ │ │ ├── runner.node.js │ │ │ ├── runner.node.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── types.js.map │ │ │ ├── util.d.ts │ │ │ ├── util.js │ │ │ └── util.js.map │ │ │ ├── types │ │ │ ├── change-event.d.ts │ │ │ ├── change-event.js │ │ │ ├── change-event.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mongo.d.ts │ │ │ ├── mongo.js │ │ │ └── mongo.js.map │ │ │ ├── util.d.ts │ │ │ ├── util.js │ │ │ └── util.js.map │ └── esm │ │ └── src │ │ ├── actions │ │ ├── action-functions.d.ts │ │ ├── action-functions.js │ │ ├── action-functions.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ │ ├── bdd │ │ ├── bdd.generated.d.ts │ │ ├── bdd.generated.js │ │ ├── bdd.generated.js.map │ │ ├── bdd.template.d.ts │ │ ├── bdd.template.js │ │ ├── bdd.template.js.map │ │ ├── write-bdd-template.d.ts │ │ ├── write-bdd-template.js │ │ └── write-bdd-template.js.map │ │ ├── index.d.ts │ │ ├── index.es5.d.ts │ │ ├── index.es5.js │ │ ├── index.es5.js.map │ │ ├── index.js │ │ ├── index.js.map │ │ ├── package.json │ │ ├── states │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── state-resolver.d.ts │ │ ├── state-resolver.js │ │ └── state-resolver.js.map │ │ ├── truth-table-generator │ │ ├── binary-state.d.ts │ │ ├── binary-state.js │ │ ├── binary-state.js.map │ │ ├── calculate-bdd-quality.d.ts │ │ ├── calculate-bdd-quality.js │ │ ├── calculate-bdd-quality.js.map │ │ ├── config.d.ts │ │ ├── config.js │ │ ├── config.js.map │ │ ├── data-generator.d.ts │ │ ├── data-generator.js │ │ ├── data-generator.js.map │ │ ├── database │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── mingo.d.ts │ │ │ ├── mingo.js │ │ │ └── mingo.js.map │ │ ├── fuzzing.d.ts │ │ ├── fuzzing.js │ │ ├── fuzzing.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── procedures.d.ts │ │ ├── procedures.js │ │ ├── procedures.js.map │ │ ├── queries.d.ts │ │ ├── queries.js │ │ ├── queries.js.map │ │ ├── runner.node.d.ts │ │ ├── runner.node.js │ │ ├── runner.node.js.map │ │ ├── types.d.ts │ │ ├── types.js │ │ ├── types.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map │ │ ├── types │ │ ├── change-event.d.ts │ │ ├── change-event.js │ │ ├── change-event.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── mongo.d.ts │ │ ├── mongo.js │ │ └── mongo.js.map │ │ ├── util.d.ts │ │ ├── util.js │ │ └── util.js.map ├── fuzzing-nohup.sh ├── optimize-nohup.sh ├── package.json ├── perf.md ├── src │ ├── actions │ │ ├── action-functions.ts │ │ └── index.ts │ ├── bdd │ │ ├── bdd.generated.ts │ │ ├── bdd.optimize.state.json │ │ ├── bdd.template.ts │ │ └── write-bdd-template.ts │ ├── index.es5.ts │ ├── index.ts │ ├── states │ │ ├── index.ts │ │ └── state-resolver.ts │ ├── truth-table-generator │ │ ├── binary-state.ts │ │ ├── calculate-bdd-quality.ts │ │ ├── config.ts │ │ ├── data-generator.ts │ │ ├── database │ │ │ ├── index.ts │ │ │ └── mingo.ts │ │ ├── fuzzing.ts │ │ ├── index.ts │ │ ├── output │ │ │ └── truth-table.json │ │ ├── procedures.ts │ │ ├── queries.ts │ │ ├── runner.node.ts │ │ ├── types.ts │ │ └── util.ts │ ├── types │ │ ├── change-event.ts │ │ ├── index.ts │ │ └── mongo.ts │ └── util.ts ├── test │ ├── helper │ │ └── input.ts │ └── unit │ │ ├── actions.test.ts │ │ ├── binary-state.test.ts │ │ ├── calculate-bdd-quality.test.ts │ │ ├── fuzzing.test.ts │ │ ├── generated-stuff.test.ts │ │ ├── index.test.ts │ │ ├── minimongo.test.ts │ │ ├── queries.test.ts │ │ ├── states.test.ts │ │ └── truth-table-generator.test.ts ├── truth-table-generator │ └── package.json ├── tsconfig.json └── tslint.json ├── orga ├── event-reduce.drawio └── event-reduce.png └── renovate.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: pubkey 4 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.9.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/README.md -------------------------------------------------------------------------------- /docs/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/docs/bundle.js -------------------------------------------------------------------------------- /docs/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/docs/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/docs/index.html -------------------------------------------------------------------------------- /examples/browser/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist -------------------------------------------------------------------------------- /examples/browser/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /examples/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/README.md -------------------------------------------------------------------------------- /examples/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/index.html -------------------------------------------------------------------------------- /examples/browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/package.json -------------------------------------------------------------------------------- /examples/browser/src/data-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/data-generator.ts -------------------------------------------------------------------------------- /examples/browser/src/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/dom.ts -------------------------------------------------------------------------------- /examples/browser/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/index.ts -------------------------------------------------------------------------------- /examples/browser/src/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/logs.ts -------------------------------------------------------------------------------- /examples/browser/src/minimongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/minimongo.ts -------------------------------------------------------------------------------- /examples/browser/src/nedb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/nedb.ts -------------------------------------------------------------------------------- /examples/browser/src/pouchdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/pouchdb.ts -------------------------------------------------------------------------------- /examples/browser/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/types.ts -------------------------------------------------------------------------------- /examples/browser/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/src/util.ts -------------------------------------------------------------------------------- /examples/browser/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/style.less -------------------------------------------------------------------------------- /examples/browser/test/e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/test/e2e.test.ts -------------------------------------------------------------------------------- /examples/browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/tsconfig.json -------------------------------------------------------------------------------- /examples/browser/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/tslint.json -------------------------------------------------------------------------------- /examples/browser/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/examples/browser/webpack.js -------------------------------------------------------------------------------- /javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/.gitignore -------------------------------------------------------------------------------- /javascript/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/.npmignore -------------------------------------------------------------------------------- /javascript/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /javascript/DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/DEVELOPER.md -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/action-functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/action-functions.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/action-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/action-functions.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/action-functions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/action-functions.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/actions/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/actions/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.generated.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.generated.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.generated.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.generated.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.template.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.template.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/bdd.template.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/bdd.template.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/write-bdd-template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/write-bdd-template.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/write-bdd-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/write-bdd-template.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/bdd/write-bdd-template.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/bdd/write-bdd-template.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.es5.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/index.es5.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/index.es5.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/state-resolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/state-resolver.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/state-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/state-resolver.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/states/state-resolver.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/states/state-resolver.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/binary-state.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/binary-state.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/binary-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/binary-state.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/binary-state.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/binary-state.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/calculate-bdd-quality.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/config.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/config.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/config.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/data-generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/data-generator.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/data-generator.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/data-generator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/data-generator.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/mingo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/mingo.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/mingo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/mingo.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/database/mingo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/database/mingo.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/fuzzing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/fuzzing.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/fuzzing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/fuzzing.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/fuzzing.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/fuzzing.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/procedures.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/procedures.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/procedures.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/procedures.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/procedures.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/queries.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/queries.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/queries.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/queries.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/queries.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/runner.node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/runner.node.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/runner.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/runner.node.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/runner.node.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/runner.node.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/types.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/types.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/types.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/types.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/util.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/util.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/truth-table-generator/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/truth-table-generator/util.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/change-event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/change-event.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/change-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/change-event.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/change-event.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/change-event.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/index.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/index.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/mongo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/mongo.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/mongo.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/types/mongo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/types/mongo.js.map -------------------------------------------------------------------------------- /javascript/dist/cjs/src/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/util.d.ts -------------------------------------------------------------------------------- /javascript/dist/cjs/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/util.js -------------------------------------------------------------------------------- /javascript/dist/cjs/src/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/cjs/src/util.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/action-functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/action-functions.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/action-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/action-functions.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/action-functions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/action-functions.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/actions/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/actions/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.generated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.generated.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.generated.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.generated.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.generated.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.template.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.template.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/bdd.template.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/bdd.template.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/write-bdd-template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/write-bdd-template.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/write-bdd-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/write-bdd-template.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/bdd/write-bdd-template.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/bdd/write-bdd-template.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.es5.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/index.es5.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/index.es5.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module", "sideEffects": false } 2 | -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/state-resolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/state-resolver.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/state-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/state-resolver.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/states/state-resolver.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/states/state-resolver.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/binary-state.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/binary-state.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/binary-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/binary-state.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/binary-state.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/binary-state.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/calculate-bdd-quality.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/config.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/config.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/config.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/data-generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/data-generator.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/data-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/data-generator.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/data-generator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/data-generator.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/mingo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/mingo.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/mingo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/mingo.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/database/mingo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/database/mingo.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/fuzzing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/fuzzing.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/fuzzing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/fuzzing.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/fuzzing.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/fuzzing.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/procedures.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/procedures.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/procedures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/procedures.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/procedures.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/procedures.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/queries.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/queries.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/queries.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/queries.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/queries.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/runner.node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/runner.node.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/runner.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/runner.node.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/runner.node.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/runner.node.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/types.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/types.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/types.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/util.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/util.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/truth-table-generator/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/truth-table-generator/util.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/change-event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/change-event.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/change-event.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=change-event.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/change-event.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/change-event.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/index.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/index.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/index.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/mongo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/mongo.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/mongo.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=mongo.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/types/mongo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/types/mongo.js.map -------------------------------------------------------------------------------- /javascript/dist/esm/src/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/util.d.ts -------------------------------------------------------------------------------- /javascript/dist/esm/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/util.js -------------------------------------------------------------------------------- /javascript/dist/esm/src/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/dist/esm/src/util.js.map -------------------------------------------------------------------------------- /javascript/fuzzing-nohup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | nohup npm run fuzzing-parallel & 5 | -------------------------------------------------------------------------------- /javascript/optimize-nohup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/optimize-nohup.sh -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/package.json -------------------------------------------------------------------------------- /javascript/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/perf.md -------------------------------------------------------------------------------- /javascript/src/actions/action-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/actions/action-functions.ts -------------------------------------------------------------------------------- /javascript/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/actions/index.ts -------------------------------------------------------------------------------- /javascript/src/bdd/bdd.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/bdd/bdd.generated.ts -------------------------------------------------------------------------------- /javascript/src/bdd/bdd.optimize.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/bdd/bdd.optimize.state.json -------------------------------------------------------------------------------- /javascript/src/bdd/bdd.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/bdd/bdd.template.ts -------------------------------------------------------------------------------- /javascript/src/bdd/write-bdd-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/bdd/write-bdd-template.ts -------------------------------------------------------------------------------- /javascript/src/index.es5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/index.es5.ts -------------------------------------------------------------------------------- /javascript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/index.ts -------------------------------------------------------------------------------- /javascript/src/states/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/states/index.ts -------------------------------------------------------------------------------- /javascript/src/states/state-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/states/state-resolver.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/binary-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/binary-state.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/calculate-bdd-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/calculate-bdd-quality.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/config.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/data-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/data-generator.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/database/index.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/database/mingo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/database/mingo.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/fuzzing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/fuzzing.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/index.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/output/truth-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/output/truth-table.json -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/procedures.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/queries.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/runner.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/runner.node.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/types.ts -------------------------------------------------------------------------------- /javascript/src/truth-table-generator/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/truth-table-generator/util.ts -------------------------------------------------------------------------------- /javascript/src/types/change-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/types/change-event.ts -------------------------------------------------------------------------------- /javascript/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/types/index.ts -------------------------------------------------------------------------------- /javascript/src/types/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/types/mongo.ts -------------------------------------------------------------------------------- /javascript/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/src/util.ts -------------------------------------------------------------------------------- /javascript/test/helper/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/helper/input.ts -------------------------------------------------------------------------------- /javascript/test/unit/actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/actions.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/binary-state.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/binary-state.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/calculate-bdd-quality.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/calculate-bdd-quality.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/fuzzing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/fuzzing.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/generated-stuff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/generated-stuff.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/index.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/minimongo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/minimongo.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/queries.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/states.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/states.test.ts -------------------------------------------------------------------------------- /javascript/test/unit/truth-table-generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/test/unit/truth-table-generator.test.ts -------------------------------------------------------------------------------- /javascript/truth-table-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/truth-table-generator/package.json -------------------------------------------------------------------------------- /javascript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/tsconfig.json -------------------------------------------------------------------------------- /javascript/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/javascript/tslint.json -------------------------------------------------------------------------------- /orga/event-reduce.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/orga/event-reduce.drawio -------------------------------------------------------------------------------- /orga/event-reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/orga/event-reduce.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubkey/event-reduce/HEAD/renovate.json --------------------------------------------------------------------------------