graphlit-client 1.0.20240426002 → 1.0.20240505001

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.
@@ -551,6 +551,8 @@ var FeedTypes;
551
551
  FeedTypes["Email"] = "EMAIL";
552
552
  /** Issue feed */
553
553
  FeedTypes["Issue"] = "ISSUE";
554
+ /** Microsoft Teams channel feed */
555
+ FeedTypes["MicrosoftTeams"] = "MICROSOFT_TEAMS";
554
556
  /** Notion feed */
555
557
  FeedTypes["Notion"] = "NOTION";
556
558
  /** Reddit feed */
@@ -727,6 +729,8 @@ var LinkTypes;
727
729
  LinkTypes["Media"] = "MEDIA";
728
730
  /** Medium link */
729
731
  LinkTypes["Medium"] = "MEDIUM";
732
+ /** Microsoft Teams link */
733
+ LinkTypes["MicrosoftTeams"] = "MICROSOFT_TEAMS";
730
734
  /** Notion link */
731
735
  LinkTypes["Notion"] = "NOTION";
732
736
  /** Pandora link */
@@ -1012,6 +1016,8 @@ var PromptStrategyTypes;
1012
1016
  PromptStrategyTypes["Rewrite"] = "REWRITE";
1013
1017
  /** Rewrite prompt as multiple sub-prompts */
1014
1018
  PromptStrategyTypes["RewriteMultiple"] = "REWRITE_MULTIPLE";
1019
+ /** Rewrite prompt as question requiring detailed response with example */
1020
+ PromptStrategyTypes["RewriteQuestion"] = "REWRITE_QUESTION";
1015
1021
  })(PromptStrategyTypes || (exports.PromptStrategyTypes = PromptStrategyTypes = {}));
1016
1022
  /** Rendition type */
1017
1023
  var RenditionTypes;
@@ -1054,6 +1060,8 @@ var RerankingModelServiceTypes;
1054
1060
  RerankingModelServiceTypes["Cohere"] = "COHERE";
1055
1061
  /** Jina */
1056
1062
  RerankingModelServiceTypes["Jina"] = "JINA";
1063
+ /** Pongo */
1064
+ RerankingModelServiceTypes["Pongo"] = "PONGO";
1057
1065
  })(RerankingModelServiceTypes || (exports.RerankingModelServiceTypes = RerankingModelServiceTypes = {}));
1058
1066
  /** Resource connector type */
1059
1067
  var ResourceConnectorTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240426002",
3
+ "version": "1.0.20240505001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",