Skip to content

Commit

Permalink
chore: generated code for commit cbd81a2. [skip ci]
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Millot <[email protected]>
  • Loading branch information
algolia-bot and millotp committed Jun 8, 2022
1 parent cbd81a2 commit 21860da
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public AbtestingClient(String appId, String apiKey, String region) {
}

public AbtestingClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "Abtesting", options);
super(appId, apiKey, "Abtesting", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public AnalyticsClient(String appId, String apiKey, String region) {
}

public AnalyticsClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "Analytics", options);
super(appId, apiKey, "Analytics", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public InsightsClient(String appId, String apiKey, String region) {
}

public InsightsClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "Insights", options);
super(appId, apiKey, "Insights", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public PersonalizationClient(String appId, String apiKey, String region) {
}

public PersonalizationClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "Personalization", options);
super(appId, apiKey, "Personalization", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public PredictClient(String appId, String apiKey, String region) {
}

public PredictClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "Predict", options);
super(appId, apiKey, "Predict", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public QuerySuggestionsClient(String appId, String apiKey, String region) {
}

public QuerySuggestionsClient(String appId, String apiKey, String region, ClientOptions options) {
super(appId, apiKey, "QuerySuggestions", options);
super(appId, apiKey, "QuerySuggestions", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(region));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public RecommendClient(String appId, String apiKey) {
}

public RecommendClient(String appId, String apiKey, ClientOptions options) {
super(appId, apiKey, "Recommend", options);
super(appId, apiKey, "Recommend", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(appId));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public SearchClient(String appId, String apiKey) {
}

public SearchClient(String appId, String apiKey, ClientOptions options) {
super(appId, apiKey, "Search", options);
super(appId, apiKey, "Search", "4.0.0-SNAPSHOT", options);
if (options.getHosts() == null) {
this.setHosts(getDefaultHosts(appId));
} else {
Expand Down

0 comments on commit 21860da

Please sign in to comment.