@juspay/neurolink 11.16.0 → 11.16.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 +4 -3
- package/dist/auth/providers/BaseAuthProvider.d.ts +1 -1
- package/dist/browser/neurolink.min.js +350 -350
- package/dist/core/geminiLoopAdapter.js +26 -8
- package/dist/core/loopEngine.js +13 -3
- package/dist/providers/googleNativeGemini3/utils.d.ts +16 -0
- package/dist/providers/googleNativeGemini3/utils.js +38 -23
- package/dist/providers/googleVertex/client.js +14 -0
- package/dist/types/loopEngine.d.ts +10 -0
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
## [11.16.
|
|
1
|
+
## [11.16.2](https://github.com/juspay/neurolink/compare/v11.16.1...v11.16.2) (2026-08-22)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bug Fixes
|
|
4
4
|
|
|
5
|
-
- **(
|
|
5
|
+
- **(test):** stop the office security suite passing when nothing parsed ([c836a92](https://github.com/juspay/neurolink/commit/c836a921c27dbb89158b9ae0ed100ef0e63207b1))
|
|
6
|
+
- **(tools):** read the real catalog field in the provider onboarding gate ([e4bdc60](https://github.com/juspay/neurolink/commit/e4bdc6048eb9e25da9cd6956eb97fa9e431464b3))
|
|
6
7
|
|
|
7
8
|
## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
|
|
8
9
|
|
|
@@ -87,7 +87,7 @@ export declare abstract class BaseAuthProvider implements AuthProvider {
|
|
|
87
87
|
protected sessionStorage: SessionStorage;
|
|
88
88
|
protected sessionConfig: SessionConfig;
|
|
89
89
|
protected rbacConfig: RBACConfig;
|
|
90
|
-
protected emitter: EventEmitter<
|
|
90
|
+
protected emitter: EventEmitter<[never]>;
|
|
91
91
|
constructor(config: AuthProviderConfig);
|
|
92
92
|
/**
|
|
93
93
|
* Validate and authenticate a token
|