@elizaos/core 1.5.13-alpha.2 → 1.5.13-alpha.4
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/browser/index.browser.js +68 -68
- package/dist/browser/index.browser.js.map +11 -23
- package/dist/index.browser.d.ts +1 -0
- package/dist/index.browser.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.node.d.ts +1 -0
- package/dist/index.node.d.ts.map +1 -1
- package/dist/memory.d.ts +64 -0
- package/dist/memory.d.ts.map +1 -0
- package/dist/node/index.node.js +179 -218
- package/dist/node/index.node.js.map +11 -23
- package/dist/runtime.d.ts +23 -18
- package/dist/runtime.d.ts.map +1 -1
- package/dist/schemas/character.d.ts +2 -1
- package/dist/schemas/character.d.ts.map +1 -1
- package/dist/types/components.d.ts +32 -13
- package/dist/types/components.d.ts.map +1 -1
- package/dist/types/events.d.ts +1 -16
- package/dist/types/events.d.ts.map +1 -1
- package/dist/types/index.d.ts +0 -11
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/knowledge.d.ts +0 -29
- package/dist/types/knowledge.d.ts.map +1 -1
- package/dist/types/memory.d.ts +0 -62
- package/dist/types/memory.d.ts.map +1 -1
- package/dist/types/model.d.ts +23 -58
- package/dist/types/model.d.ts.map +1 -1
- package/dist/types/primitives.d.ts +2 -1
- package/dist/types/primitives.d.ts.map +1 -1
- package/dist/types/runtime.d.ts +7 -6
- package/dist/types/runtime.d.ts.map +1 -1
- package/dist/types/state.d.ts +1 -38
- package/dist/types/state.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/types/browser.d.ts +0 -127
- package/dist/types/browser.d.ts.map +0 -1
- package/dist/types/email.d.ts +0 -143
- package/dist/types/email.d.ts.map +0 -1
- package/dist/types/lp.d.ts +0 -115
- package/dist/types/lp.d.ts.map +0 -1
- package/dist/types/message.d.ts +0 -202
- package/dist/types/message.d.ts.map +0 -1
- package/dist/types/pdf.d.ts +0 -68
- package/dist/types/pdf.d.ts.map +0 -1
- package/dist/types/post.d.ts +0 -242
- package/dist/types/post.d.ts.map +0 -1
- package/dist/types/token.d.ts +0 -73
- package/dist/types/token.d.ts.map +0 -1
- package/dist/types/transcription.d.ts +0 -108
- package/dist/types/transcription.d.ts.map +0 -1
- package/dist/types/video.d.ts +0 -93
- package/dist/types/video.d.ts.map +0 -1
- package/dist/types/wallet.d.ts +0 -49
- package/dist/types/wallet.d.ts.map +0 -1
- package/dist/types/web-search.d.ts +0 -112
- package/dist/types/web-search.d.ts.map +0 -1
package/dist/types/token.d.ts
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { Service } from './service';
|
|
2
|
-
/**
|
|
3
|
-
* A standardized representation of a token holding.
|
|
4
|
-
*/
|
|
5
|
-
export interface TokenBalance {
|
|
6
|
-
address: string;
|
|
7
|
-
balance: string;
|
|
8
|
-
decimals: number;
|
|
9
|
-
uiAmount?: number;
|
|
10
|
-
name?: string;
|
|
11
|
-
symbol?: string;
|
|
12
|
-
logoURI?: string;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Generic representation of token data that can be provided by various services.
|
|
16
|
-
*/
|
|
17
|
-
export interface TokenData {
|
|
18
|
-
id: string;
|
|
19
|
-
symbol: string;
|
|
20
|
-
name: string;
|
|
21
|
-
address: string;
|
|
22
|
-
chain: string;
|
|
23
|
-
sourceProvider: string;
|
|
24
|
-
price?: number;
|
|
25
|
-
priceChange24hPercent?: number;
|
|
26
|
-
priceChange24hUSD?: number;
|
|
27
|
-
volume24hUSD?: number;
|
|
28
|
-
marketCapUSD?: number;
|
|
29
|
-
liquidity?: number;
|
|
30
|
-
holders?: number;
|
|
31
|
-
logoURI?: string;
|
|
32
|
-
decimals?: number;
|
|
33
|
-
lastUpdatedAt?: Date;
|
|
34
|
-
raw?: any;
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Interface for a generic service that provides token data.
|
|
38
|
-
*/
|
|
39
|
-
export declare abstract class ITokenDataService extends Service {
|
|
40
|
-
static readonly serviceType: "token_data";
|
|
41
|
-
readonly capabilityDescription: string;
|
|
42
|
-
/**
|
|
43
|
-
* Fetches detailed information for a single token.
|
|
44
|
-
* @param address The token's contract address.
|
|
45
|
-
* @param chain The blockchain the token resides on.
|
|
46
|
-
* @returns A Promise resolving to TokenData or null if not found.
|
|
47
|
-
*/
|
|
48
|
-
abstract getTokenDetails(address: string, chain: string): Promise<TokenData | null>;
|
|
49
|
-
/**
|
|
50
|
-
* Fetches a list of trending tokens.
|
|
51
|
-
* @param chain Optional: Filter by a specific blockchain.
|
|
52
|
-
* @param limit Optional: Number of tokens to return. Defaults to a service-specific value.
|
|
53
|
-
* @param timePeriod Optional: Time period for trending data (e.g., '24h', '7d'). Defaults to service-specific.
|
|
54
|
-
* @returns A Promise resolving to an array of TokenData.
|
|
55
|
-
*/
|
|
56
|
-
abstract getTrendingTokens(chain?: string, limit?: number, timePeriod?: string): Promise<TokenData[]>;
|
|
57
|
-
/**
|
|
58
|
-
* Searches for tokens based on a query string.
|
|
59
|
-
* @param query The search query (e.g., symbol, name, address).
|
|
60
|
-
* @param chain Optional: Filter by a specific blockchain.
|
|
61
|
-
* @param limit Optional: Number of results to return.
|
|
62
|
-
* @returns A Promise resolving to an array of TokenData.
|
|
63
|
-
*/
|
|
64
|
-
abstract searchTokens(query: string, chain?: string, limit?: number): Promise<TokenData[]>;
|
|
65
|
-
/**
|
|
66
|
-
* Fetches data for multiple tokens by their addresses on a specific chain.
|
|
67
|
-
* @param addresses Array of token contract addresses.
|
|
68
|
-
* @param chain The blockchain the tokens reside on.
|
|
69
|
-
* @returns A Promise resolving to an array of TokenData. May not include all requested if some are not found.
|
|
70
|
-
*/
|
|
71
|
-
abstract getTokensByAddresses(addresses: string[], chain: string): Promise<TokenData[]>;
|
|
72
|
-
}
|
|
73
|
-
//# sourceMappingURL=token.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"token.d.ts","sourceRoot":"","sources":["../../src/types/token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAe,MAAM,WAAW,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,MAAM,CAAC;IAEvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,aAAa,CAAC,EAAE,IAAI,CAAC;IAGrB,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED;;GAEG;AACH,8BAAsB,iBAAkB,SAAQ,OAAO;IACrD,gBAAyB,WAAW,eAA0B;IAC9D,SAAgB,qBAAqB,EACqB,MAAM,CAAC;IAEjE;;;;;OAKG;IACH,QAAQ,CAAC,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC;IAEnF;;;;;;OAMG;IACH,QAAQ,CAAC,iBAAiB,CACxB,KAAK,CAAC,EAAE,MAAM,EACd,KAAK,CAAC,EAAE,MAAM,EACd,UAAU,CAAC,EAAE,MAAM,GAClB,OAAO,CAAC,SAAS,EAAE,CAAC;IAEvB;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC;IAE1F;;;;;OAKG;IACH,QAAQ,CAAC,oBAAoB,CAAC,SAAS,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC;CAKxF"}
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import { Service } from './service';
|
|
2
|
-
export interface TranscriptionOptions {
|
|
3
|
-
language?: string;
|
|
4
|
-
model?: string;
|
|
5
|
-
temperature?: number;
|
|
6
|
-
prompt?: string;
|
|
7
|
-
response_format?: 'json' | 'text' | 'srt' | 'vtt' | 'verbose_json';
|
|
8
|
-
timestamp_granularities?: ('word' | 'segment')[];
|
|
9
|
-
word_timestamps?: boolean;
|
|
10
|
-
segment_timestamps?: boolean;
|
|
11
|
-
}
|
|
12
|
-
export interface TranscriptionResult {
|
|
13
|
-
text: string;
|
|
14
|
-
language?: string;
|
|
15
|
-
duration?: number;
|
|
16
|
-
segments?: TranscriptionSegment[];
|
|
17
|
-
words?: TranscriptionWord[];
|
|
18
|
-
confidence?: number;
|
|
19
|
-
}
|
|
20
|
-
export interface TranscriptionSegment {
|
|
21
|
-
id: number;
|
|
22
|
-
text: string;
|
|
23
|
-
start: number;
|
|
24
|
-
end: number;
|
|
25
|
-
confidence?: number;
|
|
26
|
-
tokens?: number[];
|
|
27
|
-
temperature?: number;
|
|
28
|
-
avg_logprob?: number;
|
|
29
|
-
compression_ratio?: number;
|
|
30
|
-
no_speech_prob?: number;
|
|
31
|
-
}
|
|
32
|
-
export interface TranscriptionWord {
|
|
33
|
-
word: string;
|
|
34
|
-
start: number;
|
|
35
|
-
end: number;
|
|
36
|
-
confidence?: number;
|
|
37
|
-
}
|
|
38
|
-
export interface SpeechToTextOptions {
|
|
39
|
-
language?: string;
|
|
40
|
-
model?: string;
|
|
41
|
-
continuous?: boolean;
|
|
42
|
-
interimResults?: boolean;
|
|
43
|
-
maxAlternatives?: number;
|
|
44
|
-
}
|
|
45
|
-
export interface TextToSpeechOptions {
|
|
46
|
-
voice?: string;
|
|
47
|
-
model?: string;
|
|
48
|
-
speed?: number;
|
|
49
|
-
format?: 'mp3' | 'wav' | 'flac' | 'aac';
|
|
50
|
-
response_format?: 'mp3' | 'opus' | 'aac' | 'flac';
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Interface for audio transcription and speech services
|
|
54
|
-
*/
|
|
55
|
-
export declare abstract class ITranscriptionService extends Service {
|
|
56
|
-
static readonly serviceType: "transcription";
|
|
57
|
-
readonly capabilityDescription = "Audio transcription and speech processing capabilities";
|
|
58
|
-
/**
|
|
59
|
-
* Transcribe audio file to text
|
|
60
|
-
* @param audioPath - Path to audio file or audio buffer
|
|
61
|
-
* @param options - Transcription options
|
|
62
|
-
* @returns Promise resolving to transcription result
|
|
63
|
-
*/
|
|
64
|
-
abstract transcribeAudio(audioPath: string | Buffer, options?: TranscriptionOptions): Promise<TranscriptionResult>;
|
|
65
|
-
/**
|
|
66
|
-
* Transcribe video file to text (extracts audio first)
|
|
67
|
-
* @param videoPath - Path to video file or video buffer
|
|
68
|
-
* @param options - Transcription options
|
|
69
|
-
* @returns Promise resolving to transcription result
|
|
70
|
-
*/
|
|
71
|
-
abstract transcribeVideo(videoPath: string | Buffer, options?: TranscriptionOptions): Promise<TranscriptionResult>;
|
|
72
|
-
/**
|
|
73
|
-
* Real-time speech to text from audio stream
|
|
74
|
-
* @param audioStream - Audio stream or buffer
|
|
75
|
-
* @param options - Speech to text options
|
|
76
|
-
* @returns Promise resolving to transcription result
|
|
77
|
-
*/
|
|
78
|
-
abstract speechToText(audioStream: NodeJS.ReadableStream | Buffer, options?: SpeechToTextOptions): Promise<TranscriptionResult>;
|
|
79
|
-
/**
|
|
80
|
-
* Convert text to speech
|
|
81
|
-
* @param text - Text to convert to speech
|
|
82
|
-
* @param options - Text to speech options
|
|
83
|
-
* @returns Promise resolving to audio buffer
|
|
84
|
-
*/
|
|
85
|
-
abstract textToSpeech(text: string, options?: TextToSpeechOptions): Promise<Buffer>;
|
|
86
|
-
/**
|
|
87
|
-
* Get supported languages for transcription
|
|
88
|
-
* @returns Promise resolving to array of supported language codes
|
|
89
|
-
*/
|
|
90
|
-
abstract getSupportedLanguages(): Promise<string[]>;
|
|
91
|
-
/**
|
|
92
|
-
* Get available voices for text to speech
|
|
93
|
-
* @returns Promise resolving to array of available voices
|
|
94
|
-
*/
|
|
95
|
-
abstract getAvailableVoices(): Promise<Array<{
|
|
96
|
-
id: string;
|
|
97
|
-
name: string;
|
|
98
|
-
language: string;
|
|
99
|
-
gender?: 'male' | 'female' | 'neutral';
|
|
100
|
-
}>>;
|
|
101
|
-
/**
|
|
102
|
-
* Detect language of audio file
|
|
103
|
-
* @param audioPath - Path to audio file or audio buffer
|
|
104
|
-
* @returns Promise resolving to detected language code
|
|
105
|
-
*/
|
|
106
|
-
abstract detectLanguage(audioPath: string | Buffer): Promise<string>;
|
|
107
|
-
}
|
|
108
|
-
//# sourceMappingURL=transcription.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transcription.d.ts","sourceRoot":"","sources":["../../src/types/transcription.ts"],"names":[],"mappings":"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"}
|
package/dist/types/video.d.ts
DELETED
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import { Service } from './service';
|
|
2
|
-
export interface VideoInfo {
|
|
3
|
-
title?: string;
|
|
4
|
-
duration?: number;
|
|
5
|
-
url: string;
|
|
6
|
-
thumbnail?: string;
|
|
7
|
-
description?: string;
|
|
8
|
-
uploader?: string;
|
|
9
|
-
viewCount?: number;
|
|
10
|
-
uploadDate?: Date;
|
|
11
|
-
formats?: VideoFormat[];
|
|
12
|
-
}
|
|
13
|
-
export interface VideoFormat {
|
|
14
|
-
formatId: string;
|
|
15
|
-
url: string;
|
|
16
|
-
extension: string;
|
|
17
|
-
quality: string;
|
|
18
|
-
fileSize?: number;
|
|
19
|
-
videoCodec?: string;
|
|
20
|
-
audioCodec?: string;
|
|
21
|
-
resolution?: string;
|
|
22
|
-
fps?: number;
|
|
23
|
-
bitrate?: number;
|
|
24
|
-
}
|
|
25
|
-
export interface VideoDownloadOptions {
|
|
26
|
-
format?: string;
|
|
27
|
-
quality?: 'best' | 'worst' | 'bestvideo' | 'bestaudio' | string;
|
|
28
|
-
outputPath?: string;
|
|
29
|
-
audioOnly?: boolean;
|
|
30
|
-
videoOnly?: boolean;
|
|
31
|
-
subtitles?: boolean;
|
|
32
|
-
embedSubs?: boolean;
|
|
33
|
-
writeInfoJson?: boolean;
|
|
34
|
-
}
|
|
35
|
-
export interface VideoProcessingOptions {
|
|
36
|
-
startTime?: number;
|
|
37
|
-
endTime?: number;
|
|
38
|
-
outputFormat?: string;
|
|
39
|
-
resolution?: string;
|
|
40
|
-
bitrate?: string;
|
|
41
|
-
framerate?: number;
|
|
42
|
-
audioCodec?: string;
|
|
43
|
-
videoCodec?: string;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Interface for video processing and download services
|
|
47
|
-
*/
|
|
48
|
-
export declare abstract class IVideoService extends Service {
|
|
49
|
-
static readonly serviceType: "video";
|
|
50
|
-
readonly capabilityDescription = "Video download, processing, and conversion capabilities";
|
|
51
|
-
/**
|
|
52
|
-
* Get video information without downloading
|
|
53
|
-
* @param url - Video URL
|
|
54
|
-
* @returns Promise resolving to video information
|
|
55
|
-
*/
|
|
56
|
-
abstract getVideoInfo(url: string): Promise<VideoInfo>;
|
|
57
|
-
/**
|
|
58
|
-
* Download a video from URL
|
|
59
|
-
* @param url - Video URL
|
|
60
|
-
* @param options - Download options
|
|
61
|
-
* @returns Promise resolving to downloaded file path
|
|
62
|
-
*/
|
|
63
|
-
abstract downloadVideo(url: string, options?: VideoDownloadOptions): Promise<string>;
|
|
64
|
-
/**
|
|
65
|
-
* Extract audio from video
|
|
66
|
-
* @param videoPath - Path to video file or video URL
|
|
67
|
-
* @param outputPath - Optional output path for audio file
|
|
68
|
-
* @returns Promise resolving to audio file path
|
|
69
|
-
*/
|
|
70
|
-
abstract extractAudio(videoPath: string, outputPath?: string): Promise<string>;
|
|
71
|
-
/**
|
|
72
|
-
* Generate thumbnail from video
|
|
73
|
-
* @param videoPath - Path to video file or video URL
|
|
74
|
-
* @param timestamp - Timestamp in seconds to capture thumbnail
|
|
75
|
-
* @returns Promise resolving to thumbnail image path
|
|
76
|
-
*/
|
|
77
|
-
abstract getThumbnail(videoPath: string, timestamp?: number): Promise<string>;
|
|
78
|
-
/**
|
|
79
|
-
* Convert video to different format
|
|
80
|
-
* @param videoPath - Path to input video file
|
|
81
|
-
* @param outputPath - Path for output video file
|
|
82
|
-
* @param options - Processing options
|
|
83
|
-
* @returns Promise resolving to converted video path
|
|
84
|
-
*/
|
|
85
|
-
abstract convertVideo(videoPath: string, outputPath: string, options?: VideoProcessingOptions): Promise<string>;
|
|
86
|
-
/**
|
|
87
|
-
* Get available formats for a video URL
|
|
88
|
-
* @param url - Video URL
|
|
89
|
-
* @returns Promise resolving to available formats
|
|
90
|
-
*/
|
|
91
|
-
abstract getAvailableFormats(url: string): Promise<VideoFormat[]>;
|
|
92
|
-
}
|
|
93
|
-
//# sourceMappingURL=video.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"video.d.ts","sourceRoot":"","sources":["../../src/types/video.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAe,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,SAAS;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,IAAI,CAAC;IAClB,OAAO,CAAC,EAAE,WAAW,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,oBAAoB;IACnC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,WAAW,GAAG,WAAW,GAAG,MAAM,CAAC;IAChE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,WAAW,sBAAsB;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,8BAAsB,aAAc,SAAQ,OAAO;IACjD,gBAAyB,WAAW,UAAqB;IAEzD,SAAgB,qBAAqB,6DAA6D;IAElG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAEtD;;;;;OAKG;IACH,QAAQ,CAAC,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC;IAEpF;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAE9E;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAE7E;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,CACnB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,OAAO,CAAC,EAAE,sBAAsB,GAC/B,OAAO,CAAC,MAAM,CAAC;IAElB;;;;OAIG;IACH,QAAQ,CAAC,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;CAClE"}
|
package/dist/types/wallet.d.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { Service } from './service';
|
|
2
|
-
import type { TokenBalance } from './token';
|
|
3
|
-
/**
|
|
4
|
-
* Represents a single asset holding within a wallet, including its value.
|
|
5
|
-
* This extends a generic TokenBalance with wallet-specific valuation.
|
|
6
|
-
*/
|
|
7
|
-
export interface WalletAsset extends TokenBalance {
|
|
8
|
-
priceUsd?: number;
|
|
9
|
-
valueUsd?: number;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Represents the entire portfolio of assets in a wallet.
|
|
13
|
-
*/
|
|
14
|
-
export interface WalletPortfolio {
|
|
15
|
-
totalValueUsd: number;
|
|
16
|
-
assets: WalletAsset[];
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Abstract interface for a Wallet Service.
|
|
20
|
-
* Plugins that provide wallet functionality (e.g., for Solana, EVM) should implement this service.
|
|
21
|
-
* It provides a standardized way for other plugins to query the state of a wallet.
|
|
22
|
-
*/
|
|
23
|
-
export declare abstract class IWalletService extends Service {
|
|
24
|
-
static readonly serviceType: "wallet";
|
|
25
|
-
readonly capabilityDescription = "Provides standardized access to wallet balances and portfolios.";
|
|
26
|
-
/**
|
|
27
|
-
* Retrieves the entire portfolio of assets held by the wallet.
|
|
28
|
-
* @param owner - Optional: The specific wallet address/owner to query if the service manages multiple.
|
|
29
|
-
* @returns A promise that resolves to the wallet's portfolio.
|
|
30
|
-
*/
|
|
31
|
-
abstract getPortfolio(owner?: string): Promise<WalletPortfolio>;
|
|
32
|
-
/**
|
|
33
|
-
* Retrieves the balance of a specific asset in the wallet.
|
|
34
|
-
* @param assetAddress - The mint address or native identifier of the asset.
|
|
35
|
-
* @param owner - Optional: The specific wallet address/owner to query.
|
|
36
|
-
* @returns A promise that resolves to the user-friendly (decimal-adjusted) balance of the asset held.
|
|
37
|
-
*/
|
|
38
|
-
abstract getBalance(assetAddress: string, owner?: string): Promise<number>;
|
|
39
|
-
/**
|
|
40
|
-
* Transfers SOL from a specified keypair to a given public key.
|
|
41
|
-
* This is a low-level function primarily for Solana-based wallet services.
|
|
42
|
-
* @param from - The Keypair of the sender.
|
|
43
|
-
* @param to - The PublicKey of the recipient.
|
|
44
|
-
* @param lamports - The amount in lamports to transfer.
|
|
45
|
-
* @returns A promise that resolves with the transaction signature.
|
|
46
|
-
*/
|
|
47
|
-
abstract transferSol(from: any, to: any, lamports: number): Promise<string>;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=wallet.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/types/wallet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAe,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C;;;GAGG;AACH,MAAM,WAAW,WAAY,SAAQ,YAAY;IAC/C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,WAAW,EAAE,CAAC;CACvB;AAED;;;;GAIG;AACH,8BAAsB,cAAe,SAAQ,OAAO;IAClD,gBAAyB,WAAW,WAAsB;IAE1D,SAAgB,qBAAqB,qEAC+B;IAEpE;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAE/D;;;;;OAKG;IACH,QAAQ,CAAC,UAAU,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAE1E;;;;;;;OAOG;IACH,QAAQ,CAAC,WAAW,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAC5E"}
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import { Service } from './service';
|
|
2
|
-
export interface SearchOptions {
|
|
3
|
-
limit?: number;
|
|
4
|
-
offset?: number;
|
|
5
|
-
language?: string;
|
|
6
|
-
region?: string;
|
|
7
|
-
dateRange?: {
|
|
8
|
-
start?: Date;
|
|
9
|
-
end?: Date;
|
|
10
|
-
};
|
|
11
|
-
fileType?: string;
|
|
12
|
-
site?: string;
|
|
13
|
-
sortBy?: 'relevance' | 'date' | 'popularity';
|
|
14
|
-
safeSearch?: 'strict' | 'moderate' | 'off';
|
|
15
|
-
}
|
|
16
|
-
export interface SearchResult {
|
|
17
|
-
title: string;
|
|
18
|
-
url: string;
|
|
19
|
-
description: string;
|
|
20
|
-
displayUrl?: string;
|
|
21
|
-
thumbnail?: string;
|
|
22
|
-
publishedDate?: Date;
|
|
23
|
-
source?: string;
|
|
24
|
-
relevanceScore?: number;
|
|
25
|
-
snippet?: string;
|
|
26
|
-
}
|
|
27
|
-
export interface SearchResponse {
|
|
28
|
-
query: string;
|
|
29
|
-
results: SearchResult[];
|
|
30
|
-
totalResults?: number;
|
|
31
|
-
searchTime?: number;
|
|
32
|
-
suggestions?: string[];
|
|
33
|
-
nextPageToken?: string;
|
|
34
|
-
relatedSearches?: string[];
|
|
35
|
-
}
|
|
36
|
-
export interface NewsSearchOptions extends SearchOptions {
|
|
37
|
-
category?: 'general' | 'business' | 'entertainment' | 'health' | 'science' | 'sports' | 'technology';
|
|
38
|
-
freshness?: 'day' | 'week' | 'month';
|
|
39
|
-
}
|
|
40
|
-
export interface ImageSearchOptions extends SearchOptions {
|
|
41
|
-
size?: 'small' | 'medium' | 'large' | 'wallpaper' | 'any';
|
|
42
|
-
color?: 'color' | 'monochrome' | 'red' | 'orange' | 'yellow' | 'green' | 'blue' | 'purple' | 'pink' | 'brown' | 'black' | 'gray' | 'white';
|
|
43
|
-
type?: 'photo' | 'clipart' | 'line' | 'animated';
|
|
44
|
-
layout?: 'square' | 'wide' | 'tall' | 'any';
|
|
45
|
-
license?: 'any' | 'public' | 'share' | 'sharecommercially' | 'modify';
|
|
46
|
-
}
|
|
47
|
-
export interface VideoSearchOptions extends SearchOptions {
|
|
48
|
-
duration?: 'short' | 'medium' | 'long' | 'any';
|
|
49
|
-
resolution?: 'high' | 'standard' | 'any';
|
|
50
|
-
quality?: 'high' | 'standard' | 'any';
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Interface for web search services
|
|
54
|
-
*/
|
|
55
|
-
export declare abstract class IWebSearchService extends Service {
|
|
56
|
-
static readonly serviceType: "web_search";
|
|
57
|
-
readonly capabilityDescription = "Web search and content discovery capabilities";
|
|
58
|
-
/**
|
|
59
|
-
* Perform a general web search
|
|
60
|
-
* @param query - Search query
|
|
61
|
-
* @param options - Search options
|
|
62
|
-
* @returns Promise resolving to search results
|
|
63
|
-
*/
|
|
64
|
-
abstract search(query: string, options?: SearchOptions): Promise<SearchResponse>;
|
|
65
|
-
/**
|
|
66
|
-
* Search for news articles
|
|
67
|
-
* @param query - Search query
|
|
68
|
-
* @param options - News search options
|
|
69
|
-
* @returns Promise resolving to news search results
|
|
70
|
-
*/
|
|
71
|
-
abstract searchNews(query: string, options?: NewsSearchOptions): Promise<SearchResponse>;
|
|
72
|
-
/**
|
|
73
|
-
* Search for images
|
|
74
|
-
* @param query - Search query
|
|
75
|
-
* @param options - Image search options
|
|
76
|
-
* @returns Promise resolving to image search results
|
|
77
|
-
*/
|
|
78
|
-
abstract searchImages(query: string, options?: ImageSearchOptions): Promise<SearchResponse>;
|
|
79
|
-
/**
|
|
80
|
-
* Search for videos
|
|
81
|
-
* @param query - Search query
|
|
82
|
-
* @param options - Video search options
|
|
83
|
-
* @returns Promise resolving to video search results
|
|
84
|
-
*/
|
|
85
|
-
abstract searchVideos(query: string, options?: VideoSearchOptions): Promise<SearchResponse>;
|
|
86
|
-
/**
|
|
87
|
-
* Get search suggestions for a query
|
|
88
|
-
* @param query - Partial search query
|
|
89
|
-
* @returns Promise resolving to array of suggestions
|
|
90
|
-
*/
|
|
91
|
-
abstract getSuggestions(query: string): Promise<string[]>;
|
|
92
|
-
/**
|
|
93
|
-
* Get trending searches
|
|
94
|
-
* @param region - Optional region code
|
|
95
|
-
* @returns Promise resolving to trending search queries
|
|
96
|
-
*/
|
|
97
|
-
abstract getTrendingSearches(region?: string): Promise<string[]>;
|
|
98
|
-
/**
|
|
99
|
-
* Get detailed information about a specific URL
|
|
100
|
-
* @param url - URL to analyze
|
|
101
|
-
* @returns Promise resolving to page information
|
|
102
|
-
*/
|
|
103
|
-
abstract getPageInfo(url: string): Promise<{
|
|
104
|
-
title: string;
|
|
105
|
-
description: string;
|
|
106
|
-
content: string;
|
|
107
|
-
metadata: Record<string, string>;
|
|
108
|
-
images: string[];
|
|
109
|
-
links: string[];
|
|
110
|
-
}>;
|
|
111
|
-
}
|
|
112
|
-
//# sourceMappingURL=web-search.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"web-search.d.ts","sourceRoot":"","sources":["../../src/types/web-search.ts"],"names":[],"mappings":"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"}
|