@pellux/goodvibes-sdk 0.27.0 → 0.27.2

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 (43) hide show
  1. package/dist/_internal/contracts/artifacts/operator-contract.json +737 -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 +737 -1
  6. package/dist/_internal/daemon/knowledge-routes.d.ts.map +1 -1
  7. package/dist/_internal/daemon/knowledge-routes.js +27 -0
  8. package/dist/_internal/platform/control-plane/method-catalog-homegraph.d.ts.map +1 -1
  9. package/dist/_internal/platform/control-plane/method-catalog-homegraph.js +31 -1
  10. package/dist/_internal/platform/control-plane/method-catalog-knowledge.d.ts.map +1 -1
  11. package/dist/_internal/platform/control-plane/method-catalog-knowledge.js +15 -1
  12. package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.d.ts.map +1 -1
  13. package/dist/_internal/platform/control-plane/operator-contract-schemas-knowledge.js +21 -0
  14. package/dist/_internal/platform/daemon/http/home-graph-routes.d.ts.map +1 -1
  15. package/dist/_internal/platform/daemon/http/home-graph-routes.js +82 -22
  16. package/dist/_internal/platform/knowledge/home-graph/extraction-quality.d.ts +2 -0
  17. package/dist/_internal/platform/knowledge/home-graph/extraction-quality.d.ts.map +1 -0
  18. package/dist/_internal/platform/knowledge/home-graph/extraction-quality.js +52 -0
  19. package/dist/_internal/platform/knowledge/home-graph/index.d.ts +1 -1
  20. package/dist/_internal/platform/knowledge/home-graph/index.d.ts.map +1 -1
  21. package/dist/_internal/platform/knowledge/home-graph/rendering.d.ts +2 -5
  22. package/dist/_internal/platform/knowledge/home-graph/rendering.d.ts.map +1 -1
  23. package/dist/_internal/platform/knowledge/home-graph/rendering.js +123 -1
  24. package/dist/_internal/platform/knowledge/home-graph/search.d.ts.map +1 -1
  25. package/dist/_internal/platform/knowledge/home-graph/search.js +60 -18
  26. package/dist/_internal/platform/knowledge/home-graph/service.d.ts.map +1 -1
  27. package/dist/_internal/platform/knowledge/home-graph/service.js +4 -3
  28. package/dist/_internal/platform/knowledge/home-graph/types.d.ts +30 -1
  29. package/dist/_internal/platform/knowledge/home-graph/types.d.ts.map +1 -1
  30. package/dist/_internal/platform/knowledge/index.d.ts +1 -1
  31. package/dist/_internal/platform/knowledge/index.d.ts.map +1 -1
  32. package/dist/_internal/platform/knowledge/map-filters.d.ts +24 -0
  33. package/dist/_internal/platform/knowledge/map-filters.d.ts.map +1 -0
  34. package/dist/_internal/platform/knowledge/map-filters.js +199 -0
  35. package/dist/_internal/platform/knowledge/map.d.ts +16 -1
  36. package/dist/_internal/platform/knowledge/map.d.ts.map +1 -1
  37. package/dist/_internal/platform/knowledge/map.js +19 -8
  38. package/dist/_internal/platform/knowledge/service.d.ts +2 -6
  39. package/dist/_internal/platform/knowledge/service.d.ts.map +1 -1
  40. package/dist/_internal/platform/knowledge/types.d.ts +39 -1
  41. package/dist/_internal/platform/knowledge/types.d.ts.map +1 -1
  42. package/dist/_internal/platform/version.js +1 -1
  43. package/package.json +1 -1
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.27.0"
6
+ "version": "0.27.2"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -27924,6 +27924,150 @@
27924
27924
  },
27925
27925
  "includeSources": {
27926
27926
  "type": "boolean"
27927
+ },
27928
+ "includeIssues": {
27929
+ "type": "boolean"
27930
+ },
27931
+ "includeGenerated": {
27932
+ "type": "boolean"
27933
+ },
27934
+ "query": {
27935
+ "type": "string"
27936
+ },
27937
+ "recordKinds": {
27938
+ "type": "array",
27939
+ "items": {
27940
+ "type": "string"
27941
+ }
27942
+ },
27943
+ "ids": {
27944
+ "type": "array",
27945
+ "items": {
27946
+ "type": "string"
27947
+ }
27948
+ },
27949
+ "linkedToIds": {
27950
+ "type": "array",
27951
+ "items": {
27952
+ "type": "string"
27953
+ }
27954
+ },
27955
+ "nodeKinds": {
27956
+ "type": "array",
27957
+ "items": {
27958
+ "type": "string"
27959
+ }
27960
+ },
27961
+ "sourceTypes": {
27962
+ "type": "array",
27963
+ "items": {
27964
+ "type": "string"
27965
+ }
27966
+ },
27967
+ "sourceStatuses": {
27968
+ "type": "array",
27969
+ "items": {
27970
+ "type": "string"
27971
+ }
27972
+ },
27973
+ "nodeStatuses": {
27974
+ "type": "array",
27975
+ "items": {
27976
+ "type": "string"
27977
+ }
27978
+ },
27979
+ "issueCodes": {
27980
+ "type": "array",
27981
+ "items": {
27982
+ "type": "string"
27983
+ }
27984
+ },
27985
+ "issueStatuses": {
27986
+ "type": "array",
27987
+ "items": {
27988
+ "type": "string"
27989
+ }
27990
+ },
27991
+ "issueSeverities": {
27992
+ "type": "array",
27993
+ "items": {
27994
+ "type": "string"
27995
+ }
27996
+ },
27997
+ "edgeRelations": {
27998
+ "type": "array",
27999
+ "items": {
28000
+ "type": "string"
28001
+ }
28002
+ },
28003
+ "tags": {
28004
+ "type": "array",
28005
+ "items": {
28006
+ "type": "string"
28007
+ }
28008
+ },
28009
+ "minConfidence": {
28010
+ "type": "number"
28011
+ },
28012
+ "ha": {
28013
+ "type": "object",
28014
+ "properties": {
28015
+ "objectKinds": {
28016
+ "type": "array",
28017
+ "items": {
28018
+ "type": "string"
28019
+ }
28020
+ },
28021
+ "entityIds": {
28022
+ "type": "array",
28023
+ "items": {
28024
+ "type": "string"
28025
+ }
28026
+ },
28027
+ "deviceIds": {
28028
+ "type": "array",
28029
+ "items": {
28030
+ "type": "string"
28031
+ }
28032
+ },
28033
+ "areaIds": {
28034
+ "type": "array",
28035
+ "items": {
28036
+ "type": "string"
28037
+ }
28038
+ },
28039
+ "integrationIds": {
28040
+ "type": "array",
28041
+ "items": {
28042
+ "type": "string"
28043
+ }
28044
+ },
28045
+ "integrationDomains": {
28046
+ "type": "array",
28047
+ "items": {
28048
+ "type": "string"
28049
+ }
28050
+ },
28051
+ "domains": {
28052
+ "type": "array",
28053
+ "items": {
28054
+ "type": "string"
28055
+ }
28056
+ },
28057
+ "deviceClasses": {
28058
+ "type": "array",
28059
+ "items": {
28060
+ "type": "string"
28061
+ }
28062
+ },
28063
+ "labels": {
28064
+ "type": "array",
28065
+ "items": {
28066
+ "type": "string"
28067
+ }
28068
+ }
28069
+ },
28070
+ "additionalProperties": false
27927
28071
  }
27928
28072
  },
27929
28073
  "additionalProperties": false
@@ -27955,6 +28099,263 @@
27955
28099
  "edgeCount": {
27956
28100
  "type": "number"
27957
28101
  },
28102
+ "totalNodeCount": {
28103
+ "type": "number"
28104
+ },
28105
+ "totalEdgeCount": {
28106
+ "type": "number"
28107
+ },
28108
+ "facets": {
28109
+ "type": "object",
28110
+ "properties": {
28111
+ "recordKinds": {
28112
+ "type": "array",
28113
+ "items": {
28114
+ "type": "object",
28115
+ "properties": {
28116
+ "value": {
28117
+ "type": "string"
28118
+ },
28119
+ "count": {
28120
+ "type": "number"
28121
+ },
28122
+ "label": {
28123
+ "type": "string"
28124
+ }
28125
+ },
28126
+ "required": [
28127
+ "value",
28128
+ "count"
28129
+ ],
28130
+ "additionalProperties": true
28131
+ }
28132
+ },
28133
+ "nodeKinds": {
28134
+ "type": "array",
28135
+ "items": {
28136
+ "type": "object",
28137
+ "properties": {
28138
+ "value": {
28139
+ "type": "string"
28140
+ },
28141
+ "count": {
28142
+ "type": "number"
28143
+ },
28144
+ "label": {
28145
+ "type": "string"
28146
+ }
28147
+ },
28148
+ "required": [
28149
+ "value",
28150
+ "count"
28151
+ ],
28152
+ "additionalProperties": true
28153
+ }
28154
+ },
28155
+ "sourceTypes": {
28156
+ "type": "array",
28157
+ "items": {
28158
+ "type": "object",
28159
+ "properties": {
28160
+ "value": {
28161
+ "type": "string"
28162
+ },
28163
+ "count": {
28164
+ "type": "number"
28165
+ },
28166
+ "label": {
28167
+ "type": "string"
28168
+ }
28169
+ },
28170
+ "required": [
28171
+ "value",
28172
+ "count"
28173
+ ],
28174
+ "additionalProperties": true
28175
+ }
28176
+ },
28177
+ "sourceStatuses": {
28178
+ "type": "array",
28179
+ "items": {
28180
+ "type": "object",
28181
+ "properties": {
28182
+ "value": {
28183
+ "type": "string"
28184
+ },
28185
+ "count": {
28186
+ "type": "number"
28187
+ },
28188
+ "label": {
28189
+ "type": "string"
28190
+ }
28191
+ },
28192
+ "required": [
28193
+ "value",
28194
+ "count"
28195
+ ],
28196
+ "additionalProperties": true
28197
+ }
28198
+ },
28199
+ "nodeStatuses": {
28200
+ "type": "array",
28201
+ "items": {
28202
+ "type": "object",
28203
+ "properties": {
28204
+ "value": {
28205
+ "type": "string"
28206
+ },
28207
+ "count": {
28208
+ "type": "number"
28209
+ },
28210
+ "label": {
28211
+ "type": "string"
28212
+ }
28213
+ },
28214
+ "required": [
28215
+ "value",
28216
+ "count"
28217
+ ],
28218
+ "additionalProperties": true
28219
+ }
28220
+ },
28221
+ "issueCodes": {
28222
+ "type": "array",
28223
+ "items": {
28224
+ "type": "object",
28225
+ "properties": {
28226
+ "value": {
28227
+ "type": "string"
28228
+ },
28229
+ "count": {
28230
+ "type": "number"
28231
+ },
28232
+ "label": {
28233
+ "type": "string"
28234
+ }
28235
+ },
28236
+ "required": [
28237
+ "value",
28238
+ "count"
28239
+ ],
28240
+ "additionalProperties": true
28241
+ }
28242
+ },
28243
+ "issueStatuses": {
28244
+ "type": "array",
28245
+ "items": {
28246
+ "type": "object",
28247
+ "properties": {
28248
+ "value": {
28249
+ "type": "string"
28250
+ },
28251
+ "count": {
28252
+ "type": "number"
28253
+ },
28254
+ "label": {
28255
+ "type": "string"
28256
+ }
28257
+ },
28258
+ "required": [
28259
+ "value",
28260
+ "count"
28261
+ ],
28262
+ "additionalProperties": true
28263
+ }
28264
+ },
28265
+ "issueSeverities": {
28266
+ "type": "array",
28267
+ "items": {
28268
+ "type": "object",
28269
+ "properties": {
28270
+ "value": {
28271
+ "type": "string"
28272
+ },
28273
+ "count": {
28274
+ "type": "number"
28275
+ },
28276
+ "label": {
28277
+ "type": "string"
28278
+ }
28279
+ },
28280
+ "required": [
28281
+ "value",
28282
+ "count"
28283
+ ],
28284
+ "additionalProperties": true
28285
+ }
28286
+ },
28287
+ "edgeRelations": {
28288
+ "type": "array",
28289
+ "items": {
28290
+ "type": "object",
28291
+ "properties": {
28292
+ "value": {
28293
+ "type": "string"
28294
+ },
28295
+ "count": {
28296
+ "type": "number"
28297
+ },
28298
+ "label": {
28299
+ "type": "string"
28300
+ }
28301
+ },
28302
+ "required": [
28303
+ "value",
28304
+ "count"
28305
+ ],
28306
+ "additionalProperties": true
28307
+ }
28308
+ },
28309
+ "tags": {
28310
+ "type": "array",
28311
+ "items": {
28312
+ "type": "object",
28313
+ "properties": {
28314
+ "value": {
28315
+ "type": "string"
28316
+ },
28317
+ "count": {
28318
+ "type": "number"
28319
+ },
28320
+ "label": {
28321
+ "type": "string"
28322
+ }
28323
+ },
28324
+ "required": [
28325
+ "value",
28326
+ "count"
28327
+ ],
28328
+ "additionalProperties": true
28329
+ }
28330
+ },
28331
+ "homeAssistant": {
28332
+ "type": "object",
28333
+ "additionalProperties": {
28334
+ "type": "array",
28335
+ "items": {
28336
+ "type": "object",
28337
+ "properties": {
28338
+ "value": {
28339
+ "type": "string"
28340
+ },
28341
+ "count": {
28342
+ "type": "number"
28343
+ },
28344
+ "label": {
28345
+ "type": "string"
28346
+ }
28347
+ },
28348
+ "required": [
28349
+ "value",
28350
+ "count"
28351
+ ],
28352
+ "additionalProperties": true
28353
+ }
28354
+ }
28355
+ }
28356
+ },
28357
+ "additionalProperties": true
28358
+ },
27958
28359
  "nodes": {
27959
28360
  "type": "array",
27960
28361
  "items": {
@@ -35136,6 +35537,84 @@
35136
35537
  },
35137
35538
  "includeGenerated": {
35138
35539
  "type": "boolean"
35540
+ },
35541
+ "query": {
35542
+ "type": "string"
35543
+ },
35544
+ "recordKinds": {
35545
+ "type": "array",
35546
+ "items": {
35547
+ "type": "string"
35548
+ }
35549
+ },
35550
+ "ids": {
35551
+ "type": "array",
35552
+ "items": {
35553
+ "type": "string"
35554
+ }
35555
+ },
35556
+ "linkedToIds": {
35557
+ "type": "array",
35558
+ "items": {
35559
+ "type": "string"
35560
+ }
35561
+ },
35562
+ "nodeKinds": {
35563
+ "type": "array",
35564
+ "items": {
35565
+ "type": "string"
35566
+ }
35567
+ },
35568
+ "sourceTypes": {
35569
+ "type": "array",
35570
+ "items": {
35571
+ "type": "string"
35572
+ }
35573
+ },
35574
+ "sourceStatuses": {
35575
+ "type": "array",
35576
+ "items": {
35577
+ "type": "string"
35578
+ }
35579
+ },
35580
+ "nodeStatuses": {
35581
+ "type": "array",
35582
+ "items": {
35583
+ "type": "string"
35584
+ }
35585
+ },
35586
+ "issueCodes": {
35587
+ "type": "array",
35588
+ "items": {
35589
+ "type": "string"
35590
+ }
35591
+ },
35592
+ "issueStatuses": {
35593
+ "type": "array",
35594
+ "items": {
35595
+ "type": "string"
35596
+ }
35597
+ },
35598
+ "issueSeverities": {
35599
+ "type": "array",
35600
+ "items": {
35601
+ "type": "string"
35602
+ }
35603
+ },
35604
+ "edgeRelations": {
35605
+ "type": "array",
35606
+ "items": {
35607
+ "type": "string"
35608
+ }
35609
+ },
35610
+ "tags": {
35611
+ "type": "array",
35612
+ "items": {
35613
+ "type": "string"
35614
+ }
35615
+ },
35616
+ "minConfidence": {
35617
+ "type": "number"
35139
35618
  }
35140
35619
  },
35141
35620
  "additionalProperties": false
@@ -35167,6 +35646,263 @@
35167
35646
  "edgeCount": {
35168
35647
  "type": "number"
35169
35648
  },
35649
+ "totalNodeCount": {
35650
+ "type": "number"
35651
+ },
35652
+ "totalEdgeCount": {
35653
+ "type": "number"
35654
+ },
35655
+ "facets": {
35656
+ "type": "object",
35657
+ "properties": {
35658
+ "recordKinds": {
35659
+ "type": "array",
35660
+ "items": {
35661
+ "type": "object",
35662
+ "properties": {
35663
+ "value": {
35664
+ "type": "string"
35665
+ },
35666
+ "count": {
35667
+ "type": "number"
35668
+ },
35669
+ "label": {
35670
+ "type": "string"
35671
+ }
35672
+ },
35673
+ "required": [
35674
+ "value",
35675
+ "count"
35676
+ ],
35677
+ "additionalProperties": true
35678
+ }
35679
+ },
35680
+ "nodeKinds": {
35681
+ "type": "array",
35682
+ "items": {
35683
+ "type": "object",
35684
+ "properties": {
35685
+ "value": {
35686
+ "type": "string"
35687
+ },
35688
+ "count": {
35689
+ "type": "number"
35690
+ },
35691
+ "label": {
35692
+ "type": "string"
35693
+ }
35694
+ },
35695
+ "required": [
35696
+ "value",
35697
+ "count"
35698
+ ],
35699
+ "additionalProperties": true
35700
+ }
35701
+ },
35702
+ "sourceTypes": {
35703
+ "type": "array",
35704
+ "items": {
35705
+ "type": "object",
35706
+ "properties": {
35707
+ "value": {
35708
+ "type": "string"
35709
+ },
35710
+ "count": {
35711
+ "type": "number"
35712
+ },
35713
+ "label": {
35714
+ "type": "string"
35715
+ }
35716
+ },
35717
+ "required": [
35718
+ "value",
35719
+ "count"
35720
+ ],
35721
+ "additionalProperties": true
35722
+ }
35723
+ },
35724
+ "sourceStatuses": {
35725
+ "type": "array",
35726
+ "items": {
35727
+ "type": "object",
35728
+ "properties": {
35729
+ "value": {
35730
+ "type": "string"
35731
+ },
35732
+ "count": {
35733
+ "type": "number"
35734
+ },
35735
+ "label": {
35736
+ "type": "string"
35737
+ }
35738
+ },
35739
+ "required": [
35740
+ "value",
35741
+ "count"
35742
+ ],
35743
+ "additionalProperties": true
35744
+ }
35745
+ },
35746
+ "nodeStatuses": {
35747
+ "type": "array",
35748
+ "items": {
35749
+ "type": "object",
35750
+ "properties": {
35751
+ "value": {
35752
+ "type": "string"
35753
+ },
35754
+ "count": {
35755
+ "type": "number"
35756
+ },
35757
+ "label": {
35758
+ "type": "string"
35759
+ }
35760
+ },
35761
+ "required": [
35762
+ "value",
35763
+ "count"
35764
+ ],
35765
+ "additionalProperties": true
35766
+ }
35767
+ },
35768
+ "issueCodes": {
35769
+ "type": "array",
35770
+ "items": {
35771
+ "type": "object",
35772
+ "properties": {
35773
+ "value": {
35774
+ "type": "string"
35775
+ },
35776
+ "count": {
35777
+ "type": "number"
35778
+ },
35779
+ "label": {
35780
+ "type": "string"
35781
+ }
35782
+ },
35783
+ "required": [
35784
+ "value",
35785
+ "count"
35786
+ ],
35787
+ "additionalProperties": true
35788
+ }
35789
+ },
35790
+ "issueStatuses": {
35791
+ "type": "array",
35792
+ "items": {
35793
+ "type": "object",
35794
+ "properties": {
35795
+ "value": {
35796
+ "type": "string"
35797
+ },
35798
+ "count": {
35799
+ "type": "number"
35800
+ },
35801
+ "label": {
35802
+ "type": "string"
35803
+ }
35804
+ },
35805
+ "required": [
35806
+ "value",
35807
+ "count"
35808
+ ],
35809
+ "additionalProperties": true
35810
+ }
35811
+ },
35812
+ "issueSeverities": {
35813
+ "type": "array",
35814
+ "items": {
35815
+ "type": "object",
35816
+ "properties": {
35817
+ "value": {
35818
+ "type": "string"
35819
+ },
35820
+ "count": {
35821
+ "type": "number"
35822
+ },
35823
+ "label": {
35824
+ "type": "string"
35825
+ }
35826
+ },
35827
+ "required": [
35828
+ "value",
35829
+ "count"
35830
+ ],
35831
+ "additionalProperties": true
35832
+ }
35833
+ },
35834
+ "edgeRelations": {
35835
+ "type": "array",
35836
+ "items": {
35837
+ "type": "object",
35838
+ "properties": {
35839
+ "value": {
35840
+ "type": "string"
35841
+ },
35842
+ "count": {
35843
+ "type": "number"
35844
+ },
35845
+ "label": {
35846
+ "type": "string"
35847
+ }
35848
+ },
35849
+ "required": [
35850
+ "value",
35851
+ "count"
35852
+ ],
35853
+ "additionalProperties": true
35854
+ }
35855
+ },
35856
+ "tags": {
35857
+ "type": "array",
35858
+ "items": {
35859
+ "type": "object",
35860
+ "properties": {
35861
+ "value": {
35862
+ "type": "string"
35863
+ },
35864
+ "count": {
35865
+ "type": "number"
35866
+ },
35867
+ "label": {
35868
+ "type": "string"
35869
+ }
35870
+ },
35871
+ "required": [
35872
+ "value",
35873
+ "count"
35874
+ ],
35875
+ "additionalProperties": true
35876
+ }
35877
+ },
35878
+ "homeAssistant": {
35879
+ "type": "object",
35880
+ "additionalProperties": {
35881
+ "type": "array",
35882
+ "items": {
35883
+ "type": "object",
35884
+ "properties": {
35885
+ "value": {
35886
+ "type": "string"
35887
+ },
35888
+ "count": {
35889
+ "type": "number"
35890
+ },
35891
+ "label": {
35892
+ "type": "string"
35893
+ }
35894
+ },
35895
+ "required": [
35896
+ "value",
35897
+ "count"
35898
+ ],
35899
+ "additionalProperties": true
35900
+ }
35901
+ }
35902
+ }
35903
+ },
35904
+ "additionalProperties": true
35905
+ },
35170
35906
  "nodes": {
35171
35907
  "type": "array",
35172
35908
  "items": {