@indexnetwork/protocol 4.5.0-rc.335.1 → 4.5.0-rc.337.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.
Files changed (48) hide show
  1. package/dist/chat/chat-streaming.types.d.ts +1 -1
  2. package/dist/chat/chat-streaming.types.d.ts.map +1 -1
  3. package/dist/chat/chat-streaming.types.js.map +1 -1
  4. package/dist/chat/chat.agent.d.ts +1 -1
  5. package/dist/chat/chat.agent.d.ts.map +1 -1
  6. package/dist/chat/chat.agent.js.map +1 -1
  7. package/dist/index.d.ts +6 -4
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +3 -2
  10. package/dist/index.js.map +1 -1
  11. package/dist/negotiation/negotiation.agent.d.ts +9 -0
  12. package/dist/negotiation/negotiation.agent.d.ts.map +1 -1
  13. package/dist/negotiation/negotiation.agent.js +11 -3
  14. package/dist/negotiation/negotiation.agent.js.map +1 -1
  15. package/dist/negotiation/negotiation.graph.d.ts +133 -35
  16. package/dist/negotiation/negotiation.graph.d.ts.map +1 -1
  17. package/dist/negotiation/negotiation.graph.js +197 -9
  18. package/dist/negotiation/negotiation.graph.js.map +1 -1
  19. package/dist/negotiation/negotiation.protocol.d.ts +250 -2
  20. package/dist/negotiation/negotiation.protocol.d.ts.map +1 -1
  21. package/dist/negotiation/negotiation.protocol.js +57 -8
  22. package/dist/negotiation/negotiation.protocol.js.map +1 -1
  23. package/dist/negotiation/negotiation.reflect.d.ts +199 -0
  24. package/dist/negotiation/negotiation.reflect.d.ts.map +1 -0
  25. package/dist/negotiation/negotiation.reflect.js +153 -0
  26. package/dist/negotiation/negotiation.reflect.js.map +1 -0
  27. package/dist/negotiation/negotiation.state.d.ts +40 -7
  28. package/dist/negotiation/negotiation.state.d.ts.map +1 -1
  29. package/dist/negotiation/negotiation.state.js +5 -1
  30. package/dist/negotiation/negotiation.state.js.map +1 -1
  31. package/dist/opportunity/question.prompt.d.ts +1 -1
  32. package/dist/opportunity/question.prompt.d.ts.map +1 -1
  33. package/dist/opportunity/question.prompt.js.map +1 -1
  34. package/dist/shared/agent/model.config.d.ts +5 -0
  35. package/dist/shared/agent/model.config.d.ts.map +1 -1
  36. package/dist/shared/agent/model.config.js +1 -0
  37. package/dist/shared/agent/model.config.js.map +1 -1
  38. package/dist/shared/interfaces/negotiation-events.interface.d.ts +30 -0
  39. package/dist/shared/interfaces/negotiation-events.interface.d.ts.map +1 -1
  40. package/dist/shared/interfaces/negotiation-events.interface.js.map +1 -1
  41. package/dist/shared/schemas/discovery-question.schema.d.ts +8 -8
  42. package/dist/shared/schemas/discovery-question.schema.js +1 -1
  43. package/dist/shared/schemas/discovery-question.schema.js.map +1 -1
  44. package/dist/shared/schemas/negotiation-state.schema.d.ts +41 -4
  45. package/dist/shared/schemas/negotiation-state.schema.d.ts.map +1 -1
  46. package/dist/shared/schemas/negotiation-state.schema.js +14 -0
  47. package/dist/shared/schemas/negotiation-state.schema.js.map +1 -1
  48. package/package.json +1 -1
@@ -6,6 +6,7 @@ import { type NegotiationTurn, type NegotiationOutcome, type UserNegotiationCont
6
6
  import { type ScreenDecisionRecord } from "./negotiation.screen.js";
7
7
  import type { NegotiationProtocolVersion } from "../shared/schemas/negotiation-state.schema.js";
8
8
  import type { QuestionerEnqueueFn } from "../questioner/questioner.types.js";
9
+ import type { ReflectEnqueueFn } from "./negotiation.reflect.js";
9
10
  /**
10
11
  * Factory for the bilateral negotiation LangGraph state machine.
11
12
  * @remarks Accepts an AgentDispatcher for per-turn agent resolution.
@@ -15,7 +16,8 @@ export declare class NegotiationGraphFactory {
15
16
  private dispatcher;
16
17
  private timeoutQueue?;
17
18
  private questionerEnqueue?;
18
- constructor(database: NegotiationGraphDatabase, dispatcher: AgentDispatcher, timeoutQueue?: NegotiationTimeoutQueue | undefined, questionerEnqueue?: QuestionerEnqueueFn | undefined);
19
+ private reflectEnqueue?;
20
+ constructor(database: NegotiationGraphDatabase, dispatcher: AgentDispatcher, timeoutQueue?: NegotiationTimeoutQueue | undefined, questionerEnqueue?: QuestionerEnqueueFn | undefined, reflectEnqueue?: ReflectEnqueueFn | undefined);
19
21
  createGraph(): import("@langchain/langgraph").CompiledStateGraph<{
20
22
  sourceUser: UserNegotiationContext;
21
23
  candidateUser: UserNegotiationContext;
@@ -38,7 +40,7 @@ export declare class NegotiationGraphFactory {
38
40
  timeoutMs: number;
39
41
  currentSpeaker: "source" | "candidate";
40
42
  lastTurn: {
41
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
43
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
42
44
  assessment: {
43
45
  reasoning: string;
44
46
  suggestedRoles: {
@@ -47,8 +49,12 @@ export declare class NegotiationGraphFactory {
47
49
  };
48
50
  };
49
51
  message?: string | null | undefined;
52
+ askUser?: {
53
+ disclosureSubject: string;
54
+ draftQuestion?: string | null | undefined;
55
+ } | null | undefined;
50
56
  } | null;
51
- status: "completed" | "waiting_for_agent" | "active";
57
+ status: "completed" | "waiting_for_agent" | "active" | "input_required";
52
58
  priorTurnCount: number;
53
59
  userAnswers: import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[];
54
60
  outcome: {
@@ -87,7 +93,7 @@ export declare class NegotiationGraphFactory {
87
93
  timeoutMs?: number | import("@langchain/langgraph").OverwriteValue<number> | undefined;
88
94
  currentSpeaker?: "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate"> | undefined;
89
95
  lastTurn?: {
90
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
96
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
91
97
  assessment: {
92
98
  reasoning: string;
93
99
  suggestedRoles: {
@@ -96,8 +102,12 @@ export declare class NegotiationGraphFactory {
96
102
  };
97
103
  };
98
104
  message?: string | null | undefined;
105
+ askUser?: {
106
+ disclosureSubject: string;
107
+ draftQuestion?: string | null | undefined;
108
+ } | null | undefined;
99
109
  } | import("@langchain/langgraph").OverwriteValue<{
100
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
110
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
101
111
  assessment: {
102
112
  reasoning: string;
103
113
  suggestedRoles: {
@@ -106,8 +116,12 @@ export declare class NegotiationGraphFactory {
106
116
  };
107
117
  };
108
118
  message?: string | null | undefined;
119
+ askUser?: {
120
+ disclosureSubject: string;
121
+ draftQuestion?: string | null | undefined;
122
+ } | null | undefined;
109
123
  } | null> | null | undefined;
110
- status?: "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active"> | undefined;
124
+ status?: "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required"> | undefined;
111
125
  priorTurnCount?: number | import("@langchain/langgraph").OverwriteValue<number> | undefined;
112
126
  userAnswers?: import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]> | undefined;
113
127
  outcome?: {
@@ -158,7 +172,7 @@ export declare class NegotiationGraphFactory {
158
172
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
159
173
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
160
174
  lastTurn: import("@langchain/langgraph").BaseChannel<{
161
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
175
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
162
176
  assessment: {
163
177
  reasoning: string;
164
178
  suggestedRoles: {
@@ -167,8 +181,12 @@ export declare class NegotiationGraphFactory {
167
181
  };
168
182
  };
169
183
  message?: string | null | undefined;
184
+ askUser?: {
185
+ disclosureSubject: string;
186
+ draftQuestion?: string | null | undefined;
187
+ } | null | undefined;
170
188
  } | null, {
171
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
189
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
172
190
  assessment: {
173
191
  reasoning: string;
174
192
  suggestedRoles: {
@@ -177,8 +195,12 @@ export declare class NegotiationGraphFactory {
177
195
  };
178
196
  };
179
197
  message?: string | null | undefined;
198
+ askUser?: {
199
+ disclosureSubject: string;
200
+ draftQuestion?: string | null | undefined;
201
+ } | null | undefined;
180
202
  } | import("@langchain/langgraph").OverwriteValue<{
181
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
203
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
182
204
  assessment: {
183
205
  reasoning: string;
184
206
  suggestedRoles: {
@@ -187,8 +209,12 @@ export declare class NegotiationGraphFactory {
187
209
  };
188
210
  };
189
211
  message?: string | null | undefined;
212
+ askUser?: {
213
+ disclosureSubject: string;
214
+ draftQuestion?: string | null | undefined;
215
+ } | null | undefined;
190
216
  } | null> | null, unknown>;
191
- 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>;
217
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
192
218
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
193
219
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
194
220
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -248,7 +274,7 @@ export declare class NegotiationGraphFactory {
248
274
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
249
275
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
250
276
  lastTurn: import("@langchain/langgraph").BaseChannel<{
251
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
277
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
252
278
  assessment: {
253
279
  reasoning: string;
254
280
  suggestedRoles: {
@@ -257,8 +283,12 @@ export declare class NegotiationGraphFactory {
257
283
  };
258
284
  };
259
285
  message?: string | null | undefined;
286
+ askUser?: {
287
+ disclosureSubject: string;
288
+ draftQuestion?: string | null | undefined;
289
+ } | null | undefined;
260
290
  } | null, {
261
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
291
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
262
292
  assessment: {
263
293
  reasoning: string;
264
294
  suggestedRoles: {
@@ -267,8 +297,12 @@ export declare class NegotiationGraphFactory {
267
297
  };
268
298
  };
269
299
  message?: string | null | undefined;
300
+ askUser?: {
301
+ disclosureSubject: string;
302
+ draftQuestion?: string | null | undefined;
303
+ } | null | undefined;
270
304
  } | import("@langchain/langgraph").OverwriteValue<{
271
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
305
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
272
306
  assessment: {
273
307
  reasoning: string;
274
308
  suggestedRoles: {
@@ -277,8 +311,12 @@ export declare class NegotiationGraphFactory {
277
311
  };
278
312
  };
279
313
  message?: string | null | undefined;
314
+ askUser?: {
315
+ disclosureSubject: string;
316
+ draftQuestion?: string | null | undefined;
317
+ } | null | undefined;
280
318
  } | null> | null, unknown>;
281
- 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>;
319
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
282
320
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
283
321
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
284
322
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -364,7 +402,7 @@ export declare class NegotiationGraphFactory {
364
402
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
365
403
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
366
404
  lastTurn: import("@langchain/langgraph").BaseChannel<{
367
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
405
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
368
406
  assessment: {
369
407
  reasoning: string;
370
408
  suggestedRoles: {
@@ -373,8 +411,12 @@ export declare class NegotiationGraphFactory {
373
411
  };
374
412
  };
375
413
  message?: string | null | undefined;
414
+ askUser?: {
415
+ disclosureSubject: string;
416
+ draftQuestion?: string | null | undefined;
417
+ } | null | undefined;
376
418
  } | null, {
377
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
419
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
378
420
  assessment: {
379
421
  reasoning: string;
380
422
  suggestedRoles: {
@@ -383,8 +425,12 @@ export declare class NegotiationGraphFactory {
383
425
  };
384
426
  };
385
427
  message?: string | null | undefined;
428
+ askUser?: {
429
+ disclosureSubject: string;
430
+ draftQuestion?: string | null | undefined;
431
+ } | null | undefined;
386
432
  } | import("@langchain/langgraph").OverwriteValue<{
387
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
433
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
388
434
  assessment: {
389
435
  reasoning: string;
390
436
  suggestedRoles: {
@@ -393,8 +439,12 @@ export declare class NegotiationGraphFactory {
393
439
  };
394
440
  };
395
441
  message?: string | null | undefined;
442
+ askUser?: {
443
+ disclosureSubject: string;
444
+ draftQuestion?: string | null | undefined;
445
+ } | null | undefined;
396
446
  } | null> | null, unknown>;
397
- 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>;
447
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
398
448
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
399
449
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
400
450
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -535,7 +585,7 @@ export declare function createDefaultNegotiationGraph(deps: {
535
585
  timeoutMs: number;
536
586
  currentSpeaker: "source" | "candidate";
537
587
  lastTurn: {
538
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
588
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
539
589
  assessment: {
540
590
  reasoning: string;
541
591
  suggestedRoles: {
@@ -544,8 +594,12 @@ export declare function createDefaultNegotiationGraph(deps: {
544
594
  };
545
595
  };
546
596
  message?: string | null | undefined;
597
+ askUser?: {
598
+ disclosureSubject: string;
599
+ draftQuestion?: string | null | undefined;
600
+ } | null | undefined;
547
601
  } | null;
548
- status: "completed" | "waiting_for_agent" | "active";
602
+ status: "completed" | "waiting_for_agent" | "active" | "input_required";
549
603
  priorTurnCount: number;
550
604
  userAnswers: import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[];
551
605
  outcome: {
@@ -584,7 +638,7 @@ export declare function createDefaultNegotiationGraph(deps: {
584
638
  timeoutMs?: number | import("@langchain/langgraph").OverwriteValue<number> | undefined;
585
639
  currentSpeaker?: "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate"> | undefined;
586
640
  lastTurn?: {
587
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
641
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
588
642
  assessment: {
589
643
  reasoning: string;
590
644
  suggestedRoles: {
@@ -593,8 +647,12 @@ export declare function createDefaultNegotiationGraph(deps: {
593
647
  };
594
648
  };
595
649
  message?: string | null | undefined;
650
+ askUser?: {
651
+ disclosureSubject: string;
652
+ draftQuestion?: string | null | undefined;
653
+ } | null | undefined;
596
654
  } | import("@langchain/langgraph").OverwriteValue<{
597
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
655
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
598
656
  assessment: {
599
657
  reasoning: string;
600
658
  suggestedRoles: {
@@ -603,8 +661,12 @@ export declare function createDefaultNegotiationGraph(deps: {
603
661
  };
604
662
  };
605
663
  message?: string | null | undefined;
664
+ askUser?: {
665
+ disclosureSubject: string;
666
+ draftQuestion?: string | null | undefined;
667
+ } | null | undefined;
606
668
  } | null> | null | undefined;
607
- status?: "completed" | "waiting_for_agent" | "active" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active"> | undefined;
669
+ status?: "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required"> | undefined;
608
670
  priorTurnCount?: number | import("@langchain/langgraph").OverwriteValue<number> | undefined;
609
671
  userAnswers?: import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]> | undefined;
610
672
  outcome?: {
@@ -655,7 +717,7 @@ export declare function createDefaultNegotiationGraph(deps: {
655
717
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
656
718
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
657
719
  lastTurn: import("@langchain/langgraph").BaseChannel<{
658
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
720
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
659
721
  assessment: {
660
722
  reasoning: string;
661
723
  suggestedRoles: {
@@ -664,8 +726,12 @@ export declare function createDefaultNegotiationGraph(deps: {
664
726
  };
665
727
  };
666
728
  message?: string | null | undefined;
729
+ askUser?: {
730
+ disclosureSubject: string;
731
+ draftQuestion?: string | null | undefined;
732
+ } | null | undefined;
667
733
  } | null, {
668
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
734
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
669
735
  assessment: {
670
736
  reasoning: string;
671
737
  suggestedRoles: {
@@ -674,8 +740,12 @@ export declare function createDefaultNegotiationGraph(deps: {
674
740
  };
675
741
  };
676
742
  message?: string | null | undefined;
743
+ askUser?: {
744
+ disclosureSubject: string;
745
+ draftQuestion?: string | null | undefined;
746
+ } | null | undefined;
677
747
  } | import("@langchain/langgraph").OverwriteValue<{
678
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
748
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
679
749
  assessment: {
680
750
  reasoning: string;
681
751
  suggestedRoles: {
@@ -684,8 +754,12 @@ export declare function createDefaultNegotiationGraph(deps: {
684
754
  };
685
755
  };
686
756
  message?: string | null | undefined;
757
+ askUser?: {
758
+ disclosureSubject: string;
759
+ draftQuestion?: string | null | undefined;
760
+ } | null | undefined;
687
761
  } | null> | null, unknown>;
688
- 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>;
762
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
689
763
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
690
764
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
691
765
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -745,7 +819,7 @@ export declare function createDefaultNegotiationGraph(deps: {
745
819
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
746
820
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
747
821
  lastTurn: import("@langchain/langgraph").BaseChannel<{
748
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
822
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
749
823
  assessment: {
750
824
  reasoning: string;
751
825
  suggestedRoles: {
@@ -754,8 +828,12 @@ export declare function createDefaultNegotiationGraph(deps: {
754
828
  };
755
829
  };
756
830
  message?: string | null | undefined;
831
+ askUser?: {
832
+ disclosureSubject: string;
833
+ draftQuestion?: string | null | undefined;
834
+ } | null | undefined;
757
835
  } | null, {
758
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
836
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
759
837
  assessment: {
760
838
  reasoning: string;
761
839
  suggestedRoles: {
@@ -764,8 +842,12 @@ export declare function createDefaultNegotiationGraph(deps: {
764
842
  };
765
843
  };
766
844
  message?: string | null | undefined;
845
+ askUser?: {
846
+ disclosureSubject: string;
847
+ draftQuestion?: string | null | undefined;
848
+ } | null | undefined;
767
849
  } | import("@langchain/langgraph").OverwriteValue<{
768
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
850
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
769
851
  assessment: {
770
852
  reasoning: string;
771
853
  suggestedRoles: {
@@ -774,8 +856,12 @@ export declare function createDefaultNegotiationGraph(deps: {
774
856
  };
775
857
  };
776
858
  message?: string | null | undefined;
859
+ askUser?: {
860
+ disclosureSubject: string;
861
+ draftQuestion?: string | null | undefined;
862
+ } | null | undefined;
777
863
  } | null> | null, unknown>;
778
- 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>;
864
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
779
865
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
780
866
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
781
867
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -861,7 +947,7 @@ export declare function createDefaultNegotiationGraph(deps: {
861
947
  timeoutMs: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
862
948
  currentSpeaker: import("@langchain/langgraph").BaseChannel<"source" | "candidate", "source" | "candidate" | import("@langchain/langgraph").OverwriteValue<"source" | "candidate">, unknown>;
863
949
  lastTurn: import("@langchain/langgraph").BaseChannel<{
864
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
950
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
865
951
  assessment: {
866
952
  reasoning: string;
867
953
  suggestedRoles: {
@@ -870,8 +956,12 @@ export declare function createDefaultNegotiationGraph(deps: {
870
956
  };
871
957
  };
872
958
  message?: string | null | undefined;
959
+ askUser?: {
960
+ disclosureSubject: string;
961
+ draftQuestion?: string | null | undefined;
962
+ } | null | undefined;
873
963
  } | null, {
874
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
964
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
875
965
  assessment: {
876
966
  reasoning: string;
877
967
  suggestedRoles: {
@@ -880,8 +970,12 @@ export declare function createDefaultNegotiationGraph(deps: {
880
970
  };
881
971
  };
882
972
  message?: string | null | undefined;
973
+ askUser?: {
974
+ disclosureSubject: string;
975
+ draftQuestion?: string | null | undefined;
976
+ } | null | undefined;
883
977
  } | import("@langchain/langgraph").OverwriteValue<{
884
- action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline";
978
+ action: "propose" | "accept" | "reject" | "counter" | "question" | "outreach" | "withdraw" | "decline" | "ask_user";
885
979
  assessment: {
886
980
  reasoning: string;
887
981
  suggestedRoles: {
@@ -890,8 +984,12 @@ export declare function createDefaultNegotiationGraph(deps: {
890
984
  };
891
985
  };
892
986
  message?: string | null | undefined;
987
+ askUser?: {
988
+ disclosureSubject: string;
989
+ draftQuestion?: string | null | undefined;
990
+ } | null | undefined;
893
991
  } | null> | null, unknown>;
894
- 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>;
992
+ status: import("@langchain/langgraph").BaseChannel<"completed" | "waiting_for_agent" | "active" | "input_required", "completed" | "waiting_for_agent" | "active" | "input_required" | import("@langchain/langgraph").OverwriteValue<"completed" | "waiting_for_agent" | "active" | "input_required">, unknown>;
895
993
  priorTurnCount: import("@langchain/langgraph").BaseChannel<number, number | import("@langchain/langgraph").OverwriteValue<number>, unknown>;
896
994
  userAnswers: import("@langchain/langgraph").BaseChannel<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[], import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[] | import("@langchain/langgraph").OverwriteValue<import("../shared/interfaces/database.interface.js").NegotiationUserAnswer[]>, unknown>;
897
995
  outcome: import("@langchain/langgraph").BaseChannel<{
@@ -1 +1 @@
1
- {"version":3,"file":"negotiation.graph.d.ts","sourceRoot":"/","sources":["negotiation/negotiation.graph.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"negotiation.graph.d.ts","sourceRoot":"/","sources":["negotiation/negotiation.graph.ts"],"names":[],"mappings":"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"}