graphlit-client 1.0.20260220004 → 1.0.20260221001

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.
@@ -1822,6 +1822,7 @@ export const GetContent = gql `
1822
1822
  index
1823
1823
  text
1824
1824
  relevance
1825
+ embeddingType
1825
1826
  images {
1826
1827
  id
1827
1828
  mimeType
@@ -1841,6 +1842,7 @@ export const GetContent = gql `
1841
1842
  role
1842
1843
  language
1843
1844
  relevance
1845
+ embeddingType
1844
1846
  }
1845
1847
  }
1846
1848
  segments {
@@ -1848,12 +1850,14 @@ export const GetContent = gql `
1848
1850
  endTime
1849
1851
  text
1850
1852
  relevance
1853
+ embeddingType
1851
1854
  }
1852
1855
  frames {
1853
1856
  index
1854
1857
  description
1855
1858
  text
1856
1859
  relevance
1860
+ embeddingType
1857
1861
  }
1858
1862
  error
1859
1863
  }
@@ -2688,6 +2692,7 @@ export const LookupContents = gql `
2688
2692
  index
2689
2693
  text
2690
2694
  relevance
2695
+ embeddingType
2691
2696
  images {
2692
2697
  id
2693
2698
  mimeType
@@ -2707,6 +2712,7 @@ export const LookupContents = gql `
2707
2712
  role
2708
2713
  language
2709
2714
  relevance
2715
+ embeddingType
2710
2716
  }
2711
2717
  }
2712
2718
  segments {
@@ -2714,12 +2720,14 @@ export const LookupContents = gql `
2714
2720
  endTime
2715
2721
  text
2716
2722
  relevance
2723
+ embeddingType
2717
2724
  }
2718
2725
  frames {
2719
2726
  index
2720
2727
  description
2721
2728
  text
2722
2729
  relevance
2730
+ embeddingType
2723
2731
  }
2724
2732
  error
2725
2733
  }
@@ -3361,6 +3369,7 @@ export const QueryContents = gql `
3361
3369
  index
3362
3370
  text
3363
3371
  relevance
3372
+ embeddingType
3364
3373
  images {
3365
3374
  id
3366
3375
  mimeType
@@ -3380,6 +3389,7 @@ export const QueryContents = gql `
3380
3389
  role
3381
3390
  language
3382
3391
  relevance
3392
+ embeddingType
3383
3393
  }
3384
3394
  }
3385
3395
  segments {
@@ -3387,12 +3397,14 @@ export const QueryContents = gql `
3387
3397
  endTime
3388
3398
  text
3389
3399
  relevance
3400
+ embeddingType
3390
3401
  }
3391
3402
  frames {
3392
3403
  index
3393
3404
  description
3394
3405
  text
3395
3406
  relevance
3407
+ embeddingType
3396
3408
  }
3397
3409
  error
3398
3410
  }
@@ -3789,6 +3801,7 @@ export const QueryContentsObservations = gql `
3789
3801
  index
3790
3802
  text
3791
3803
  relevance
3804
+ embeddingType
3792
3805
  images {
3793
3806
  id
3794
3807
  mimeType
@@ -3808,6 +3821,7 @@ export const QueryContentsObservations = gql `
3808
3821
  role
3809
3822
  language
3810
3823
  relevance
3824
+ embeddingType
3811
3825
  }
3812
3826
  }
3813
3827
  segments {
@@ -3815,12 +3829,14 @@ export const QueryContentsObservations = gql `
3815
3829
  endTime
3816
3830
  text
3817
3831
  relevance
3832
+ embeddingType
3818
3833
  }
3819
3834
  frames {
3820
3835
  index
3821
3836
  description
3822
3837
  text
3823
3838
  relevance
3839
+ embeddingType
3824
3840
  }
3825
3841
  error
3826
3842
  markdown
@@ -20600,6 +20600,8 @@ export type TextChunk = {
20600
20600
  columnIndex?: Maybe<Scalars['Int']['output']>;
20601
20601
  /** The confidence of the extracted text chunk. */
20602
20602
  confidence?: Maybe<Scalars['Float']['output']>;
20603
+ /** The embedding type which matched the text chunk. */
20604
+ embeddingType?: Maybe<EmbeddingTypes>;
20603
20605
  /** The text chunk index. */
20604
20606
  index?: Maybe<Scalars['Int']['output']>;
20605
20607
  /** The text chunk language. May be assigned for code chunks. */
@@ -20627,6 +20629,8 @@ export type TextFrame = {
20627
20629
  __typename?: 'TextFrame';
20628
20630
  /** The text which describes the frame. */
20629
20631
  description?: Maybe<Scalars['String']['output']>;
20632
+ /** The embedding type which matched the frame. */
20633
+ embeddingType?: Maybe<EmbeddingTypes>;
20630
20634
  /** The frame index. */
20631
20635
  index?: Maybe<Scalars['Int']['output']>;
20632
20636
  /** The relevance score of the frame. */
@@ -20639,6 +20643,8 @@ export type TextPage = {
20639
20643
  __typename?: 'TextPage';
20640
20644
  /** The text page chunks. */
20641
20645
  chunks?: Maybe<Array<Maybe<TextChunk>>>;
20646
+ /** The embedding type which matched the text page. */
20647
+ embeddingType?: Maybe<EmbeddingTypes>;
20642
20648
  /** The text page images. */
20643
20649
  images?: Maybe<Array<Maybe<ImageChunk>>>;
20644
20650
  /** The text page index. */
@@ -20728,6 +20734,8 @@ export declare enum TextRoles {
20728
20734
  /** Represents a segment of an audio transcript. */
20729
20735
  export type TextSegment = {
20730
20736
  __typename?: 'TextSegment';
20737
+ /** The embedding type which matched the audio transcript segment. */
20738
+ embeddingType?: Maybe<EmbeddingTypes>;
20731
20739
  /** The end time of the audio transcript segment. */
20732
20740
  endTime?: Maybe<Scalars['TimeSpan']['output']>;
20733
20741
  /** The relevance score of the audio transcript segment. */
@@ -24010,6 +24018,7 @@ export type GetContentQuery = {
24010
24018
  index?: number | null;
24011
24019
  text?: string | null;
24012
24020
  relevance?: number | null;
24021
+ embeddingType?: EmbeddingTypes | null;
24013
24022
  images?: Array<{
24014
24023
  __typename?: 'ImageChunk';
24015
24024
  id?: string | null;
@@ -24031,6 +24040,7 @@ export type GetContentQuery = {
24031
24040
  role?: TextRoles | null;
24032
24041
  language?: string | null;
24033
24042
  relevance?: number | null;
24043
+ embeddingType?: EmbeddingTypes | null;
24034
24044
  } | null> | null;
24035
24045
  }> | null;
24036
24046
  segments?: Array<{
@@ -24039,6 +24049,7 @@ export type GetContentQuery = {
24039
24049
  endTime?: any | null;
24040
24050
  text?: string | null;
24041
24051
  relevance?: number | null;
24052
+ embeddingType?: EmbeddingTypes | null;
24042
24053
  }> | null;
24043
24054
  frames?: Array<{
24044
24055
  __typename?: 'TextFrame';
@@ -24046,6 +24057,7 @@ export type GetContentQuery = {
24046
24057
  description?: string | null;
24047
24058
  text?: string | null;
24048
24059
  relevance?: number | null;
24060
+ embeddingType?: EmbeddingTypes | null;
24049
24061
  }> | null;
24050
24062
  } | null;
24051
24063
  };
@@ -24984,6 +24996,7 @@ export type LookupContentsQuery = {
24984
24996
  index?: number | null;
24985
24997
  text?: string | null;
24986
24998
  relevance?: number | null;
24999
+ embeddingType?: EmbeddingTypes | null;
24987
25000
  images?: Array<{
24988
25001
  __typename?: 'ImageChunk';
24989
25002
  id?: string | null;
@@ -25005,6 +25018,7 @@ export type LookupContentsQuery = {
25005
25018
  role?: TextRoles | null;
25006
25019
  language?: string | null;
25007
25020
  relevance?: number | null;
25021
+ embeddingType?: EmbeddingTypes | null;
25008
25022
  } | null> | null;
25009
25023
  }> | null;
25010
25024
  segments?: Array<{
@@ -25013,6 +25027,7 @@ export type LookupContentsQuery = {
25013
25027
  endTime?: any | null;
25014
25028
  text?: string | null;
25015
25029
  relevance?: number | null;
25030
+ embeddingType?: EmbeddingTypes | null;
25016
25031
  }> | null;
25017
25032
  frames?: Array<{
25018
25033
  __typename?: 'TextFrame';
@@ -25020,6 +25035,7 @@ export type LookupContentsQuery = {
25020
25035
  description?: string | null;
25021
25036
  text?: string | null;
25022
25037
  relevance?: number | null;
25038
+ embeddingType?: EmbeddingTypes | null;
25023
25039
  }> | null;
25024
25040
  } | null> | null;
25025
25041
  } | null;
@@ -25727,6 +25743,7 @@ export type QueryContentsQuery = {
25727
25743
  index?: number | null;
25728
25744
  text?: string | null;
25729
25745
  relevance?: number | null;
25746
+ embeddingType?: EmbeddingTypes | null;
25730
25747
  images?: Array<{
25731
25748
  __typename?: 'ImageChunk';
25732
25749
  id?: string | null;
@@ -25748,6 +25765,7 @@ export type QueryContentsQuery = {
25748
25765
  role?: TextRoles | null;
25749
25766
  language?: string | null;
25750
25767
  relevance?: number | null;
25768
+ embeddingType?: EmbeddingTypes | null;
25751
25769
  } | null> | null;
25752
25770
  }> | null;
25753
25771
  segments?: Array<{
@@ -25756,6 +25774,7 @@ export type QueryContentsQuery = {
25756
25774
  endTime?: any | null;
25757
25775
  text?: string | null;
25758
25776
  relevance?: number | null;
25777
+ embeddingType?: EmbeddingTypes | null;
25759
25778
  }> | null;
25760
25779
  frames?: Array<{
25761
25780
  __typename?: 'TextFrame';
@@ -25763,6 +25782,7 @@ export type QueryContentsQuery = {
25763
25782
  description?: string | null;
25764
25783
  text?: string | null;
25765
25784
  relevance?: number | null;
25785
+ embeddingType?: EmbeddingTypes | null;
25766
25786
  }> | null;
25767
25787
  } | null> | null;
25768
25788
  } | null;
@@ -26220,6 +26240,7 @@ export type QueryContentsObservationsQuery = {
26220
26240
  index?: number | null;
26221
26241
  text?: string | null;
26222
26242
  relevance?: number | null;
26243
+ embeddingType?: EmbeddingTypes | null;
26223
26244
  images?: Array<{
26224
26245
  __typename?: 'ImageChunk';
26225
26246
  id?: string | null;
@@ -26241,6 +26262,7 @@ export type QueryContentsObservationsQuery = {
26241
26262
  role?: TextRoles | null;
26242
26263
  language?: string | null;
26243
26264
  relevance?: number | null;
26265
+ embeddingType?: EmbeddingTypes | null;
26244
26266
  } | null> | null;
26245
26267
  }> | null;
26246
26268
  segments?: Array<{
@@ -26249,6 +26271,7 @@ export type QueryContentsObservationsQuery = {
26249
26271
  endTime?: any | null;
26250
26272
  text?: string | null;
26251
26273
  relevance?: number | null;
26274
+ embeddingType?: EmbeddingTypes | null;
26252
26275
  }> | null;
26253
26276
  frames?: Array<{
26254
26277
  __typename?: 'TextFrame';
@@ -26256,6 +26279,7 @@ export type QueryContentsObservationsQuery = {
26256
26279
  description?: string | null;
26257
26280
  text?: string | null;
26258
26281
  relevance?: number | null;
26282
+ embeddingType?: EmbeddingTypes | null;
26259
26283
  }> | null;
26260
26284
  observations?: Array<{
26261
26285
  __typename?: 'Observation';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260220004",
3
+ "version": "1.0.20260221001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",