orkajs 1.3.0 → 1.3.2
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/CHANGELOG.md +11 -0
- package/README.md +15 -0
- package/adapters/anthropic.d.ts +1 -0
- package/adapters/anthropic.js +1 -0
- package/adapters/chroma.d.ts +1 -0
- package/adapters/chroma.js +1 -0
- package/adapters/memory.d.ts +1 -0
- package/adapters/memory.js +1 -0
- package/adapters/mistral.d.ts +1 -0
- package/adapters/mistral.js +1 -0
- package/adapters/ollama.d.ts +1 -0
- package/adapters/ollama.js +1 -0
- package/adapters/openai.d.ts +1 -0
- package/adapters/openai.js +1 -0
- package/adapters/pinecone.d.ts +1 -0
- package/adapters/pinecone.js +1 -0
- package/adapters/qdrant.d.ts +1 -0
- package/adapters/qdrant.js +1 -0
- package/agent/index.d.ts +1 -0
- package/agent/index.js +1 -0
- package/agent/openai-functions.d.ts +1 -0
- package/agent/openai-functions.js +1 -0
- package/agent/plan-and-execute.d.ts +1 -0
- package/agent/plan-and-execute.js +1 -0
- package/agent/react.d.ts +1 -0
- package/agent/react.js +1 -0
- package/agent/structured-chat.d.ts +1 -0
- package/agent/structured-chat.js +1 -0
- package/agent/toolkits/csv.d.ts +1 -0
- package/agent/toolkits/csv.js +1 -0
- package/agent/toolkits/sql.d.ts +1 -0
- package/agent/toolkits/sql.js +1 -0
- package/cache/embeddings.d.ts +1 -0
- package/cache/embeddings.js +1 -0
- package/cache/index.d.ts +1 -0
- package/cache/index.js +1 -0
- package/cache/llm.d.ts +1 -0
- package/cache/llm.js +1 -0
- package/cache/memory.d.ts +1 -0
- package/cache/memory.js +1 -0
- package/cache/redis.d.ts +1 -0
- package/cache/redis.js +1 -0
- package/chains/conversational-retrieval.d.ts +1 -0
- package/chains/conversational-retrieval.js +1 -0
- package/chains/index.d.ts +1 -0
- package/chains/index.js +1 -0
- package/chains/qa.d.ts +1 -0
- package/chains/qa.js +1 -0
- package/chains/retrieval-qa.d.ts +1 -0
- package/chains/retrieval-qa.js +1 -0
- package/chains/summarization.d.ts +1 -0
- package/chains/summarization.js +1 -0
- package/core/chunker.d.ts +1 -0
- package/core/chunker.js +1 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/core/knowledge.d.ts +1 -0
- package/core/knowledge.js +1 -0
- package/core/orka.d.ts +1 -0
- package/core/orka.js +1 -0
- package/errors/index.d.ts +1 -0
- package/errors/index.js +1 -0
- package/evaluation/assertions.d.ts +1 -0
- package/evaluation/assertions.js +1 -0
- package/evaluation/index.d.ts +1 -0
- package/evaluation/index.js +1 -0
- package/evaluation/metrics.d.ts +1 -0
- package/evaluation/metrics.js +1 -0
- package/evaluation/reporters.d.ts +1 -0
- package/evaluation/reporters.js +1 -0
- package/evaluation/test-runner.d.ts +1 -0
- package/evaluation/test-runner.js +1 -0
- package/graph/helpers.d.ts +1 -0
- package/graph/helpers.js +1 -0
- package/graph/index.d.ts +1 -0
- package/graph/index.js +1 -0
- package/graph/workflow.d.ts +1 -0
- package/graph/workflow.js +1 -0
- package/loaders/csv.d.ts +1 -0
- package/loaders/csv.js +1 -0
- package/loaders/directory.d.ts +1 -0
- package/loaders/directory.js +1 -0
- package/loaders/index.d.ts +1 -0
- package/loaders/index.js +1 -0
- package/loaders/json.d.ts +1 -0
- package/loaders/json.js +1 -0
- package/loaders/markdown.d.ts +1 -0
- package/loaders/markdown.js +1 -0
- package/loaders/pdf.d.ts +1 -0
- package/loaders/pdf.js +1 -0
- package/loaders/text.d.ts +1 -0
- package/loaders/text.js +1 -0
- package/memory/index.d.ts +1 -0
- package/memory/index.js +1 -0
- package/memory/memory.d.ts +1 -0
- package/memory/memory.js +1 -0
- package/memory/session-memory.d.ts +1 -0
- package/memory/session-memory.js +1 -0
- package/observability/index.d.ts +1 -0
- package/observability/index.js +1 -0
- package/observability/tracer.d.ts +1 -0
- package/observability/tracer.js +1 -0
- package/orchestration/consensus.d.ts +1 -0
- package/orchestration/consensus.js +1 -0
- package/orchestration/index.d.ts +1 -0
- package/orchestration/index.js +1 -0
- package/orchestration/load-balancer.d.ts +1 -0
- package/orchestration/load-balancer.js +1 -0
- package/orchestration/race.d.ts +1 -0
- package/orchestration/race.js +1 -0
- package/orchestration/router.d.ts +1 -0
- package/orchestration/router.js +1 -0
- package/package.json +299 -2
- package/parsers/auto-fix.d.ts +1 -0
- package/parsers/auto-fix.js +1 -0
- package/parsers/comma-separated-list.d.ts +1 -0
- package/parsers/comma-separated-list.js +1 -0
- package/parsers/csv.d.ts +1 -0
- package/parsers/csv.js +1 -0
- package/parsers/index.d.ts +1 -0
- package/parsers/index.js +1 -0
- package/parsers/json.d.ts +1 -0
- package/parsers/json.js +1 -0
- package/parsers/list.d.ts +1 -0
- package/parsers/list.js +1 -0
- package/parsers/structured.d.ts +1 -0
- package/parsers/structured.js +1 -0
- package/parsers/xml.d.ts +1 -0
- package/parsers/xml.js +1 -0
- package/prompts/file-persistence.d.ts +1 -0
- package/prompts/file-persistence.js +1 -0
- package/prompts/index.d.ts +1 -0
- package/prompts/index.js +1 -0
- package/prompts/registry.d.ts +1 -0
- package/prompts/registry.js +1 -0
- package/resilience/fallback.d.ts +1 -0
- package/resilience/fallback.js +1 -0
- package/resilience/index.d.ts +1 -0
- package/resilience/index.js +1 -0
- package/resilience/resilient-llm.d.ts +1 -0
- package/resilience/resilient-llm.js +1 -0
- package/resilience/retry.d.ts +1 -0
- package/resilience/retry.js +1 -0
- package/retrievers/bm25.d.ts +1 -0
- package/retrievers/bm25.js +1 -0
- package/retrievers/compression.d.ts +1 -0
- package/retrievers/compression.js +1 -0
- package/retrievers/ensemble.d.ts +1 -0
- package/retrievers/ensemble.js +1 -0
- package/retrievers/index.d.ts +1 -0
- package/retrievers/index.js +1 -0
- package/retrievers/multi-query.d.ts +1 -0
- package/retrievers/multi-query.js +1 -0
- package/retrievers/parent-document.d.ts +1 -0
- package/retrievers/parent-document.js +1 -0
- package/retrievers/self-query.d.ts +1 -0
- package/retrievers/self-query.js +1 -0
- package/retrievers/vector.d.ts +1 -0
- package/retrievers/vector.js +1 -0
- package/splitters/code.d.ts +1 -0
- package/splitters/code.js +1 -0
- package/splitters/index.d.ts +1 -0
- package/splitters/index.js +1 -0
- package/splitters/markdown.d.ts +1 -0
- package/splitters/markdown.js +1 -0
- package/splitters/recursive.d.ts +1 -0
- package/splitters/recursive.js +1 -0
- package/splitters/token.d.ts +1 -0
- package/splitters/token.js +1 -0
- package/templates/chat.d.ts +1 -0
- package/templates/chat.js +1 -0
- package/templates/few-shot.d.ts +1 -0
- package/templates/few-shot.js +1 -0
- package/templates/index.d.ts +1 -0
- package/templates/index.js +1 -0
- package/templates/prompt.d.ts +1 -0
- package/templates/prompt.js +1 -0
- package/types/index.d.ts +1 -0
- package/types/index.js +1 -0
- package/workflow/index.d.ts +1 -0
- package/workflow/index.js +1 -0
- package/workflow/steps.d.ts +1 -0
- package/workflow/steps.js +1 -0
- package/workflow/workflow.d.ts +1 -0
- package/workflow/workflow.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.2] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Full compatibility with `moduleResolution: "node"` (legacy mode)
|
|
12
|
+
- Generated proxy files at package root for all subpath exports
|
|
13
|
+
- Support for all TypeScript module resolution modes: `"node"`, `"node16"`, `"nodenext"`, `"bundler"`
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Module resolution now works with legacy `moduleResolution: "node"` configuration
|
|
17
|
+
- Improved compatibility with existing TypeScript projects
|
|
18
|
+
|
|
8
19
|
## [1.3.0] - 2026-10-15
|
|
9
20
|
- Added support for TypeScript 5.9
|
|
10
21
|
- Cleaned up architectural migration
|
package/README.md
CHANGED
|
@@ -23,6 +23,21 @@
|
|
|
23
23
|
npm install orkajs
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
### TypeScript Configuration
|
|
27
|
+
|
|
28
|
+
OrkaJS works with all `moduleResolution` modes:
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"compilerOptions": {
|
|
33
|
+
"moduleResolution": "node" // ✅ Legacy (supported)
|
|
34
|
+
// or "node16" // ✅ Modern
|
|
35
|
+
// or "nodenext" // ✅ Modern
|
|
36
|
+
// or "bundler" // ✅ Bundlers (Vite, Webpack)
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
26
41
|
## Quick Start
|
|
27
42
|
|
|
28
43
|
```typescript
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/anthropic';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/anthropic.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/chroma';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/chroma.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/memory';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/memory.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/mistral';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/mistral.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/ollama';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/ollama.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/openai';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/openai.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/pinecone';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/pinecone.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/adapters/qdrant';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/adapters/qdrant.cjs');
|
package/agent/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/agent/index';
|
package/agent/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/agent/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/agent/openai-functions';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/agent/openai-functions.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/agent/plan-and-execute';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/agent/plan-and-execute.cjs');
|
package/agent/react.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/agent/react';
|
package/agent/react.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/agent/react.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/agent/structured-chat';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/agent/structured-chat.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/agent/toolkits/csv';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/agent/toolkits/csv.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/agent/toolkits/sql';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/agent/toolkits/sql.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/cache/cached-embeddings';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cache/cached-embeddings.cjs');
|
package/cache/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/cache/index';
|
package/cache/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cache/index.cjs');
|
package/cache/llm.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/cache/cached-llm';
|
package/cache/llm.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cache/cached-llm.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/cache/memory-cache';
|
package/cache/memory.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cache/memory-cache.cjs');
|
package/cache/redis.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/cache/redis-cache';
|
package/cache/redis.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/cache/redis-cache.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/chains/conversational-retrieval';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/chains/conversational-retrieval.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/chains/index';
|
package/chains/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/chains/index.cjs');
|
package/chains/qa.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/chains/qa';
|
package/chains/qa.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/chains/qa.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/chains/retrieval-qa';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/chains/retrieval-qa.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/chains/summarization';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/chains/summarization.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/core/chunker';
|
package/core/chunker.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/core/chunker.cjs');
|
package/core/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/core/index';
|
package/core/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/core/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/core/knowledge';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/core/knowledge.cjs');
|
package/core/orka.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/core/orka';
|
package/core/orka.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/core/orka.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/errors/index';
|
package/errors/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/errors/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/evaluation/assertions';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/evaluation/assertions.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/evaluation/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/evaluation/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/evaluation/metrics';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/evaluation/metrics.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/evaluation/reporters';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/evaluation/reporters.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/evaluation/test-runner';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/evaluation/test-runner.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/graph/helpers';
|
package/graph/helpers.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/graph/helpers.cjs');
|
package/graph/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/graph/index';
|
package/graph/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/graph/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/graph/graph-workflow';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/graph/graph-workflow.cjs');
|
package/loaders/csv.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/csv-loader';
|
package/loaders/csv.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/csv-loader.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/directory-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/directory-loader.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/index';
|
package/loaders/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/json-loader';
|
package/loaders/json.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/json-loader.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/markdown-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/markdown-loader.cjs');
|
package/loaders/pdf.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/pdf-loader';
|
package/loaders/pdf.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/pdf-loader.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/loaders/text-loader';
|
package/loaders/text.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/loaders/text-loader.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/memory/index';
|
package/memory/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/memory/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/memory/memory';
|
package/memory/memory.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/memory/memory.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/memory/session-memory';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/memory/session-memory.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/observability/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/observability/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/observability/tracer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/observability/tracer.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/orchestration/consensus';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/orchestration/consensus.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/orchestration/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/orchestration/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/orchestration/load-balancer';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/orchestration/load-balancer.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/orchestration/race';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/orchestration/race.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/orchestration/router';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/orchestration/router.cjs');
|