graphlit-client 1.0.20260202001 → 1.0.20260202003

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.
@@ -1188,6 +1188,10 @@ export const ExtractObservables = gql `
1188
1188
  name
1189
1189
  metadata
1190
1190
  }
1191
+ emotions {
1192
+ name
1193
+ metadata
1194
+ }
1191
1195
  persons {
1192
1196
  name
1193
1197
  metadata
@@ -1718,6 +1722,7 @@ export const GetContent = gql `
1718
1722
  text
1719
1723
  validAt
1720
1724
  invalidAt
1725
+ state
1721
1726
  category
1722
1727
  confidence
1723
1728
  }
@@ -2583,6 +2588,7 @@ export const LookupContents = gql `
2583
2588
  text
2584
2589
  validAt
2585
2590
  invalidAt
2591
+ state
2586
2592
  category
2587
2593
  confidence
2588
2594
  }
@@ -5580,6 +5586,7 @@ export const GetConversation = gql `
5580
5586
  text
5581
5587
  validAt
5582
5588
  invalidAt
5589
+ state
5583
5590
  category
5584
5591
  confidence
5585
5592
  }
@@ -6985,6 +6992,7 @@ export const RetrieveFacts = gql `
6985
6992
  owner {
6986
6993
  id
6987
6994
  }
6995
+ state
6988
6996
  text
6989
6997
  validAt
6990
6998
  invalidAt
@@ -8124,6 +8132,7 @@ export const GetFact = gql `
8124
8132
  owner {
8125
8133
  id
8126
8134
  }
8135
+ state
8127
8136
  text
8128
8137
  validAt
8129
8138
  invalidAt
@@ -8176,6 +8185,7 @@ export const QueryFacts = gql `
8176
8185
  owner {
8177
8186
  id
8178
8187
  }
8188
+ state
8179
8189
  text
8180
8190
  validAt
8181
8191
  invalidAt
@@ -8229,6 +8239,7 @@ export const QueryFactsClusters = gql `
8229
8239
  owner {
8230
8240
  id
8231
8241
  }
8242
+ state
8232
8243
  text
8233
8244
  validAt
8234
8245
  invalidAt
@@ -4599,6 +4599,8 @@ export type EntityExtractionMetadata = {
4599
4599
  __typename?: 'EntityExtractionMetadata';
4600
4600
  /** The extracted categories. */
4601
4601
  categories?: Maybe<Array<Maybe<Observable>>>;
4602
+ /** The extracted emotions. */
4603
+ emotions?: Maybe<Array<Maybe<Observable>>>;
4602
4604
  /** The extracted events. */
4603
4605
  events?: Maybe<Array<Maybe<Observable>>>;
4604
4606
  /** The extracted investment funds. */
@@ -21799,6 +21801,11 @@ export type ExtractObservablesMutation = {
21799
21801
  name?: string | null;
21800
21802
  metadata?: string | null;
21801
21803
  } | null> | null;
21804
+ emotions?: Array<{
21805
+ __typename?: 'Observable';
21806
+ name?: string | null;
21807
+ metadata?: string | null;
21808
+ } | null> | null;
21802
21809
  persons?: Array<{
21803
21810
  __typename?: 'Observable';
21804
21811
  name?: string | null;
@@ -22404,6 +22411,7 @@ export type GetContentQuery = {
22404
22411
  text: string;
22405
22412
  validAt?: any | null;
22406
22413
  invalidAt?: any | null;
22414
+ state: EntityState;
22407
22415
  category?: FactCategory | null;
22408
22416
  confidence?: number | null;
22409
22417
  } | null> | null;
@@ -23377,6 +23385,7 @@ export type LookupContentsQuery = {
23377
23385
  text: string;
23378
23386
  validAt?: any | null;
23379
23387
  invalidAt?: any | null;
23388
+ state: EntityState;
23380
23389
  category?: FactCategory | null;
23381
23390
  confidence?: number | null;
23382
23391
  } | null> | null;
@@ -26752,6 +26761,7 @@ export type GetConversationQuery = {
26752
26761
  text: string;
26753
26762
  validAt?: any | null;
26754
26763
  invalidAt?: any | null;
26764
+ state: EntityState;
26755
26765
  category?: FactCategory | null;
26756
26766
  confidence?: number | null;
26757
26767
  } | null> | null;
@@ -28354,6 +28364,7 @@ export type RetrieveFactsMutation = {
28354
28364
  __typename?: 'Fact';
28355
28365
  id: string;
28356
28366
  creationDate: any;
28367
+ state: EntityState;
28357
28368
  text: string;
28358
28369
  validAt?: any | null;
28359
28370
  invalidAt?: any | null;
@@ -29657,6 +29668,7 @@ export type GetFactQuery = {
29657
29668
  __typename?: 'Fact';
29658
29669
  id: string;
29659
29670
  creationDate: any;
29671
+ state: EntityState;
29660
29672
  text: string;
29661
29673
  validAt?: any | null;
29662
29674
  invalidAt?: any | null;
@@ -29723,6 +29735,7 @@ export type QueryFactsQuery = {
29723
29735
  __typename?: 'Fact';
29724
29736
  id: string;
29725
29737
  creationDate: any;
29738
+ state: EntityState;
29726
29739
  text: string;
29727
29740
  validAt?: any | null;
29728
29741
  invalidAt?: any | null;
@@ -29791,6 +29804,7 @@ export type QueryFactsClustersQuery = {
29791
29804
  __typename?: 'Fact';
29792
29805
  id: string;
29793
29806
  creationDate: any;
29807
+ state: EntityState;
29794
29808
  text: string;
29795
29809
  validAt?: any | null;
29796
29810
  invalidAt?: any | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260202001",
3
+ "version": "1.0.20260202003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",