@illalabs/interfaces 0.23.0 → 0.24.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/dist/interfaces/index.d.ts +0 -1
- package/dist/interfaces/index.d.ts.map +1 -1
- package/dist/interfaces/index.js +0 -1
- package/dist/interfaces/index.js.map +1 -1
- package/dist/schemas/chatContext.d.ts +368 -0
- package/dist/schemas/chatContext.d.ts.map +1 -1
- package/dist/schemas/chatRequestBody.d.ts +452 -0
- package/dist/schemas/chatRequestBody.d.ts.map +1 -1
- package/dist/schemas/telemetryEvents.d.ts +8 -8
- package/dist/schemas/toolAutorouter.d.ts +373 -0
- package/dist/schemas/toolAutorouter.d.ts.map +1 -1
- package/dist/schemas/toolAutorouter.js +69 -1
- package/dist/schemas/toolAutorouter.js.map +1 -1
- package/dist/types/toolAutorouter.d.ts +8 -1
- package/dist/types/toolAutorouter.d.ts.map +1 -1
- package/dist/types/toolAutorouter.js +1 -1
- package/dist/types/toolAutorouter.js.map +1 -1
- package/dist/utils/constants.d.ts +8 -0
- package/dist/utils/constants.d.ts.map +1 -1
- package/dist/utils/constants.js +16 -0
- package/dist/utils/constants.js.map +1 -1
- package/package.json +1 -1
- package/dist/interfaces/autoRouter.d.ts +0 -34
- package/dist/interfaces/autoRouter.d.ts.map +0 -1
- package/dist/interfaces/autoRouter.js +0 -2
- package/dist/interfaces/autoRouter.js.map +0 -1
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { SupportedLendingProvider, SupportedSwapBridgeProvider } from "../utils/constants.js";
|
|
2
|
-
/**
|
|
3
|
-
* Lending provider type
|
|
4
|
-
*/
|
|
5
|
-
export type LendingProvider = SupportedLendingProvider;
|
|
6
|
-
/**
|
|
7
|
-
* Configuration for lending only operations
|
|
8
|
-
*/
|
|
9
|
-
export type LendingOnly = {
|
|
10
|
-
lending: LendingProvider;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* Configuration for specific DeFi actions
|
|
14
|
-
*/
|
|
15
|
-
export type ActionsOnly = {
|
|
16
|
-
supply: LendingProvider;
|
|
17
|
-
withdraw: LendingProvider;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* DeFi configuration union type
|
|
21
|
-
*/
|
|
22
|
-
export type DeFiConfig = LendingOnly | ActionsOnly;
|
|
23
|
-
/**
|
|
24
|
-
* Swap and bridge provider type
|
|
25
|
-
*/
|
|
26
|
-
export type SwapBridgeProvider = SupportedSwapBridgeProvider;
|
|
27
|
-
/**
|
|
28
|
-
* Auto router configuration interface
|
|
29
|
-
*/
|
|
30
|
-
export interface AutoRouterConfig {
|
|
31
|
-
DeFi?: DeFiConfig;
|
|
32
|
-
SwapBridge?: SwapBridgeProvider;
|
|
33
|
-
}
|
|
34
|
-
//# sourceMappingURL=autoRouter.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"autoRouter.d.ts","sourceRoot":"","sources":["../../src/interfaces/autoRouter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,2BAA2B,EAAE,MAAM,uBAAuB,CAAC;AAEnG;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,wBAAwB,CAAC;AAEvD;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACtB,OAAO,EAAE,eAAe,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACtB,MAAM,EAAE,eAAe,CAAC;IACxB,QAAQ,EAAE,eAAe,CAAC;CAC7B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,WAAW,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,2BAA2B,CAAC;AAE7D;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,UAAU,CAAC,EAAE,kBAAkB,CAAC;CACnC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"autoRouter.js","sourceRoot":"","sources":["../../src/interfaces/autoRouter.ts"],"names":[],"mappings":""}
|