@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 CHANGED
@@ -1,14 +1,19 @@
1
- # [7.0.0](https://github.com/juspay/neurolink/compare/v6.2.1...v7.0.0) (2025-07-31)
1
+ # [7.1.0](https://github.com/juspay/neurolink/compare/v7.0.0...v7.1.0) (2025-08-03)
2
2
 
3
3
 
4
- ### Code Refactoring
4
+ ### Features
5
+
6
+ * **core:** major CLI optimization and comprehensive core functionality overhaul ([66ad664](https://github.com/juspay/neurolink/commit/66ad6649163c21c1f5cf7dcb936af8903abc4a17))
5
7
 
6
- * **structure:** standardize all filenames and directories to camelCase ([656d094](https://github.com/juspay/neurolink/commit/656d094ac5f6caeecb4aebbfbe3f49f75f1adc4a))
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
- * **structure:** None - all functionality preserved, only naming conventions updated
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
- executeProviderStatus(argv: UnknownRecord): Promise<void>;
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
  }