graphlit-client 1.0.20251002001 → 1.0.20251004001

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.
@@ -9274,6 +9274,7 @@ export const GetSpecification = gql `
9274
9274
  type
9275
9275
  contentLimit
9276
9276
  disableFallback
9277
+ expandRelatedContents
9277
9278
  }
9278
9279
  rerankingStrategy {
9279
9280
  serviceType
@@ -9648,6 +9649,7 @@ export const QuerySpecifications = gql `
9648
9649
  type
9649
9650
  contentLimit
9650
9651
  disableFallback
9652
+ expandRelatedContents
9651
9653
  }
9652
9654
  rerankingStrategy {
9653
9655
  serviceType
@@ -13444,6 +13444,8 @@ export type RetrievalStrategy = {
13444
13444
  contentLimit?: Maybe<Scalars['Int']['output']>;
13445
13445
  /** Whether to disable fallback to previous contents, when no contents are found by semantic search. Defaults to false. */
13446
13446
  disableFallback?: Maybe<Scalars['Boolean']['output']>;
13447
+ /** Whether to expand related contents bidirectionally (child contents like extracted images, parent contents like source documents). Defaults to false. */
13448
+ expandRelatedContents?: Maybe<Scalars['Boolean']['output']>;
13447
13449
  /** The retrieval strategy type. */
13448
13450
  type: RetrievalStrategyTypes;
13449
13451
  };
@@ -13453,6 +13455,8 @@ export type RetrievalStrategyInput = {
13453
13455
  contentLimit?: InputMaybe<Scalars['Int']['input']>;
13454
13456
  /** Whether to disable fallback to previous contents, when no contents are found by semantic search. Defaults to false. */
13455
13457
  disableFallback?: InputMaybe<Scalars['Boolean']['input']>;
13458
+ /** Whether to expand related contents bidirectionally (child contents like extracted images, parent contents like source documents). Defaults to false. */
13459
+ expandRelatedContents?: InputMaybe<Scalars['Boolean']['input']>;
13456
13460
  /** The retrieval strategy type. */
13457
13461
  type: RetrievalStrategyTypes;
13458
13462
  };
@@ -13469,6 +13473,8 @@ export declare enum RetrievalStrategyTypes {
13469
13473
  export type RetrievalStrategyUpdateInput = {
13470
13474
  /** The maximum number of content sources to provide with prompt context. Defaults to 25. */
13471
13475
  contentLimit?: InputMaybe<Scalars['Int']['input']>;
13476
+ /** Whether to expand related contents bidirectionally (child contents like extracted images, parent contents like source documents). Defaults to false. */
13477
+ expandRelatedContents?: InputMaybe<Scalars['Boolean']['input']>;
13472
13478
  /** The retrieval strategy type. */
13473
13479
  type?: InputMaybe<RetrievalStrategyTypes>;
13474
13480
  };
@@ -26337,6 +26343,7 @@ export type GetSpecificationQuery = {
26337
26343
  type: RetrievalStrategyTypes;
26338
26344
  contentLimit?: number | null;
26339
26345
  disableFallback?: boolean | null;
26346
+ expandRelatedContents?: boolean | null;
26340
26347
  } | null;
26341
26348
  rerankingStrategy?: {
26342
26349
  __typename?: 'RerankingStrategy';
@@ -26757,6 +26764,7 @@ export type QuerySpecificationsQuery = {
26757
26764
  type: RetrievalStrategyTypes;
26758
26765
  contentLimit?: number | null;
26759
26766
  disableFallback?: boolean | null;
26767
+ expandRelatedContents?: boolean | null;
26760
26768
  } | null;
26761
26769
  rerankingStrategy?: {
26762
26770
  __typename?: 'RerankingStrategy';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251002001",
3
+ "version": "1.0.20251004001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",