@indexnetwork/protocol 0.24.1-rc.81.1 → 0.26.0-rc.83.1
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/chat/chat.graph.d.ts +2 -2
- package/dist/intent/intent.graph.d.ts +6 -6
- package/dist/intent/intent.state.d.ts +1 -1
- package/dist/maintenance/maintenance.graph.d.ts +1 -1
- package/dist/negotiation/negotiation.graph.d.ts +12 -12
- package/dist/negotiation/negotiation.graph.d.ts.map +1 -1
- package/dist/negotiation/negotiation.state.d.ts +1 -1
- package/dist/network/indexer/indexer.graph.d.ts +1 -1
- package/dist/network/membership/membership.graph.d.ts +1 -1
- package/dist/network/network.graph.d.ts +6 -6
- package/dist/network/network.state.d.ts +1 -1
- package/dist/opportunity/feed/feed.graph.d.ts +1 -1
- package/dist/opportunity/opportunity.graph.d.ts +8 -8
- package/dist/opportunity/opportunity.graph.d.ts.map +1 -1
- package/dist/opportunity/opportunity.graph.js +1 -1
- package/dist/opportunity/opportunity.graph.js.map +1 -1
- package/dist/opportunity/opportunity.state.d.ts +1 -1
- package/dist/opportunity/opportunity.tools.d.ts.map +1 -1
- package/dist/opportunity/opportunity.tools.js +4 -3
- package/dist/opportunity/opportunity.tools.js.map +1 -1
- package/dist/profile/profile.graph.d.ts +1 -1
- package/dist/shared/hyde/hyde.graph.d.ts +1 -1
- package/dist/shared/interfaces/database.interface.d.ts +4 -4
- package/dist/shared/interfaces/database.interface.d.ts.map +1 -1
- package/dist/shared/interfaces/delivery-ledger.interface.d.ts +3 -2
- package/dist/shared/interfaces/delivery-ledger.interface.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -168,7 +168,7 @@ export declare class ChatGraphFactory {
|
|
|
168
168
|
iterationCount?: undefined;
|
|
169
169
|
debugMeta?: undefined;
|
|
170
170
|
};
|
|
171
|
-
}, unknown, unknown>;
|
|
171
|
+
}, unknown, unknown, []>;
|
|
172
172
|
/**
|
|
173
173
|
* Creates a streaming-enabled graph with optional checkpointer for persistence.
|
|
174
174
|
* @param checkpointer - Optional checkpointer (e.g., MemorySaver or PostgresSaver)
|
|
@@ -310,7 +310,7 @@ export declare class ChatGraphFactory {
|
|
|
310
310
|
iterationCount?: undefined;
|
|
311
311
|
debugMeta?: undefined;
|
|
312
312
|
};
|
|
313
|
-
}, unknown, unknown>;
|
|
313
|
+
}, unknown, unknown, []>;
|
|
314
314
|
/**
|
|
315
315
|
* Load previous messages from a session and convert to LangChain messages.
|
|
316
316
|
* Handles token truncation to fit within context window limits.
|
|
@@ -16,7 +16,7 @@ export declare class IntentGraphFactory {
|
|
|
16
16
|
userProfile: string;
|
|
17
17
|
inputContent: string | undefined;
|
|
18
18
|
conversationContext: import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined;
|
|
19
|
-
operationMode: "
|
|
19
|
+
operationMode: "update" | "create" | "delete" | "propose" | "read";
|
|
20
20
|
targetIntentIds: string[] | undefined;
|
|
21
21
|
networkId: string | undefined;
|
|
22
22
|
activeIntents: string;
|
|
@@ -56,7 +56,7 @@ export declare class IntentGraphFactory {
|
|
|
56
56
|
userProfile?: string | undefined;
|
|
57
57
|
inputContent?: string | undefined;
|
|
58
58
|
conversationContext?: import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | import("@langchain/langgraph").OverwriteValue<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined> | undefined;
|
|
59
|
-
operationMode?: "
|
|
59
|
+
operationMode?: "update" | "create" | "delete" | "propose" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "propose" | "read"> | undefined;
|
|
60
60
|
targetIntentIds?: string[] | import("@langchain/langgraph").OverwriteValue<string[] | undefined> | undefined;
|
|
61
61
|
networkId?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
|
|
62
62
|
activeIntents?: string | import("@langchain/langgraph").OverwriteValue<string> | undefined;
|
|
@@ -129,7 +129,7 @@ export declare class IntentGraphFactory {
|
|
|
129
129
|
Root: <S extends import("@langchain/langgraph").StateDefinition>(sd: S) => import("@langchain/langgraph").AnnotationRoot<S>;
|
|
130
130
|
};
|
|
131
131
|
conversationContext: import("@langchain/langgraph").BaseChannel<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined, import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | import("@langchain/langgraph").OverwriteValue<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined> | undefined, unknown>;
|
|
132
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
132
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "propose" | "read", "update" | "create" | "delete" | "propose" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "propose" | "read">, unknown>;
|
|
133
133
|
targetIntentIds: import("@langchain/langgraph").BaseChannel<string[] | undefined, string[] | import("@langchain/langgraph").OverwriteValue<string[] | undefined> | undefined, unknown>;
|
|
134
134
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
135
135
|
activeIntents: import("@langchain/langgraph").BaseChannel<string, string | import("@langchain/langgraph").OverwriteValue<string>, unknown>;
|
|
@@ -223,7 +223,7 @@ export declare class IntentGraphFactory {
|
|
|
223
223
|
Root: <S extends import("@langchain/langgraph").StateDefinition>(sd: S) => import("@langchain/langgraph").AnnotationRoot<S>;
|
|
224
224
|
};
|
|
225
225
|
conversationContext: import("@langchain/langgraph").BaseChannel<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined, import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | import("@langchain/langgraph").OverwriteValue<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined> | undefined, unknown>;
|
|
226
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
226
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "propose" | "read", "update" | "create" | "delete" | "propose" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "propose" | "read">, unknown>;
|
|
227
227
|
targetIntentIds: import("@langchain/langgraph").BaseChannel<string[] | undefined, string[] | import("@langchain/langgraph").OverwriteValue<string[] | undefined> | undefined, unknown>;
|
|
228
228
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
229
229
|
activeIntents: import("@langchain/langgraph").BaseChannel<string, string | import("@langchain/langgraph").OverwriteValue<string>, unknown>;
|
|
@@ -404,7 +404,7 @@ export declare class IntentGraphFactory {
|
|
|
404
404
|
Root: <S extends import("@langchain/langgraph").StateDefinition>(sd: S) => import("@langchain/langgraph").AnnotationRoot<S>;
|
|
405
405
|
};
|
|
406
406
|
conversationContext: import("@langchain/langgraph").BaseChannel<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined, import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | import("@langchain/langgraph").OverwriteValue<import("@langchain/core/messages").BaseMessage<import("@langchain/core/messages").MessageStructure<import("@langchain/core/messages").MessageToolSet>, import("@langchain/core/messages").MessageType>[] | undefined> | undefined, unknown>;
|
|
407
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
407
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "propose" | "read", "update" | "create" | "delete" | "propose" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "propose" | "read">, unknown>;
|
|
408
408
|
targetIntentIds: import("@langchain/langgraph").BaseChannel<string[] | undefined, string[] | import("@langchain/langgraph").OverwriteValue<string[] | undefined> | undefined, unknown>;
|
|
409
409
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
410
410
|
activeIntents: import("@langchain/langgraph").BaseChannel<string, string | import("@langchain/langgraph").OverwriteValue<string>, unknown>;
|
|
@@ -485,6 +485,6 @@ export declare class IntentGraphFactory {
|
|
|
485
485
|
executor: {
|
|
486
486
|
executionResults: ExecutionResult[];
|
|
487
487
|
};
|
|
488
|
-
}, unknown, unknown>;
|
|
488
|
+
}, unknown, unknown, []>;
|
|
489
489
|
}
|
|
490
490
|
//# sourceMappingURL=intent.graph.d.ts.map
|
|
@@ -74,7 +74,7 @@ export declare const IntentGraphState: import("@langchain/langgraph").Annotation
|
|
|
74
74
|
*
|
|
75
75
|
* Defaults to 'create' for backward compatibility.
|
|
76
76
|
*/
|
|
77
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
77
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "propose" | "read", "update" | "create" | "delete" | "propose" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "propose" | "read">, unknown>;
|
|
78
78
|
/**
|
|
79
79
|
* For update/delete operations, specifies which intent IDs to target.
|
|
80
80
|
* Optional - used when modifying or removing specific intents.
|
|
@@ -40,7 +40,7 @@ export declare class NegotiationGraphFactory {
|
|
|
40
40
|
};
|
|
41
41
|
message?: string | null | undefined;
|
|
42
42
|
} | null;
|
|
43
|
-
status: "
|
|
43
|
+
status: "completed" | "waiting_for_agent" | "active";
|
|
44
44
|
outcome: {
|
|
45
45
|
reasoning: string;
|
|
46
46
|
turnCount: number;
|
|
@@ -93,7 +93,7 @@ export declare class NegotiationGraphFactory {
|
|
|
93
93
|
};
|
|
94
94
|
message?: string | null | undefined;
|
|
95
95
|
} | null> | null | undefined;
|
|
96
|
-
status?: "
|
|
96
|
+
status?: "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active"> | undefined;
|
|
97
97
|
outcome?: {
|
|
98
98
|
reasoning: string;
|
|
99
99
|
turnCount: number;
|
|
@@ -168,7 +168,7 @@ export declare class NegotiationGraphFactory {
|
|
|
168
168
|
};
|
|
169
169
|
message?: string | null | undefined;
|
|
170
170
|
} | null> | null, unknown>;
|
|
171
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
171
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
172
172
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
173
173
|
reasoning: string;
|
|
174
174
|
turnCount: number;
|
|
@@ -252,7 +252,7 @@ export declare class NegotiationGraphFactory {
|
|
|
252
252
|
};
|
|
253
253
|
message?: string | null | undefined;
|
|
254
254
|
} | null> | null, unknown>;
|
|
255
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
255
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
256
256
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
257
257
|
reasoning: string;
|
|
258
258
|
turnCount: number;
|
|
@@ -352,7 +352,7 @@ export declare class NegotiationGraphFactory {
|
|
|
352
352
|
};
|
|
353
353
|
message?: string | null | undefined;
|
|
354
354
|
} | null> | null, unknown>;
|
|
355
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
355
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
356
356
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
357
357
|
reasoning: string;
|
|
358
358
|
turnCount: number;
|
|
@@ -399,7 +399,7 @@ export declare class NegotiationGraphFactory {
|
|
|
399
399
|
};
|
|
400
400
|
status: "completed";
|
|
401
401
|
};
|
|
402
|
-
}, unknown, unknown>;
|
|
402
|
+
}, unknown, unknown, []>;
|
|
403
403
|
}
|
|
404
404
|
export interface NegotiationCandidate {
|
|
405
405
|
userId: string;
|
|
@@ -483,7 +483,7 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
483
483
|
};
|
|
484
484
|
message?: string | null | undefined;
|
|
485
485
|
} | null;
|
|
486
|
-
status: "
|
|
486
|
+
status: "completed" | "waiting_for_agent" | "active";
|
|
487
487
|
outcome: {
|
|
488
488
|
reasoning: string;
|
|
489
489
|
turnCount: number;
|
|
@@ -536,7 +536,7 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
536
536
|
};
|
|
537
537
|
message?: string | null | undefined;
|
|
538
538
|
} | null> | null | undefined;
|
|
539
|
-
status?: "
|
|
539
|
+
status?: "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active"> | undefined;
|
|
540
540
|
outcome?: {
|
|
541
541
|
reasoning: string;
|
|
542
542
|
turnCount: number;
|
|
@@ -611,7 +611,7 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
611
611
|
};
|
|
612
612
|
message?: string | null | undefined;
|
|
613
613
|
} | null> | null, unknown>;
|
|
614
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
614
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
615
615
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
616
616
|
reasoning: string;
|
|
617
617
|
turnCount: number;
|
|
@@ -695,7 +695,7 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
695
695
|
};
|
|
696
696
|
message?: string | null | undefined;
|
|
697
697
|
} | null> | null, unknown>;
|
|
698
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
698
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
699
699
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
700
700
|
reasoning: string;
|
|
701
701
|
turnCount: number;
|
|
@@ -795,7 +795,7 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
795
795
|
};
|
|
796
796
|
message?: string | null | undefined;
|
|
797
797
|
} | null> | null, unknown>;
|
|
798
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
798
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
799
799
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
800
800
|
reasoning: string;
|
|
801
801
|
turnCount: number;
|
|
@@ -842,5 +842,5 @@ export declare function createDefaultNegotiationGraph(deps: {
|
|
|
842
842
|
};
|
|
843
843
|
status: "completed";
|
|
844
844
|
};
|
|
845
|
-
}, unknown, unknown>;
|
|
845
|
+
}, unknown, unknown, []>;
|
|
846
846
|
//# sourceMappingURL=negotiation.graph.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"negotiation.graph.d.ts","sourceRoot":"","sources":["../../src/negotiation/negotiation.graph.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"negotiation.graph.d.ts","sourceRoot":"","sources":["../../src/negotiation/negotiation.graph.ts"],"names":[],"mappings":"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"}
|
|
@@ -308,7 +308,7 @@ export declare const NegotiationGraphState: import("@langchain/langgraph").Annot
|
|
|
308
308
|
* - `waiting_for_agent` — graph suspended; awaiting external agent response or timeout
|
|
309
309
|
* - `completed` — negotiation finalized (accept/reject/turn-cap/timeout)
|
|
310
310
|
*/
|
|
311
|
-
status: import("@langchain/langgraph").BaseChannel<"
|
|
311
|
+
status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active", "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active">, unknown>;
|
|
312
312
|
outcome: import("@langchain/langgraph").BaseChannel<{
|
|
313
313
|
reasoning: string;
|
|
314
314
|
turnCount: number;
|
|
@@ -15,7 +15,7 @@ export declare class NetworkGraphFactory {
|
|
|
15
15
|
createGraph(): import("@langchain/langgraph").CompiledStateGraph<{
|
|
16
16
|
userId: string;
|
|
17
17
|
networkId: string | undefined;
|
|
18
|
-
operationMode: "
|
|
18
|
+
operationMode: "update" | "create" | "delete" | "read";
|
|
19
19
|
createInput: {
|
|
20
20
|
title: string;
|
|
21
21
|
prompt?: string;
|
|
@@ -75,7 +75,7 @@ export declare class NetworkGraphFactory {
|
|
|
75
75
|
}, {
|
|
76
76
|
userId?: string | undefined;
|
|
77
77
|
networkId?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
|
|
78
|
-
operationMode?: "
|
|
78
|
+
operationMode?: "update" | "create" | "delete" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "read"> | undefined;
|
|
79
79
|
createInput?: {
|
|
80
80
|
title: string;
|
|
81
81
|
prompt?: string;
|
|
@@ -182,14 +182,14 @@ export declare class NetworkGraphFactory {
|
|
|
182
182
|
error?: string;
|
|
183
183
|
} | undefined> | undefined;
|
|
184
184
|
error?: string | import("@langchain/langgraph").OverwriteValue<string | null> | null | undefined;
|
|
185
|
-
}, "
|
|
185
|
+
}, "update" | "create" | "read" | "__start__" | "delete_idx", {
|
|
186
186
|
userId: {
|
|
187
187
|
(annotation: import("@langchain/langgraph").SingleReducer<string, string>): import("@langchain/langgraph").BaseChannel<string, string | import("@langchain/langgraph").OverwriteValue<string>, unknown>;
|
|
188
188
|
(): import("@langchain/langgraph").LastValue<string>;
|
|
189
189
|
Root: <S extends import("@langchain/langgraph").StateDefinition>(sd: S) => import("@langchain/langgraph").AnnotationRoot<S>;
|
|
190
190
|
};
|
|
191
191
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
192
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
192
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "read", "update" | "create" | "delete" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "read">, unknown>;
|
|
193
193
|
createInput: import("@langchain/langgraph").BaseChannel<{
|
|
194
194
|
title: string;
|
|
195
195
|
prompt?: string;
|
|
@@ -353,7 +353,7 @@ export declare class NetworkGraphFactory {
|
|
|
353
353
|
Root: <S extends import("@langchain/langgraph").StateDefinition>(sd: S) => import("@langchain/langgraph").AnnotationRoot<S>;
|
|
354
354
|
};
|
|
355
355
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
356
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
356
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "read", "update" | "create" | "delete" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "read">, unknown>;
|
|
357
357
|
createInput: import("@langchain/langgraph").BaseChannel<{
|
|
358
358
|
title: string;
|
|
359
359
|
prompt?: string;
|
|
@@ -626,6 +626,6 @@ export declare class NetworkGraphFactory {
|
|
|
626
626
|
error?: undefined;
|
|
627
627
|
};
|
|
628
628
|
};
|
|
629
|
-
}, unknown, unknown>;
|
|
629
|
+
}, unknown, unknown, []>;
|
|
630
630
|
}
|
|
631
631
|
//# sourceMappingURL=network.graph.d.ts.map
|
|
@@ -15,7 +15,7 @@ export declare const NetworkGraphState: import("@langchain/langgraph").Annotatio
|
|
|
15
15
|
/** Target index ID. Required for read/update/delete. From ChatGraph or tool arg. */
|
|
16
16
|
networkId: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
17
17
|
/** Operation mode. */
|
|
18
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
18
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"update" | "create" | "delete" | "read", "update" | "create" | "delete" | "read" | import("@langchain/langgraph").OverwriteValue<"update" | "create" | "delete" | "read">, unknown>;
|
|
19
19
|
/** For create mode: index creation data. */
|
|
20
20
|
createInput: import("@langchain/langgraph").BaseChannel<{
|
|
21
21
|
title: string;
|
|
@@ -121,7 +121,7 @@ export declare class OpportunityGraphFactory {
|
|
|
121
121
|
opportunityId: string;
|
|
122
122
|
counterpartyUserId: string;
|
|
123
123
|
}[];
|
|
124
|
-
operationMode: "
|
|
124
|
+
operationMode: "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction";
|
|
125
125
|
introductionEntities: EvaluatorEntity[];
|
|
126
126
|
introductionHint: string | undefined;
|
|
127
127
|
requiredNetworkId: Id<"networks"> | undefined;
|
|
@@ -199,7 +199,7 @@ export declare class OpportunityGraphFactory {
|
|
|
199
199
|
opportunityId: string;
|
|
200
200
|
counterpartyUserId: string;
|
|
201
201
|
}[]> | undefined;
|
|
202
|
-
operationMode?: "
|
|
202
|
+
operationMode?: "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction" | import("@langchain/langgraph").OverwriteValue<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction"> | undefined;
|
|
203
203
|
introductionEntities?: EvaluatorEntity[] | import("@langchain/langgraph").OverwriteValue<EvaluatorEntity[]> | undefined;
|
|
204
204
|
introductionHint?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
|
|
205
205
|
requiredNetworkId?: Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined;
|
|
@@ -293,7 +293,7 @@ export declare class OpportunityGraphFactory {
|
|
|
293
293
|
data?: Record<string, unknown>;
|
|
294
294
|
}[]> | undefined;
|
|
295
295
|
agentTimings?: DebugMetaAgent[] | import("@langchain/langgraph").OverwriteValue<DebugMetaAgent[]> | undefined;
|
|
296
|
-
}, "
|
|
296
|
+
}, "send" | "update" | "read" | "__start__" | "prep" | "negotiate_existing" | "approve_introduction" | "scope" | "resolve" | "discovery" | "evaluation" | "ranking" | "intro_validation" | "intro_evaluation" | "persist" | "delete_opp" | "negotiate", {
|
|
297
297
|
userId: import("@langchain/langgraph").BaseChannel<Id<"users">, Id<"users"> | import("@langchain/langgraph").OverwriteValue<Id<"users">>, unknown>;
|
|
298
298
|
searchQuery: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
299
299
|
networkId: import("@langchain/langgraph").BaseChannel<Id<"networks"> | undefined, Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined, unknown>;
|
|
@@ -312,7 +312,7 @@ export declare class OpportunityGraphFactory {
|
|
|
312
312
|
opportunityId: string;
|
|
313
313
|
counterpartyUserId: string;
|
|
314
314
|
}[]>, unknown>;
|
|
315
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
315
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction", "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction" | import("@langchain/langgraph").OverwriteValue<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction">, unknown>;
|
|
316
316
|
introductionEntities: import("@langchain/langgraph").BaseChannel<EvaluatorEntity[], EvaluatorEntity[] | import("@langchain/langgraph").OverwriteValue<EvaluatorEntity[]>, unknown>;
|
|
317
317
|
introductionHint: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
318
318
|
requiredNetworkId: import("@langchain/langgraph").BaseChannel<Id<"networks"> | undefined, Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined, unknown>;
|
|
@@ -457,7 +457,7 @@ export declare class OpportunityGraphFactory {
|
|
|
457
457
|
opportunityId: string;
|
|
458
458
|
counterpartyUserId: string;
|
|
459
459
|
}[]>, unknown>;
|
|
460
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
460
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction", "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction" | import("@langchain/langgraph").OverwriteValue<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction">, unknown>;
|
|
461
461
|
introductionEntities: import("@langchain/langgraph").BaseChannel<EvaluatorEntity[], EvaluatorEntity[] | import("@langchain/langgraph").OverwriteValue<EvaluatorEntity[]>, unknown>;
|
|
462
462
|
introductionHint: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
463
463
|
requiredNetworkId: import("@langchain/langgraph").BaseChannel<Id<"networks"> | undefined, Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined, unknown>;
|
|
@@ -603,7 +603,7 @@ export declare class OpportunityGraphFactory {
|
|
|
603
603
|
opportunityId: string;
|
|
604
604
|
counterpartyUserId: string;
|
|
605
605
|
}[]>, unknown>;
|
|
606
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
606
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction", "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction" | import("@langchain/langgraph").OverwriteValue<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction">, unknown>;
|
|
607
607
|
introductionEntities: import("@langchain/langgraph").BaseChannel<EvaluatorEntity[], EvaluatorEntity[] | import("@langchain/langgraph").OverwriteValue<EvaluatorEntity[]>, unknown>;
|
|
608
608
|
introductionHint: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
609
609
|
requiredNetworkId: import("@langchain/langgraph").BaseChannel<Id<"networks"> | undefined, Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined, unknown>;
|
|
@@ -978,7 +978,7 @@ export declare class OpportunityGraphFactory {
|
|
|
978
978
|
opportunityId: string;
|
|
979
979
|
counterpartyUserId: string;
|
|
980
980
|
}[]>, unknown>;
|
|
981
|
-
operationMode: import("@langchain/langgraph").BaseChannel<"
|
|
981
|
+
operationMode: import("@langchain/langgraph").BaseChannel<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction", "send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction" | import("@langchain/langgraph").OverwriteValue<"send" | "update" | "create" | "delete" | "read" | "create_introduction" | "continue_discovery" | "negotiate_existing" | "approve_introduction">, unknown>;
|
|
982
982
|
introductionEntities: import("@langchain/langgraph").BaseChannel<EvaluatorEntity[], EvaluatorEntity[] | import("@langchain/langgraph").OverwriteValue<EvaluatorEntity[]>, unknown>;
|
|
983
983
|
introductionHint: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
|
|
984
984
|
requiredNetworkId: import("@langchain/langgraph").BaseChannel<Id<"networks"> | undefined, Id<"networks"> | import("@langchain/langgraph").OverwriteValue<Id<"networks"> | undefined> | undefined, unknown>;
|
|
@@ -1219,6 +1219,6 @@ export declare class OpportunityGraphFactory {
|
|
|
1219
1219
|
};
|
|
1220
1220
|
}[];
|
|
1221
1221
|
};
|
|
1222
|
-
}, unknown, unknown>;
|
|
1222
|
+
}, unknown, unknown, []>;
|
|
1223
1223
|
}
|
|
1224
1224
|
//# sourceMappingURL=opportunity.graph.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opportunity.graph.d.ts","sourceRoot":"","sources":["../../src/opportunity/opportunity.graph.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"opportunity.graph.d.ts","sourceRoot":"","sources":["../../src/opportunity/opportunity.graph.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAGH,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,4CAA4C,CAAC;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAEL,KAAK,aAAa,EAClB,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,cAAc,EACnB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC/B,MAAM,wBAAwB,CAAC;AAEhC,OAAO,EAEL,KAAK,gBAAgB,EAErB,KAAK,eAAe,EACpB,KAAK,cAAc,EACpB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4CAA4C,CAAC;AAK3F,yDAAyD;AACzD,MAAM,MAAM,wBAAwB,GAAG;IACrC,MAAM,CAAC,EAAE,CACP,oBAAoB,EAAE,MAAM,EAC5B,UAAU,EAAE,gBAAgB,EAAE,EAC9B,OAAO,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,KAC3B,OAAO,CAAC,KAAK,CAAC;QACjB,QAAQ,EAAE,MAAM,CAAC;QACjB,WAAW,EAAE,MAAM,CAAC;QACpB,KAAK,EAAE,MAAM,CAAC;QACd,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;KAC3C,CAAC,CAAC,CAAC;IACJ,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,OAAO,CAAC,KAAK,CAAC;QAC5F,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,KAAK,CAAC;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;YAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC,CAAC;KACjG,CAAC,CAAC,CAAC;CACL,CAAC;AACF,OAAO,KAAK,EAAE,QAAQ,EAAiB,MAAM,4CAA4C,CAAC;AAC1F,OAAO,KAAK,EAEV,WAAW,EAGZ,MAAM,4CAA4C,CAAC;AAKpD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oDAAoD,CAAC;AAU1F,0EAA0E;AAC1E,MAAM,WAAW,wBAAwB;IACvC,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,uGAAuG;AACvG,MAAM,MAAM,8BAA8B,GAAG,CAC3C,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,WAAW,GAAG,MAAM,GAAG,KAAK,KACnC,OAAO,CAAC,OAAO,CAAC,CAAC;AAEtB;;;;;;GAMG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,iBAAiB,GAAG,IAAI,GAAG,SAAS,EAC7C,OAAO,EAAE,aAAa,EAAE,GAAG,SAAS,GACnC,MAAM,GAAG,SAAS,CAgCpB;AAED;;;GAGG;AACH,qBAAa,uBAAuB;IAEhC,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,iBAAiB,CAAC;IAC1B,OAAO,CAAC,iBAAiB,CAAC;IAC1B,OAAO,CAAC,gBAAgB,CAAC;IACzB;;;;OAIG;IACH,OAAO,CAAC,eAAe,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,sBAAsB,CAAC;gBAvBvB,QAAQ,EAAE,wBAAwB,EAClC,QAAQ,EAAE,QAAQ,EAClB,aAAa,EAAE;QACrB,MAAM,EAAE,CAAC,KAAK,EAAE,wBAAwB,KAAK,OAAO,CAAC;YACnD,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;YACzC,MAAM,CAAC,EAAE,KAAK,CAAC;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,UAAU,GAAG,SAAS,CAAA;aAAE,CAAC,CAAC;YAClE,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;gBAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;gBAAC,IAAI,CAAC,EAAE,MAAM,CAAA;aAAE,CAAC,CAAC;SACtE,CAAC,CAAC;KACJ,EACO,iBAAiB,CAAC,EAAE,wBAAwB,YAAA,EAC5C,iBAAiB,CAAC,EAAE,8BAA8B,YAAA,EAClD,gBAAgB,CAAC,EAAE,oBAAoB,YAAA;IAC/C;;;;OAIG;IACK,eAAe,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,kBAAkB,CAAC,YAAA;IACnE;;;;OAIG;IACK,sBAAsB,CAAC,GAAE,CAAC,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,aAAA;IAGpF,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAmhB4B,MAAM;yBAAW,MAAM;uBAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;4BA2U5D,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC;;;;;4BAuIrB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC;;;sBA9E1B,MAAM;yBAAW,MAAM;uBAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;sBAiQvD,MAAM;yBAAW,MAAM;uBAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAi7DlG"}
|
|
@@ -2542,7 +2542,7 @@ export class OpportunityGraphFactory {
|
|
|
2542
2542
|
conversationId = dm.id;
|
|
2543
2543
|
}
|
|
2544
2544
|
}
|
|
2545
|
-
await this.database.updateOpportunityStatus(state.opportunityId, state.newStatus);
|
|
2545
|
+
await this.database.updateOpportunityStatus(state.opportunityId, state.newStatus, state.newStatus === 'accepted' ? state.userId : undefined);
|
|
2546
2546
|
return {
|
|
2547
2547
|
mutationResult: {
|
|
2548
2548
|
success: true,
|