graphlit-client 1.0.20251004001 → 1.0.20251005001

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