Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,234 changes: 620 additions & 614 deletions clients/algoliasearch-client-javascript/yarn.lock

Large diffs are not rendered by default.

181 changes: 84 additions & 97 deletions clients/algoliasearch-client-python/poetry.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions clients/algoliasearch-client-ruby/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ PATH
GEM
remote: https://rubygems.org/
specs:
base64 (0.2.0)
connection_pool (2.5.2)
faraday (2.13.1)
base64 (0.3.0)
connection_pool (2.5.4)
faraday (2.14.0)
faraday-net_http (>= 2.0, < 3.5)
json
logger
faraday-net_http (3.4.0)
faraday-net_http (3.4.1)
net-http (>= 0.5.0)
faraday-net_http_persistent (2.3.0)
faraday-net_http_persistent (2.3.1)
faraday (~> 2.5)
net-http-persistent (>= 4.0.4, < 5)
json (2.11.3)
json (2.15.0)
logger (1.7.0)
net-http (0.6.0)
uri
net-http-persistent (4.0.5)
connection_pool (~> 2.2)
rake (13.2.1)
uri (1.0.3)
net-http-persistent (4.0.6)
connection_pool (~> 2.2, >= 2.2.4)
rake (13.3.0)
uri (1.0.4)

PLATFORMS
aarch64-linux
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void processOpts() {
packageFolder = libName;
setPubDescription(
"A Dart package for Algolia. Enables seamless integration for instant search, typo" +
" tolerance & user insights, and more, in Dart/Flutter apps."
" tolerance & user insights, and more, in Dart/Flutter apps."
);
} else {
String packageName = client.replace("-", "_");
Expand All @@ -56,9 +56,9 @@ public void processOpts() {
setApiNameSuffix(Helpers.API_SUFFIX);
setPubDescription(
"A sub-package of the AlgoliaSearch library, offering " +
client.replace("-", " ") +
"-specific functionalities for enhanced search and discovery in Dart/Flutter" +
" apps."
client.replace("-", " ") +
"-specific functionalities for enhanced search and discovery in Dart/Flutter" +
" apps."
);
}
setPubName(libName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,19 +396,19 @@ private void handleModel(
} else {
throw new CTSException(
"Parameter '" +
entry.getKey() +
"' not found in '" +
paramName +
"'. Available properties are: " +
spec
.getVars()
.stream()
.map(v -> v.baseName)
.collect(Collectors.joining(", ")) +
(spec.getAdditionalPropertiesIsAnyType() ? " (and any additional properties)" : "") +
". Or you might have a type conflict in the spec for '" +
baseType +
"'"
entry.getKey() +
"' not found in '" +
paramName +
"'. Available properties are: " +
spec
.getVars()
.stream()
.map(v -> v.baseName)
.collect(Collectors.joining(", ")) +
(spec.getAdditionalPropertiesIsAnyType() ? " (and any additional properties)" : "") +
". Or you might have a type conflict in the spec for '" +
baseType +
"'"
);
}
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ public void run(Map<String, CodegenModel> models, Map<String, CodegenOperation>

throw new CTSException(
"operationId '" +
operationId +
"' does not exist in the " +
client +
" tests suite, please create the file:" +
" 'tests/CTS/requests/" +
client +
"/" +
operationId +
".json'.\n" +
"You can read more on the documentation:" +
" https://api-clients-automation.netlify.app/docs/testing/common-test-suite"
operationId +
"' does not exist in the " +
client +
" tests suite, please create the file:" +
" 'tests/CTS/requests/" +
client +
"/" +
operationId +
".json'.\n" +
"You can read more on the documentation:" +
" https://api-clients-automation.netlify.app/docs/testing/common-test-suite"
);
}
Request[] op = cts.get(operationId);
Expand All @@ -126,10 +126,10 @@ public void run(Map<String, CodegenModel> models, Map<String, CodegenOperation>
if (req.skipLanguages != null && req.skipLanguages.contains(language)) {
System.out.println(
"Skipping request test " +
(req.testName == null ? operationId : req.testName) +
" for language " +
language +
", please fix this"
(req.testName == null ? operationId : req.testName) +
" for language " +
language +
", please fix this"
);
continue;
}
Expand Down
Loading
Loading