apollo-ai-api-client
Advanced tools
Comparing version 0.1.26 to 0.1.27
@@ -39,2 +39,3 @@ export interface IAutoAbstractResponse { | ||
language?: ClusteringLanguage; | ||
skipAbstract?: boolean; | ||
} | ||
@@ -41,0 +42,0 @@ export interface IContinuesClusteringInput { |
@@ -100,3 +100,3 @@ "use strict"; | ||
const url = new url_1.URL(this.apolloApiEndpoint + this.combinedApiEndpoint); | ||
if (options.abstractMaxChars) { | ||
if (options.abstractMaxChars !== undefined) { | ||
url.searchParams.append('maxChars', options.abstractMaxChars.toString()); | ||
@@ -107,3 +107,3 @@ } | ||
} | ||
if (options.threshold) { | ||
if (options.threshold !== undefined) { | ||
url.searchParams.append('threshold', options.threshold.toString()); | ||
@@ -110,0 +110,0 @@ } |
{ | ||
"name": "apollo-ai-api-client", | ||
"version": "0.1.26", | ||
"version": "0.1.27", | ||
"description": "Client for the apollo.ai auto abstract api.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14568
203