+2
-1
tasks/logTasks.ts
+2
-1
tasks/logTasks.ts
+1
utils/agentContext.ts
+1
utils/agentContext.ts
+1
utils/processNotification.ts
+1
utils/processNotification.ts
+8
-2
utils/types.ts
+8
-2
utils/types.ts
···
8
} from "./const.ts";
9
import type {
10
AutomationLevel,
11
-
ResponsiblePartyType,
12
AutonomyDeclaration,
13
ResponsibleParty,
14
} from "@voyager/autonomy-lexicon";
15
16
export type Notification = AppBskyNotificationListNotifications.Notification;
17
18
// Re-export types from autonomy-lexicon package
19
-
export type { AutomationLevel, ResponsiblePartyType, AutonomyDeclaration, ResponsibleParty };
20
21
export type notifType = typeof validNotifTypes[number];
22
···
38
mentionCount: number;
39
replyCount: number;
40
quoteCount: number;
41
// required manual variables
42
lettaProjectIdentifier: string;
43
agentBskyHandle: string;
···
8
} from "./const.ts";
9
import type {
10
AutomationLevel,
11
AutonomyDeclaration,
12
ResponsibleParty,
13
+
ResponsiblePartyType,
14
} from "@voyager/autonomy-lexicon";
15
16
export type Notification = AppBskyNotificationListNotifications.Notification;
17
18
// Re-export types from autonomy-lexicon package
19
+
export type {
20
+
AutomationLevel,
21
+
AutonomyDeclaration,
22
+
ResponsibleParty,
23
+
ResponsiblePartyType,
24
+
};
25
26
export type notifType = typeof validNotifTypes[number];
27
···
43
mentionCount: number;
44
replyCount: number;
45
quoteCount: number;
46
+
notifCount: number;
47
// required manual variables
48
lettaProjectIdentifier: string;
49
agentBskyHandle: string;