forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypes.ts
57 lines (49 loc) · 1.29 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import type Indy from 'indy-sdk';
import type { Did, WalletConfig, WalletCredentials, Verkey } from 'indy-sdk';
import { ConnectionRecord } from './modules/connections';
import { AgentMessage } from './agent/AgentMessage';
import { Logger } from './logger';
type $FixMe = any;
export type WireMessage = $FixMe;
export interface InitConfig {
host?: string;
port?: string | number;
endpoint?: string;
label: string;
publicDid?: Did;
publicDidSeed?: string;
mediatorUrl?: string;
walletConfig: WalletConfig;
walletCredentials: WalletCredentials;
autoAcceptConnections?: boolean;
genesisPath?: string;
poolName?: string;
logger?: Logger;
indy: typeof Indy;
}
export interface UnpackedMessage {
'@type': string;
[key: string]: unknown;
}
export interface UnpackedMessageContext {
message: UnpackedMessage;
sender_verkey?: Verkey;
recipient_verkey?: Verkey;
}
export interface OutboundMessage<T extends AgentMessage = AgentMessage> {
connection: ConnectionRecord;
endpoint?: string;
payload: T;
recipientKeys: Verkey[];
routingKeys: Verkey[];
senderVk: Verkey | null;
}
export interface OutboundPackage {
connection: ConnectionRecord;
payload: WireMessage;
endpoint?: string;
}
export interface InboundConnection {
verkey: Verkey;
connection: ConnectionRecord;
}