-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
131 lines (127 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import type { Worker, WorkerManager } from "@workers/manager";
import {
ConsentEntityType,
ConsentState,
IdentifierKind,
type Consent,
type GroupMember,
type Installation,
type LogLevel,
} from "@xmtp/node-bindings";
import {
Client,
Conversation,
Dm,
Group,
type DecodedMessage,
type Signer,
type XmtpEnv,
} from "@xmtp/node-sdk";
export type { WorkerManager, Worker };
export type WorkerStreamMessage = {
type: "stream_message";
message: DecodedMessage;
};
export type { Consent };
export {
Client,
ConsentEntityType,
ConsentState,
DecodedMessage,
Conversation,
Dm,
Group,
IdentifierKind,
type GroupMember,
type Installation,
type Signer,
type LogLevel,
type XmtpEnv,
};
// Define the expected return type of verifyStream
export type VerifyStreamResult = {
allReceived: boolean;
messages: string[][];
};
export type GroupMetadataContent = {
metadataFieldChanges: Array<{
fieldName: string;
newValue: string;
oldValue: string;
}>;
};
// Default workers as an enum
const defaultNames = [
"bob",
"alice",
"fabri",
"elon",
"joe",
"charlie",
"dave",
"rosalie",
"eve",
"frank",
"grace",
"henry",
"ivy",
"jack",
"karen",
"larry",
"mary",
"nancy",
"oscar",
"paul",
"quinn",
"rachel",
"steve",
"tom",
"ursula",
"victor",
"wendy",
"xavier",
"yolanda",
"zack",
"adam",
"bella",
"carl",
"diana",
"eric",
"fiona",
"george",
"hannah",
"ian",
"julia",
"keith",
"lisa",
"mike",
"nina",
"oliver",
"penny",
"quentin",
"rosa",
"sam",
"tina",
"uma",
"vince",
"walt",
"xena",
"yara",
"zara",
"guada",
//max 61
];
export type typeofStream = "message" | "conversation" | "consent" | "none";
export const defaultValues = {
amount: 5,
timeout: 40000,
perMessageTimeout: 3000,
defaultNames,
};
// Custom transport that buffers logs in memory
export interface LogInfo {
timestamp: string;
level: string;
message: string;
[key: symbol]: string | undefined;
}