@pellux/goodvibes-sdk 0.28.17 → 0.28.19

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 (46) hide show
  1. package/dist/_internal/contracts/artifacts/operator-contract.json +598 -1
  2. package/dist/_internal/contracts/generated/foundation-metadata.d.ts +1 -1
  3. package/dist/_internal/contracts/generated/foundation-metadata.js +1 -1
  4. package/dist/_internal/contracts/generated/operator-contract.d.ts.map +1 -1
  5. package/dist/_internal/contracts/generated/operator-contract.js +598 -1
  6. package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.d.ts.map +1 -1
  7. package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.js +6 -0
  8. package/dist/_internal/platform/knowledge/home-graph/ask.d.ts.map +1 -1
  9. package/dist/_internal/platform/knowledge/home-graph/ask.js +24 -1
  10. package/dist/_internal/platform/knowledge/home-graph/generated-pages.js +3 -0
  11. package/dist/_internal/platform/knowledge/home-graph/map-view.js +12 -9
  12. package/dist/_internal/platform/knowledge/home-graph/pages.d.ts +3 -1
  13. package/dist/_internal/platform/knowledge/home-graph/pages.d.ts.map +1 -1
  14. package/dist/_internal/platform/knowledge/home-graph/pages.js +104 -1
  15. package/dist/_internal/platform/knowledge/home-graph/reindex.d.ts.map +1 -1
  16. package/dist/_internal/platform/knowledge/home-graph/reindex.js +4 -0
  17. package/dist/_internal/platform/knowledge/home-graph/service.d.ts.map +1 -1
  18. package/dist/_internal/platform/knowledge/home-graph/service.js +2 -0
  19. package/dist/_internal/platform/knowledge/home-graph/types.d.ts +25 -0
  20. package/dist/_internal/platform/knowledge/home-graph/types.d.ts.map +1 -1
  21. package/dist/_internal/platform/knowledge/semantic/answer-fallback.d.ts.map +1 -1
  22. package/dist/_internal/platform/knowledge/semantic/answer-fallback.js +143 -1
  23. package/dist/_internal/platform/knowledge/semantic/answer-source-ranking.d.ts +1 -0
  24. package/dist/_internal/platform/knowledge/semantic/answer-source-ranking.d.ts.map +1 -1
  25. package/dist/_internal/platform/knowledge/semantic/answer-source-ranking.js +5 -3
  26. package/dist/_internal/platform/knowledge/semantic/answer.d.ts.map +1 -1
  27. package/dist/_internal/platform/knowledge/semantic/answer.js +227 -39
  28. package/dist/_internal/platform/knowledge/semantic/enrichment.d.ts.map +1 -1
  29. package/dist/_internal/platform/knowledge/semantic/enrichment.js +36 -1
  30. package/dist/_internal/platform/knowledge/semantic/fact-quality.d.ts.map +1 -1
  31. package/dist/_internal/platform/knowledge/semantic/fact-quality.js +24 -2
  32. package/dist/_internal/platform/knowledge/semantic/repair-profile.d.ts.map +1 -1
  33. package/dist/_internal/platform/knowledge/semantic/repair-profile.js +20 -12
  34. package/dist/_internal/platform/knowledge/semantic/repair-subjects.d.ts +16 -0
  35. package/dist/_internal/platform/knowledge/semantic/repair-subjects.d.ts.map +1 -0
  36. package/dist/_internal/platform/knowledge/semantic/repair-subjects.js +52 -0
  37. package/dist/_internal/platform/knowledge/semantic/self-improvement-promotion.js +117 -18
  38. package/dist/_internal/platform/knowledge/semantic/self-improvement.d.ts.map +1 -1
  39. package/dist/_internal/platform/knowledge/semantic/self-improvement.js +36 -10
  40. package/dist/_internal/platform/knowledge/semantic/service.js +4 -2
  41. package/dist/_internal/platform/knowledge/semantic/types.d.ts +1 -0
  42. package/dist/_internal/platform/knowledge/semantic/types.d.ts.map +1 -1
  43. package/dist/_internal/platform/knowledge/types.d.ts +4 -0
  44. package/dist/_internal/platform/knowledge/types.d.ts.map +1 -1
  45. package/dist/_internal/platform/version.js +1 -1
  46. package/package.json +1 -1
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.28.17"
6
+ "version": "0.28.19"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -24677,6 +24677,51 @@ export const OPERATOR_CONTRACT = {
24677
24677
  "sourceId": {
24678
24678
  "type": "string"
24679
24679
  },
24680
+ "subject": {
24681
+ "type": "string"
24682
+ },
24683
+ "subjectIds": {
24684
+ "type": "array",
24685
+ "items": {
24686
+ "type": "string"
24687
+ }
24688
+ },
24689
+ "targetHints": {
24690
+ "type": "array",
24691
+ "items": {
24692
+ "type": "object",
24693
+ "additionalProperties": {
24694
+ "anyOf": [
24695
+ {
24696
+ "type": "string"
24697
+ },
24698
+ {
24699
+ "type": "number"
24700
+ },
24701
+ {
24702
+ "type": "boolean"
24703
+ },
24704
+ {
24705
+ "type": "null"
24706
+ },
24707
+ {
24708
+ "type": "object",
24709
+ "additionalProperties": {}
24710
+ },
24711
+ {
24712
+ "type": "array",
24713
+ "items": {}
24714
+ }
24715
+ ]
24716
+ }
24717
+ }
24718
+ },
24719
+ "linkedObjectIds": {
24720
+ "type": "array",
24721
+ "items": {
24722
+ "type": "string"
24723
+ }
24724
+ },
24680
24725
  "metadata": {
24681
24726
  "type": "object",
24682
24727
  "additionalProperties": {
@@ -25197,6 +25242,51 @@ export const OPERATOR_CONTRACT = {
25197
25242
  "sourceId": {
25198
25243
  "type": "string"
25199
25244
  },
25245
+ "subject": {
25246
+ "type": "string"
25247
+ },
25248
+ "subjectIds": {
25249
+ "type": "array",
25250
+ "items": {
25251
+ "type": "string"
25252
+ }
25253
+ },
25254
+ "targetHints": {
25255
+ "type": "array",
25256
+ "items": {
25257
+ "type": "object",
25258
+ "additionalProperties": {
25259
+ "anyOf": [
25260
+ {
25261
+ "type": "string"
25262
+ },
25263
+ {
25264
+ "type": "number"
25265
+ },
25266
+ {
25267
+ "type": "boolean"
25268
+ },
25269
+ {
25270
+ "type": "null"
25271
+ },
25272
+ {
25273
+ "type": "object",
25274
+ "additionalProperties": {}
25275
+ },
25276
+ {
25277
+ "type": "array",
25278
+ "items": {}
25279
+ }
25280
+ ]
25281
+ }
25282
+ }
25283
+ },
25284
+ "linkedObjectIds": {
25285
+ "type": "array",
25286
+ "items": {
25287
+ "type": "string"
25288
+ }
25289
+ },
25200
25290
  "metadata": {
25201
25291
  "type": "object",
25202
25292
  "additionalProperties": {
@@ -28767,6 +28857,9 @@ export const OPERATOR_CONTRACT = {
28767
28857
  "effectiveLimit": {
28768
28858
  "type": "number"
28769
28859
  },
28860
+ "coalesced": {
28861
+ "type": "boolean"
28862
+ },
28770
28863
  "truncated": {
28771
28864
  "type": "boolean"
28772
28865
  },
@@ -30406,6 +30499,51 @@ export const OPERATOR_CONTRACT = {
30406
30499
  "sourceId": {
30407
30500
  "type": "string"
30408
30501
  },
30502
+ "subject": {
30503
+ "type": "string"
30504
+ },
30505
+ "subjectIds": {
30506
+ "type": "array",
30507
+ "items": {
30508
+ "type": "string"
30509
+ }
30510
+ },
30511
+ "targetHints": {
30512
+ "type": "array",
30513
+ "items": {
30514
+ "type": "object",
30515
+ "additionalProperties": {
30516
+ "anyOf": [
30517
+ {
30518
+ "type": "string"
30519
+ },
30520
+ {
30521
+ "type": "number"
30522
+ },
30523
+ {
30524
+ "type": "boolean"
30525
+ },
30526
+ {
30527
+ "type": "null"
30528
+ },
30529
+ {
30530
+ "type": "object",
30531
+ "additionalProperties": {}
30532
+ },
30533
+ {
30534
+ "type": "array",
30535
+ "items": {}
30536
+ }
30537
+ ]
30538
+ }
30539
+ }
30540
+ },
30541
+ "linkedObjectIds": {
30542
+ "type": "array",
30543
+ "items": {
30544
+ "type": "string"
30545
+ }
30546
+ },
30409
30547
  "metadata": {
30410
30548
  "type": "object",
30411
30549
  "additionalProperties": {
@@ -31317,6 +31455,51 @@ export const OPERATOR_CONTRACT = {
31317
31455
  "sourceId": {
31318
31456
  "type": "string"
31319
31457
  },
31458
+ "subject": {
31459
+ "type": "string"
31460
+ },
31461
+ "subjectIds": {
31462
+ "type": "array",
31463
+ "items": {
31464
+ "type": "string"
31465
+ }
31466
+ },
31467
+ "targetHints": {
31468
+ "type": "array",
31469
+ "items": {
31470
+ "type": "object",
31471
+ "additionalProperties": {
31472
+ "anyOf": [
31473
+ {
31474
+ "type": "string"
31475
+ },
31476
+ {
31477
+ "type": "number"
31478
+ },
31479
+ {
31480
+ "type": "boolean"
31481
+ },
31482
+ {
31483
+ "type": "null"
31484
+ },
31485
+ {
31486
+ "type": "object",
31487
+ "additionalProperties": {}
31488
+ },
31489
+ {
31490
+ "type": "array",
31491
+ "items": {}
31492
+ }
31493
+ ]
31494
+ }
31495
+ }
31496
+ },
31497
+ "linkedObjectIds": {
31498
+ "type": "array",
31499
+ "items": {
31500
+ "type": "string"
31501
+ }
31502
+ },
31320
31503
  "metadata": {
31321
31504
  "type": "object",
31322
31505
  "additionalProperties": {
@@ -31973,6 +32156,51 @@ export const OPERATOR_CONTRACT = {
31973
32156
  "sourceId": {
31974
32157
  "type": "string"
31975
32158
  },
32159
+ "subject": {
32160
+ "type": "string"
32161
+ },
32162
+ "subjectIds": {
32163
+ "type": "array",
32164
+ "items": {
32165
+ "type": "string"
32166
+ }
32167
+ },
32168
+ "targetHints": {
32169
+ "type": "array",
32170
+ "items": {
32171
+ "type": "object",
32172
+ "additionalProperties": {
32173
+ "anyOf": [
32174
+ {
32175
+ "type": "string"
32176
+ },
32177
+ {
32178
+ "type": "number"
32179
+ },
32180
+ {
32181
+ "type": "boolean"
32182
+ },
32183
+ {
32184
+ "type": "null"
32185
+ },
32186
+ {
32187
+ "type": "object",
32188
+ "additionalProperties": {}
32189
+ },
32190
+ {
32191
+ "type": "array",
32192
+ "items": {}
32193
+ }
32194
+ ]
32195
+ }
32196
+ }
32197
+ },
32198
+ "linkedObjectIds": {
32199
+ "type": "array",
32200
+ "items": {
32201
+ "type": "string"
32202
+ }
32203
+ },
31976
32204
  "metadata": {
31977
32205
  "type": "object",
31978
32206
  "additionalProperties": {
@@ -32057,6 +32285,51 @@ export const OPERATOR_CONTRACT = {
32057
32285
  "sourceId": {
32058
32286
  "type": "string"
32059
32287
  },
32288
+ "subject": {
32289
+ "type": "string"
32290
+ },
32291
+ "subjectIds": {
32292
+ "type": "array",
32293
+ "items": {
32294
+ "type": "string"
32295
+ }
32296
+ },
32297
+ "targetHints": {
32298
+ "type": "array",
32299
+ "items": {
32300
+ "type": "object",
32301
+ "additionalProperties": {
32302
+ "anyOf": [
32303
+ {
32304
+ "type": "string"
32305
+ },
32306
+ {
32307
+ "type": "number"
32308
+ },
32309
+ {
32310
+ "type": "boolean"
32311
+ },
32312
+ {
32313
+ "type": "null"
32314
+ },
32315
+ {
32316
+ "type": "object",
32317
+ "additionalProperties": {}
32318
+ },
32319
+ {
32320
+ "type": "array",
32321
+ "items": {}
32322
+ }
32323
+ ]
32324
+ }
32325
+ }
32326
+ },
32327
+ "linkedObjectIds": {
32328
+ "type": "array",
32329
+ "items": {
32330
+ "type": "string"
32331
+ }
32332
+ },
32060
32333
  "metadata": {
32061
32334
  "type": "object",
32062
32335
  "additionalProperties": {
@@ -32141,6 +32414,51 @@ export const OPERATOR_CONTRACT = {
32141
32414
  "sourceId": {
32142
32415
  "type": "string"
32143
32416
  },
32417
+ "subject": {
32418
+ "type": "string"
32419
+ },
32420
+ "subjectIds": {
32421
+ "type": "array",
32422
+ "items": {
32423
+ "type": "string"
32424
+ }
32425
+ },
32426
+ "targetHints": {
32427
+ "type": "array",
32428
+ "items": {
32429
+ "type": "object",
32430
+ "additionalProperties": {
32431
+ "anyOf": [
32432
+ {
32433
+ "type": "string"
32434
+ },
32435
+ {
32436
+ "type": "number"
32437
+ },
32438
+ {
32439
+ "type": "boolean"
32440
+ },
32441
+ {
32442
+ "type": "null"
32443
+ },
32444
+ {
32445
+ "type": "object",
32446
+ "additionalProperties": {}
32447
+ },
32448
+ {
32449
+ "type": "array",
32450
+ "items": {}
32451
+ }
32452
+ ]
32453
+ }
32454
+ }
32455
+ },
32456
+ "linkedObjectIds": {
32457
+ "type": "array",
32458
+ "items": {
32459
+ "type": "string"
32460
+ }
32461
+ },
32144
32462
  "metadata": {
32145
32463
  "type": "object",
32146
32464
  "additionalProperties": {
@@ -32365,6 +32683,51 @@ export const OPERATOR_CONTRACT = {
32365
32683
  "sourceId": {
32366
32684
  "type": "string"
32367
32685
  },
32686
+ "subject": {
32687
+ "type": "string"
32688
+ },
32689
+ "subjectIds": {
32690
+ "type": "array",
32691
+ "items": {
32692
+ "type": "string"
32693
+ }
32694
+ },
32695
+ "targetHints": {
32696
+ "type": "array",
32697
+ "items": {
32698
+ "type": "object",
32699
+ "additionalProperties": {
32700
+ "anyOf": [
32701
+ {
32702
+ "type": "string"
32703
+ },
32704
+ {
32705
+ "type": "number"
32706
+ },
32707
+ {
32708
+ "type": "boolean"
32709
+ },
32710
+ {
32711
+ "type": "null"
32712
+ },
32713
+ {
32714
+ "type": "object",
32715
+ "additionalProperties": {}
32716
+ },
32717
+ {
32718
+ "type": "array",
32719
+ "items": {}
32720
+ }
32721
+ ]
32722
+ }
32723
+ }
32724
+ },
32725
+ "linkedObjectIds": {
32726
+ "type": "array",
32727
+ "items": {
32728
+ "type": "string"
32729
+ }
32730
+ },
32368
32731
  "metadata": {
32369
32732
  "type": "object",
32370
32733
  "additionalProperties": {
@@ -35738,6 +36101,51 @@ export const OPERATOR_CONTRACT = {
35738
36101
  "sourceId": {
35739
36102
  "type": "string"
35740
36103
  },
36104
+ "subject": {
36105
+ "type": "string"
36106
+ },
36107
+ "subjectIds": {
36108
+ "type": "array",
36109
+ "items": {
36110
+ "type": "string"
36111
+ }
36112
+ },
36113
+ "targetHints": {
36114
+ "type": "array",
36115
+ "items": {
36116
+ "type": "object",
36117
+ "additionalProperties": {
36118
+ "anyOf": [
36119
+ {
36120
+ "type": "string"
36121
+ },
36122
+ {
36123
+ "type": "number"
36124
+ },
36125
+ {
36126
+ "type": "boolean"
36127
+ },
36128
+ {
36129
+ "type": "null"
36130
+ },
36131
+ {
36132
+ "type": "object",
36133
+ "additionalProperties": {}
36134
+ },
36135
+ {
36136
+ "type": "array",
36137
+ "items": {}
36138
+ }
36139
+ ]
36140
+ }
36141
+ }
36142
+ },
36143
+ "linkedObjectIds": {
36144
+ "type": "array",
36145
+ "items": {
36146
+ "type": "string"
36147
+ }
36148
+ },
35741
36149
  "metadata": {
35742
36150
  "type": "object",
35743
36151
  "additionalProperties": {
@@ -36250,6 +36658,51 @@ export const OPERATOR_CONTRACT = {
36250
36658
  "sourceId": {
36251
36659
  "type": "string"
36252
36660
  },
36661
+ "subject": {
36662
+ "type": "string"
36663
+ },
36664
+ "subjectIds": {
36665
+ "type": "array",
36666
+ "items": {
36667
+ "type": "string"
36668
+ }
36669
+ },
36670
+ "targetHints": {
36671
+ "type": "array",
36672
+ "items": {
36673
+ "type": "object",
36674
+ "additionalProperties": {
36675
+ "anyOf": [
36676
+ {
36677
+ "type": "string"
36678
+ },
36679
+ {
36680
+ "type": "number"
36681
+ },
36682
+ {
36683
+ "type": "boolean"
36684
+ },
36685
+ {
36686
+ "type": "null"
36687
+ },
36688
+ {
36689
+ "type": "object",
36690
+ "additionalProperties": {}
36691
+ },
36692
+ {
36693
+ "type": "array",
36694
+ "items": {}
36695
+ }
36696
+ ]
36697
+ }
36698
+ }
36699
+ },
36700
+ "linkedObjectIds": {
36701
+ "type": "array",
36702
+ "items": {
36703
+ "type": "string"
36704
+ }
36705
+ },
36253
36706
  "metadata": {
36254
36707
  "type": "object",
36255
36708
  "additionalProperties": {
@@ -36593,6 +37046,51 @@ export const OPERATOR_CONTRACT = {
36593
37046
  "sourceId": {
36594
37047
  "type": "string"
36595
37048
  },
37049
+ "subject": {
37050
+ "type": "string"
37051
+ },
37052
+ "subjectIds": {
37053
+ "type": "array",
37054
+ "items": {
37055
+ "type": "string"
37056
+ }
37057
+ },
37058
+ "targetHints": {
37059
+ "type": "array",
37060
+ "items": {
37061
+ "type": "object",
37062
+ "additionalProperties": {
37063
+ "anyOf": [
37064
+ {
37065
+ "type": "string"
37066
+ },
37067
+ {
37068
+ "type": "number"
37069
+ },
37070
+ {
37071
+ "type": "boolean"
37072
+ },
37073
+ {
37074
+ "type": "null"
37075
+ },
37076
+ {
37077
+ "type": "object",
37078
+ "additionalProperties": {}
37079
+ },
37080
+ {
37081
+ "type": "array",
37082
+ "items": {}
37083
+ }
37084
+ ]
37085
+ }
37086
+ }
37087
+ },
37088
+ "linkedObjectIds": {
37089
+ "type": "array",
37090
+ "items": {
37091
+ "type": "string"
37092
+ }
37093
+ },
36596
37094
  "metadata": {
36597
37095
  "type": "object",
36598
37096
  "additionalProperties": {
@@ -36942,6 +37440,9 @@ export const OPERATOR_CONTRACT = {
36942
37440
  "effectiveLimit": {
36943
37441
  "type": "number"
36944
37442
  },
37443
+ "coalesced": {
37444
+ "type": "boolean"
37445
+ },
36945
37446
  "truncated": {
36946
37447
  "type": "boolean"
36947
37448
  },
@@ -37494,6 +37995,9 @@ export const OPERATOR_CONTRACT = {
37494
37995
  "effectiveLimit": {
37495
37996
  "type": "number"
37496
37997
  },
37998
+ "coalesced": {
37999
+ "type": "boolean"
38000
+ },
37497
38001
  "truncated": {
37498
38002
  "type": "boolean"
37499
38003
  },
@@ -38472,6 +38976,51 @@ export const OPERATOR_CONTRACT = {
38472
38976
  "sourceId": {
38473
38977
  "type": "string"
38474
38978
  },
38979
+ "subject": {
38980
+ "type": "string"
38981
+ },
38982
+ "subjectIds": {
38983
+ "type": "array",
38984
+ "items": {
38985
+ "type": "string"
38986
+ }
38987
+ },
38988
+ "targetHints": {
38989
+ "type": "array",
38990
+ "items": {
38991
+ "type": "object",
38992
+ "additionalProperties": {
38993
+ "anyOf": [
38994
+ {
38995
+ "type": "string"
38996
+ },
38997
+ {
38998
+ "type": "number"
38999
+ },
39000
+ {
39001
+ "type": "boolean"
39002
+ },
39003
+ {
39004
+ "type": "null"
39005
+ },
39006
+ {
39007
+ "type": "object",
39008
+ "additionalProperties": {}
39009
+ },
39010
+ {
39011
+ "type": "array",
39012
+ "items": {}
39013
+ }
39014
+ ]
39015
+ }
39016
+ }
39017
+ },
39018
+ "linkedObjectIds": {
39019
+ "type": "array",
39020
+ "items": {
39021
+ "type": "string"
39022
+ }
39023
+ },
38475
39024
  "metadata": {
38476
39025
  "type": "object",
38477
39026
  "additionalProperties": {
@@ -39607,6 +40156,9 @@ export const OPERATOR_CONTRACT = {
39607
40156
  "effectiveLimit": {
39608
40157
  "type": "number"
39609
40158
  },
40159
+ "coalesced": {
40160
+ "type": "boolean"
40161
+ },
39610
40162
  "truncated": {
39611
40163
  "type": "boolean"
39612
40164
  },
@@ -41778,6 +42330,51 @@ export const OPERATOR_CONTRACT = {
41778
42330
  "sourceId": {
41779
42331
  "type": "string"
41780
42332
  },
42333
+ "subject": {
42334
+ "type": "string"
42335
+ },
42336
+ "subjectIds": {
42337
+ "type": "array",
42338
+ "items": {
42339
+ "type": "string"
42340
+ }
42341
+ },
42342
+ "targetHints": {
42343
+ "type": "array",
42344
+ "items": {
42345
+ "type": "object",
42346
+ "additionalProperties": {
42347
+ "anyOf": [
42348
+ {
42349
+ "type": "string"
42350
+ },
42351
+ {
42352
+ "type": "number"
42353
+ },
42354
+ {
42355
+ "type": "boolean"
42356
+ },
42357
+ {
42358
+ "type": "null"
42359
+ },
42360
+ {
42361
+ "type": "object",
42362
+ "additionalProperties": {}
42363
+ },
42364
+ {
42365
+ "type": "array",
42366
+ "items": {}
42367
+ }
42368
+ ]
42369
+ }
42370
+ }
42371
+ },
42372
+ "linkedObjectIds": {
42373
+ "type": "array",
42374
+ "items": {
42375
+ "type": "string"
42376
+ }
42377
+ },
41781
42378
  "metadata": {
41782
42379
  "type": "object",
41783
42380
  "additionalProperties": {