@indexnetwork/protocol 1.12.6-rc.172.1 → 1.13.0-rc.175.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.
@@ -16,7 +16,7 @@ declare const responseFormat: z.ZodObject<{
16
16
  type Profile = z.infer<typeof responseFormat>;
17
17
  export type ProfileDocument = Profile & {
18
18
  userId: string;
19
- embedding: number[] | number[][] | null;
19
+ embedding?: number[] | number[][] | null;
20
20
  };
21
21
  export declare class ProfileGenerator {
22
22
  private model;
@@ -1 +1 @@
1
- {"version":3,"file":"profile.generator.d.ts","sourceRoot":"","sources":["../../src/profile/profile.generator.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,QAAA,MAAM,cAAc;;;;;;;;;;;;;iBAalB,CAAC;AAEH,KAAK,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9C,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,GAAG,IAAI,CAAA;CAAE,CAAC;AAEpG,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,KAAK,CAAM;;IAOnB,OAAO,CAAC,QAAQ;IAiBH,MAAM,CAAC,KAAK,EAAE,MAAM;;;;;;;;;;;;;;;;;WAgBnB,MAAM;;;;;;;;;;;;;;;;;;;;;;;CAerB"}
1
+ {"version":3,"file":"profile.generator.d.ts","sourceRoot":"","sources":["../../src/profile/profile.generator.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,QAAA,MAAM,cAAc;;;;;;;;;;;;;iBAalB,CAAC;AAEH,KAAK,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9C,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE,GAAG,IAAI,CAAA;CAAE,CAAC;AAErG,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,KAAK,CAAM;;IAOnB,OAAO,CAAC,QAAQ;IAiBH,MAAM,CAAC,KAAK,EAAE,MAAM;;;;;;;;;;;;;;;;;WAgBnB,MAAM;;;;;;;;;;;;;;;;;;;;;;;CAerB"}
@@ -1,6 +1,5 @@
1
1
  import { ProfileDocument } from "./profile.generator.js";
2
2
  import { ProfileGraphDatabase } from "../shared/interfaces/database.interface.js";
3
- import { Embedder } from "../shared/interfaces/embedder.interface.js";
4
3
  import { Scraper } from "../shared/interfaces/scraper.interface.js";
5
4
  import type { ProfileEnricher } from "../shared/interfaces/enrichment.interface.js";
6
5
  import type { QuestionerEnqueueFn } from "../questioner/questioner.types.js";
@@ -26,28 +25,24 @@ export interface CompiledPremiseGraph {
26
25
  * Factory class to build and compile the Profile Generation Graph.
27
26
  *
28
27
  * Flow:
29
- * 1. check_state - Detect what's missing (profile, embeddings, hyde)
28
+ * 1. check_state - Detect whether profile needs generation
30
29
  * 2. Conditional routing based on operation mode and missing components:
31
30
  * - Query mode: Return immediately (fast path)
32
31
  * - Write mode: Generate only what's needed
33
32
  * 3. Profile generation (if needed)
34
- * 4. Profile embedding (if needed)
35
- * 5. HyDE generation (if needed or profile updated)
36
- * 6. HyDE embedding (if needed)
33
+ * 4. Save profile to DB
37
34
  *
38
35
  * Key Features:
39
36
  * - Read/Write separation (query vs write)
40
- * - Conditional generation (skip expensive operations if data exists)
41
- * - Automatic hyde regeneration when profile is updated
37
+ * - Conditional generation (skip generation if profile already exists)
42
38
  */
43
39
  export declare class ProfileGraphFactory {
44
40
  private database;
45
- private embedder;
46
41
  private scraper;
47
42
  private enricher?;
48
43
  private questionerEnqueue?;
49
44
  private premiseGraph?;
50
- constructor(database: ProfileGraphDatabase, embedder: Embedder, scraper: Scraper, enricher?: ProfileEnricher | undefined, questionerEnqueue?: QuestionerEnqueueFn | undefined, premiseGraph?: CompiledPremiseGraph | undefined);
45
+ constructor(database: ProfileGraphDatabase, scraper: Scraper, enricher?: ProfileEnricher | undefined, questionerEnqueue?: QuestionerEnqueueFn | undefined, premiseGraph?: CompiledPremiseGraph | undefined);
51
46
  createGraph(): import("@langchain/langgraph").CompiledStateGraph<{
52
47
  userId: string;
53
48
  operationMode: "query" | "write" | "generate" | "aggregate";
@@ -71,20 +66,14 @@ export declare class ProfileGraphFactory {
71
66
  input: string | undefined;
72
67
  profile: ProfileDocument | undefined;
73
68
  needsProfileGeneration: boolean;
74
- needsProfileEmbedding: boolean;
75
- needsHydeGeneration: boolean;
76
- needsHydeEmbedding: boolean;
77
69
  needsUserInfo: boolean;
78
70
  missingUserInfo: string[];
79
- hydeDescription: string | undefined;
80
71
  error: string | undefined;
81
72
  operationsPerformed: {
82
73
  scraped?: boolean;
83
74
  decomposedPremises?: boolean;
84
75
  generatedProfile?: boolean;
85
- embeddedProfile?: boolean;
86
- generatedHyde?: boolean;
87
- embeddedHyde?: boolean;
76
+ savedProfile?: boolean;
88
77
  };
89
78
  agentTimings: DebugMetaAgent[];
90
79
  readResult: {
@@ -135,27 +124,19 @@ export declare class ProfileGraphFactory {
135
124
  input?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
136
125
  profile?: ProfileDocument | import("@langchain/langgraph").OverwriteValue<ProfileDocument | undefined> | undefined;
137
126
  needsProfileGeneration?: boolean | import("@langchain/langgraph").OverwriteValue<boolean> | undefined;
138
- needsProfileEmbedding?: boolean | import("@langchain/langgraph").OverwriteValue<boolean> | undefined;
139
- needsHydeGeneration?: boolean | import("@langchain/langgraph").OverwriteValue<boolean> | undefined;
140
- needsHydeEmbedding?: boolean | import("@langchain/langgraph").OverwriteValue<boolean> | undefined;
141
127
  needsUserInfo?: boolean | import("@langchain/langgraph").OverwriteValue<boolean> | undefined;
142
128
  missingUserInfo?: string[] | import("@langchain/langgraph").OverwriteValue<string[]> | undefined;
143
- hydeDescription?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
144
129
  error?: string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined;
145
130
  operationsPerformed?: {
146
131
  scraped?: boolean;
147
132
  decomposedPremises?: boolean;
148
133
  generatedProfile?: boolean;
149
- embeddedProfile?: boolean;
150
- generatedHyde?: boolean;
151
- embeddedHyde?: boolean;
134
+ savedProfile?: boolean;
152
135
  } | import("@langchain/langgraph").OverwriteValue<{
153
136
  scraped?: boolean;
154
137
  decomposedPremises?: boolean;
155
138
  generatedProfile?: boolean;
156
- embeddedProfile?: boolean;
157
- generatedHyde?: boolean;
158
- embeddedHyde?: boolean;
139
+ savedProfile?: boolean;
159
140
  }> | undefined;
160
141
  agentTimings?: DebugMetaAgent[] | import("@langchain/langgraph").OverwriteValue<DebugMetaAgent[]> | undefined;
161
142
  readResult?: {
@@ -181,7 +162,7 @@ export declare class ProfileGraphFactory {
181
162
  };
182
163
  message?: string;
183
164
  } | undefined> | undefined;
184
- }, "__start__" | "check_state" | "scrape" | "decompose_premises" | "auto_generate" | "use_prepopulated_profile" | "aggregate_profile" | "generate_profile" | "embed_save_profile" | "generate_hyde" | "embed_save_hyde", {
165
+ }, "__start__" | "check_state" | "scrape" | "decompose_premises" | "auto_generate" | "use_prepopulated_profile" | "aggregate_profile" | "generate_profile" | "save_profile", {
185
166
  userId: {
186
167
  (annotation: import("@langchain/langgraph").SingleReducer<string, string>): import("@langchain/langgraph").BaseChannel<string, string | import("@langchain/langgraph").OverwriteValue<string>, unknown>;
187
168
  (): import("@langchain/langgraph").LastValue<string>;
@@ -234,34 +215,24 @@ export declare class ProfileGraphFactory {
234
215
  input: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
235
216
  profile: import("@langchain/langgraph").BaseChannel<ProfileDocument | undefined, ProfileDocument | import("@langchain/langgraph").OverwriteValue<ProfileDocument | undefined> | undefined, unknown>;
236
217
  needsProfileGeneration: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
237
- needsProfileEmbedding: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
238
- needsHydeGeneration: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
239
- needsHydeEmbedding: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
240
218
  needsUserInfo: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
241
219
  missingUserInfo: import("@langchain/langgraph").BaseChannel<string[], string[] | import("@langchain/langgraph").OverwriteValue<string[]>, unknown>;
242
- hydeDescription: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
243
220
  error: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
244
221
  operationsPerformed: import("@langchain/langgraph").BaseChannel<{
245
222
  scraped?: boolean;
246
223
  decomposedPremises?: boolean;
247
224
  generatedProfile?: boolean;
248
- embeddedProfile?: boolean;
249
- generatedHyde?: boolean;
250
- embeddedHyde?: boolean;
225
+ savedProfile?: boolean;
251
226
  }, {
252
227
  scraped?: boolean;
253
228
  decomposedPremises?: boolean;
254
229
  generatedProfile?: boolean;
255
- embeddedProfile?: boolean;
256
- generatedHyde?: boolean;
257
- embeddedHyde?: boolean;
230
+ savedProfile?: boolean;
258
231
  } | import("@langchain/langgraph").OverwriteValue<{
259
232
  scraped?: boolean;
260
233
  decomposedPremises?: boolean;
261
234
  generatedProfile?: boolean;
262
- embeddedProfile?: boolean;
263
- generatedHyde?: boolean;
264
- embeddedHyde?: boolean;
235
+ savedProfile?: boolean;
265
236
  }>, unknown>;
266
237
  agentTimings: import("@langchain/langgraph").BaseChannel<DebugMetaAgent[], DebugMetaAgent[] | import("@langchain/langgraph").OverwriteValue<DebugMetaAgent[]>, unknown>;
267
238
  readResult: import("@langchain/langgraph").BaseChannel<{
@@ -351,34 +322,24 @@ export declare class ProfileGraphFactory {
351
322
  input: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
352
323
  profile: import("@langchain/langgraph").BaseChannel<ProfileDocument | undefined, ProfileDocument | import("@langchain/langgraph").OverwriteValue<ProfileDocument | undefined> | undefined, unknown>;
353
324
  needsProfileGeneration: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
354
- needsProfileEmbedding: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
355
- needsHydeGeneration: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
356
- needsHydeEmbedding: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
357
325
  needsUserInfo: import("@langchain/langgraph").BaseChannel<boolean, boolean | import("@langchain/langgraph").OverwriteValue<boolean>, unknown>;
358
326
  missingUserInfo: import("@langchain/langgraph").BaseChannel<string[], string[] | import("@langchain/langgraph").OverwriteValue<string[]>, unknown>;
359
- hydeDescription: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
360
327
  error: import("@langchain/langgraph").BaseChannel<string | undefined, string | import("@langchain/langgraph").OverwriteValue<string | undefined> | undefined, unknown>;
361
328
  operationsPerformed: import("@langchain/langgraph").BaseChannel<{
362
329
  scraped?: boolean;
363
330
  decomposedPremises?: boolean;
364
331
  generatedProfile?: boolean;
365
- embeddedProfile?: boolean;
366
- generatedHyde?: boolean;
367
- embeddedHyde?: boolean;
332
+ savedProfile?: boolean;
368
333
  }, {
369
334
  scraped?: boolean;
370
335
  decomposedPremises?: boolean;
371
336
  generatedProfile?: boolean;
372
- embeddedProfile?: boolean;
373
- generatedHyde?: boolean;
374
- embeddedHyde?: boolean;
337
+ savedProfile?: boolean;
375
338
  } | import("@langchain/langgraph").OverwriteValue<{
376
339
  scraped?: boolean;
377
340
  decomposedPremises?: boolean;
378
341
  generatedProfile?: boolean;
379
- embeddedProfile?: boolean;
380
- generatedHyde?: boolean;
381
- embeddedHyde?: boolean;
342
+ savedProfile?: boolean;
382
343
  }>, unknown>;
383
344
  agentTimings: import("@langchain/langgraph").BaseChannel<DebugMetaAgent[], DebugMetaAgent[] | import("@langchain/langgraph").OverwriteValue<DebugMetaAgent[]>, unknown>;
384
345
  readResult: import("@langchain/langgraph").BaseChannel<{
@@ -420,11 +381,7 @@ export declare class ProfileGraphFactory {
420
381
  error: string;
421
382
  profile?: undefined;
422
383
  readResult?: undefined;
423
- hydeDescription?: undefined;
424
384
  needsProfileGeneration?: undefined;
425
- needsProfileEmbedding?: undefined;
426
- needsHydeGeneration?: undefined;
427
- needsHydeEmbedding?: undefined;
428
385
  needsUserInfo?: undefined;
429
386
  missingUserInfo?: undefined;
430
387
  } | {
@@ -446,20 +403,12 @@ export declare class ProfileGraphFactory {
446
403
  profile?: undefined;
447
404
  };
448
405
  error?: undefined;
449
- hydeDescription?: undefined;
450
406
  needsProfileGeneration?: undefined;
451
- needsProfileEmbedding?: undefined;
452
- needsHydeGeneration?: undefined;
453
- needsHydeEmbedding?: undefined;
454
407
  needsUserInfo?: undefined;
455
408
  missingUserInfo?: undefined;
456
409
  } | {
457
410
  profile: any;
458
- hydeDescription: string | undefined;
459
411
  needsProfileGeneration: boolean;
460
- needsProfileEmbedding: any;
461
- needsHydeGeneration: boolean;
462
- needsHydeEmbedding: boolean;
463
412
  needsUserInfo: boolean;
464
413
  missingUserInfo: string[];
465
414
  error?: undefined;
@@ -468,11 +417,7 @@ export declare class ProfileGraphFactory {
468
417
  profile: undefined;
469
418
  error: string;
470
419
  readResult?: undefined;
471
- hydeDescription?: undefined;
472
420
  needsProfileGeneration?: undefined;
473
- needsProfileEmbedding?: undefined;
474
- needsHydeGeneration?: undefined;
475
- needsHydeEmbedding?: undefined;
476
421
  needsUserInfo?: undefined;
477
422
  missingUserInfo?: undefined;
478
423
  };
@@ -574,12 +519,10 @@ export declare class ProfileGraphFactory {
574
519
  use_prepopulated_profile: {
575
520
  error: string;
576
521
  profile?: undefined;
577
- needsHydeGeneration?: undefined;
578
522
  operationsPerformed?: undefined;
579
523
  } | {
580
524
  profile: {
581
525
  userId: string;
582
- embedding: number[] | number[][];
583
526
  identity: {
584
527
  name: string;
585
528
  bio: string;
@@ -593,7 +536,6 @@ export declare class ProfileGraphFactory {
593
536
  interests: string[];
594
537
  };
595
538
  };
596
- needsHydeGeneration: boolean;
597
539
  operationsPerformed: {
598
540
  generatedProfile: boolean;
599
541
  };
@@ -615,13 +557,11 @@ export declare class ProfileGraphFactory {
615
557
  generate_profile: {
616
558
  error: string;
617
559
  profile?: undefined;
618
- needsHydeGeneration?: undefined;
619
560
  agentTimings?: undefined;
620
561
  operationsPerformed?: undefined;
621
562
  } | {
622
563
  profile: {
623
564
  userId: string;
624
- embedding: number[] | number[][];
625
565
  identity: {
626
566
  name: string;
627
567
  bio: string;
@@ -635,7 +575,6 @@ export declare class ProfileGraphFactory {
635
575
  skills: string[];
636
576
  };
637
577
  };
638
- needsHydeGeneration: boolean;
639
578
  agentTimings: DebugMetaAgent[];
640
579
  operationsPerformed: {
641
580
  generatedProfile: boolean;
@@ -645,10 +584,9 @@ export declare class ProfileGraphFactory {
645
584
  error: string;
646
585
  agentTimings: DebugMetaAgent[];
647
586
  profile?: undefined;
648
- needsHydeGeneration?: undefined;
649
587
  operationsPerformed?: undefined;
650
588
  };
651
- embed_save_profile: {
589
+ save_profile: {
652
590
  error: string;
653
591
  profile?: undefined;
654
592
  operationsPerformed?: undefined;
@@ -667,32 +605,10 @@ export declare class ProfileGraphFactory {
667
605
  skills: string[];
668
606
  };
669
607
  userId: string;
670
- embedding: number[] | number[][] | null;
608
+ embedding?: number[] | number[][] | null;
671
609
  };
672
610
  operationsPerformed: {
673
- embeddedProfile: boolean;
674
- };
675
- error?: undefined;
676
- };
677
- generate_hyde: {
678
- error: string;
679
- hydeDescription?: undefined;
680
- agentTimings?: undefined;
681
- operationsPerformed?: undefined;
682
- } | {
683
- hydeDescription: string;
684
- agentTimings: DebugMetaAgent[];
685
- operationsPerformed: {
686
- generatedHyde: boolean;
687
- };
688
- error?: undefined;
689
- };
690
- embed_save_hyde: {
691
- error: string;
692
- operationsPerformed?: undefined;
693
- } | {
694
- operationsPerformed: {
695
- embeddedHyde: boolean;
611
+ savedProfile: boolean;
696
612
  };
697
613
  error?: undefined;
698
614
  };
@@ -1 +1 @@
1
- {"version":3,"file":"profile.graph.d.ts","sourceRoot":"","sources":["../../src/profile/profile.graph.ts"],"names":[],"mappings":"AAEA,OAAO,EAAoB,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAE3E,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4CAA4C,CAAC;AACjG,OAAO,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,2CAA2C,CAAC;AACpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAIpF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAG7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAGtE;;;GAGG;AACH,MAAM,WAAW,oBAAoB;IACnC,MAAM,CAAC,KAAK,EAAE;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,aAAa,EAAE,MAAM,CAAC;QACtB,IAAI,EAAE,WAAW,GAAG,YAAY,CAAC;QACjC,aAAa,EAAE,QAAQ,CAAC;KACzB,GAAG,OAAO,CAAC;QACV,OAAO,CAAC,EAAE;YAAE,EAAE,EAAE,MAAM,CAAA;SAAE,GAAG,SAAS,CAAC;QACrC,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KAC5B,CAAC,CAAC;CACJ;AA4DD;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,mBAAmB;IAE5B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,QAAQ,CAAC;IACjB,OAAO,CAAC,iBAAiB,CAAC;IAC1B,OAAO,CAAC,YAAY,CAAC;gBALb,QAAQ,EAAE,oBAAoB,EAC9B,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,QAAQ,CAAC,EAAE,eAAe,YAAA,EAC1B,iBAAiB,CAAC,EAAE,mBAAmB,YAAA,EACvC,YAAY,CAAC,EAAE,oBAAoB,YAAA;IAGtC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;kBAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAudQ,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA4DnB,MAAM,EAAE,GAAG,MAAM,EAAE,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAymBnD"}
1
+ {"version":3,"file":"profile.graph.d.ts","sourceRoot":"","sources":["../../src/profile/profile.graph.ts"],"names":[],"mappings":"AAEA,OAAO,EAAoB,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4CAA4C,CAAC;AACjG,OAAO,EAAE,OAAO,EAAE,MAAM,2CAA2C,CAAC;AACpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAIpF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAG7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAGtE;;;GAGG;AACH,MAAM,WAAW,oBAAoB;IACnC,MAAM,CAAC,KAAK,EAAE;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,aAAa,EAAE,MAAM,CAAC;QACtB,IAAI,EAAE,WAAW,GAAG,YAAY,CAAC;QACjC,aAAa,EAAE,QAAQ,CAAC;KACzB,GAAG,OAAO,CAAC;QACV,OAAO,CAAC,EAAE;YAAE,EAAE,EAAE,MAAM,CAAA;SAAE,GAAG,SAAS,CAAC;QACrC,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;KAC5B,CAAC,CAAC;CACJ;AA+BD;;;;;;;;;;;;;;GAcG;AACH,qBAAa,mBAAmB;IAE5B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,QAAQ,CAAC;IACjB,OAAO,CAAC,iBAAiB,CAAC;IAC1B,OAAO,CAAC,YAAY,CAAC;gBAJb,QAAQ,EAAE,oBAAoB,EAC9B,OAAO,EAAE,OAAO,EAChB,QAAQ,CAAC,EAAE,eAAe,YAAA,EAC1B,iBAAiB,CAAC,EAAE,mBAAmB,YAAA,EACvC,YAAY,CAAC,EAAE,oBAAoB,YAAA;IAGtC,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAgBV,CAAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;kBAAM,CAAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAg5BH"}