@juspay/neurolink 7.0.0 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -4
- package/dist/cli/factories/commandFactory.d.ts +53 -2
- package/dist/cli/factories/commandFactory.js +541 -92
- package/dist/cli/index.d.ts +6 -0
- package/dist/cli/index.js +18 -990
- package/dist/core/factory.js +2 -0
- package/dist/factories/providerRegistry.js +3 -1
- package/dist/lib/core/factory.js +3 -0
- package/dist/lib/factories/providerRegistry.js +3 -1
- package/dist/lib/mcp/toolRegistry.d.ts +5 -0
- package/dist/lib/mcp/toolRegistry.js +60 -0
- package/dist/lib/neurolink.js +9 -4
- package/dist/lib/sdk/toolRegistration.js +17 -0
- package/dist/lib/utils/logger.js +5 -6
- package/dist/lib/utils/providerUtils.js +9 -2
- package/dist/mcp/toolRegistry.d.ts +5 -0
- package/dist/mcp/toolRegistry.js +60 -0
- package/dist/neurolink.js +9 -4
- package/dist/sdk/toolRegistration.js +17 -0
- package/dist/utils/logger.js +5 -6
- package/dist/utils/providerUtils.js +9 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
# [7.
|
|
1
|
+
# [7.1.0](https://github.com/juspay/neurolink/compare/v7.0.0...v7.1.0) (2025-08-03)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **core:** major CLI optimization and comprehensive core functionality overhaul ([66ad664](https://github.com/juspay/neurolink/commit/66ad6649163c21c1f5cf7dcb936af8903abc4a17))
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
# [7.0.0](https://github.com/juspay/neurolink/compare/v6.2.1...v7.0.0) (2025-07-31)
|
|
9
|
+
|
|
10
|
+
### Code Refactoring
|
|
7
11
|
|
|
12
|
+
- **structure:** standardize all filenames and directories to camelCase ([656d094](https://github.com/juspay/neurolink/commit/656d094ac5f6caeecb4aebbfbe3f49f75f1adc4a))
|
|
8
13
|
|
|
9
14
|
### BREAKING CHANGES
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
- **structure:** None - all functionality preserved, only naming conventions updated
|
|
12
17
|
|
|
13
18
|
## [6.2.1](https://github.com/juspay/neurolink/compare/v6.2.0...v6.2.1) (2025-07-31)
|
|
14
19
|
|
|
@@ -1,19 +1,70 @@
|
|
|
1
1
|
import type { CommandModule } from "yargs";
|
|
2
|
-
import type { UnknownRecord } from "../../lib/types/common.js";
|
|
3
2
|
/**
|
|
4
3
|
* CLI Command Factory for generate commands
|
|
5
4
|
*/
|
|
6
5
|
export declare class CLICommandFactory {
|
|
6
|
+
private static readonly commonOptions;
|
|
7
|
+
private static buildOptions;
|
|
8
|
+
private static processOptions;
|
|
9
|
+
private static handleOutput;
|
|
7
10
|
/**
|
|
8
11
|
* Create the new primary 'generate' command
|
|
9
12
|
*/
|
|
10
13
|
static createGenerateCommand(): CommandModule;
|
|
14
|
+
/**
|
|
15
|
+
* Create stream command
|
|
16
|
+
*/
|
|
17
|
+
static createStreamCommand(): CommandModule;
|
|
18
|
+
/**
|
|
19
|
+
* Create batch command
|
|
20
|
+
*/
|
|
21
|
+
static createBatchCommand(): CommandModule;
|
|
22
|
+
/**
|
|
23
|
+
* Create provider commands
|
|
24
|
+
*/
|
|
25
|
+
static createProviderCommands(): CommandModule;
|
|
26
|
+
/**
|
|
27
|
+
* Create status command (alias for provider status)
|
|
28
|
+
*/
|
|
29
|
+
static createStatusCommand(): CommandModule;
|
|
30
|
+
/**
|
|
31
|
+
* Create config commands
|
|
32
|
+
*/
|
|
33
|
+
static createConfigCommands(): CommandModule;
|
|
34
|
+
/**
|
|
35
|
+
* Create get-best-provider command
|
|
36
|
+
*/
|
|
37
|
+
static createBestProviderCommand(): CommandModule;
|
|
38
|
+
/**
|
|
39
|
+
* Create completion command
|
|
40
|
+
*/
|
|
41
|
+
static createCompletionCommand(): CommandModule;
|
|
11
42
|
/**
|
|
12
43
|
* Execute provider status command
|
|
13
44
|
*/
|
|
14
|
-
|
|
45
|
+
private static executeProviderStatus;
|
|
15
46
|
/**
|
|
16
47
|
* Execute the generate command
|
|
17
48
|
*/
|
|
18
49
|
private static executeGenerate;
|
|
50
|
+
/**
|
|
51
|
+
* Execute the stream command
|
|
52
|
+
*/
|
|
53
|
+
private static executeStream;
|
|
54
|
+
/**
|
|
55
|
+
* Execute the batch command
|
|
56
|
+
*/
|
|
57
|
+
private static executeBatch;
|
|
58
|
+
/**
|
|
59
|
+
* Execute config export command
|
|
60
|
+
*/
|
|
61
|
+
private static executeConfigExport;
|
|
62
|
+
/**
|
|
63
|
+
* Execute get best provider command
|
|
64
|
+
*/
|
|
65
|
+
private static executeGetBestProvider;
|
|
66
|
+
/**
|
|
67
|
+
* Execute completion command
|
|
68
|
+
*/
|
|
69
|
+
private static executeCompletion;
|
|
19
70
|
}
|