graphlit-client 1.0.20260202001 → 1.0.20260202002

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.
@@ -1718,6 +1718,7 @@ export const GetContent = gql `
1718
1718
  text
1719
1719
  validAt
1720
1720
  invalidAt
1721
+ state
1721
1722
  category
1722
1723
  confidence
1723
1724
  }
@@ -2583,6 +2584,7 @@ export const LookupContents = gql `
2583
2584
  text
2584
2585
  validAt
2585
2586
  invalidAt
2587
+ state
2586
2588
  category
2587
2589
  confidence
2588
2590
  }
@@ -5580,6 +5582,7 @@ export const GetConversation = gql `
5580
5582
  text
5581
5583
  validAt
5582
5584
  invalidAt
5585
+ state
5583
5586
  category
5584
5587
  confidence
5585
5588
  }
@@ -6985,6 +6988,7 @@ export const RetrieveFacts = gql `
6985
6988
  owner {
6986
6989
  id
6987
6990
  }
6991
+ state
6988
6992
  text
6989
6993
  validAt
6990
6994
  invalidAt
@@ -8124,6 +8128,7 @@ export const GetFact = gql `
8124
8128
  owner {
8125
8129
  id
8126
8130
  }
8131
+ state
8127
8132
  text
8128
8133
  validAt
8129
8134
  invalidAt
@@ -8176,6 +8181,7 @@ export const QueryFacts = gql `
8176
8181
  owner {
8177
8182
  id
8178
8183
  }
8184
+ state
8179
8185
  text
8180
8186
  validAt
8181
8187
  invalidAt
@@ -8229,6 +8235,7 @@ export const QueryFactsClusters = gql `
8229
8235
  owner {
8230
8236
  id
8231
8237
  }
8238
+ state
8232
8239
  text
8233
8240
  validAt
8234
8241
  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. */
@@ -22404,6 +22406,7 @@ export type GetContentQuery = {
22404
22406
  text: string;
22405
22407
  validAt?: any | null;
22406
22408
  invalidAt?: any | null;
22409
+ state: EntityState;
22407
22410
  category?: FactCategory | null;
22408
22411
  confidence?: number | null;
22409
22412
  } | null> | null;
@@ -23377,6 +23380,7 @@ export type LookupContentsQuery = {
23377
23380
  text: string;
23378
23381
  validAt?: any | null;
23379
23382
  invalidAt?: any | null;
23383
+ state: EntityState;
23380
23384
  category?: FactCategory | null;
23381
23385
  confidence?: number | null;
23382
23386
  } | null> | null;
@@ -26752,6 +26756,7 @@ export type GetConversationQuery = {
26752
26756
  text: string;
26753
26757
  validAt?: any | null;
26754
26758
  invalidAt?: any | null;
26759
+ state: EntityState;
26755
26760
  category?: FactCategory | null;
26756
26761
  confidence?: number | null;
26757
26762
  } | null> | null;
@@ -28354,6 +28359,7 @@ export type RetrieveFactsMutation = {
28354
28359
  __typename?: 'Fact';
28355
28360
  id: string;
28356
28361
  creationDate: any;
28362
+ state: EntityState;
28357
28363
  text: string;
28358
28364
  validAt?: any | null;
28359
28365
  invalidAt?: any | null;
@@ -29657,6 +29663,7 @@ export type GetFactQuery = {
29657
29663
  __typename?: 'Fact';
29658
29664
  id: string;
29659
29665
  creationDate: any;
29666
+ state: EntityState;
29660
29667
  text: string;
29661
29668
  validAt?: any | null;
29662
29669
  invalidAt?: any | null;
@@ -29723,6 +29730,7 @@ export type QueryFactsQuery = {
29723
29730
  __typename?: 'Fact';
29724
29731
  id: string;
29725
29732
  creationDate: any;
29733
+ state: EntityState;
29726
29734
  text: string;
29727
29735
  validAt?: any | null;
29728
29736
  invalidAt?: any | null;
@@ -29791,6 +29799,7 @@ export type QueryFactsClustersQuery = {
29791
29799
  __typename?: 'Fact';
29792
29800
  id: string;
29793
29801
  creationDate: any;
29802
+ state: EntityState;
29794
29803
  text: string;
29795
29804
  validAt?: any | null;
29796
29805
  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.20260202002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",