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
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public List<String> getHiddenFacets() {

/**
* @param filterMatchTypes the filterMatchTypes to set. Please refer to
* https://docs-beta.constructor.io/reference/v1-browse-get-browse-items-results for details
* https://docs.constructor.com/reference/v1-browse-get-browse-items-results for details
* Possible values 'all', 'any' or 'none'
*/
public void setFilterMatchTypes(Map<String, String> filterMatchTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public boolean getSortAscending() {

/**
* @param formatOptions the formatOptions to set. Please refer to
* https://docs.constructor.io/rest_api/search/queries for details
* https://docs.constructor.com/reference/v1-search-get-search-results for details
*/
public void setFormatOptions(Map<String, String> formatOptions) {
this.formatOptions = formatOptions;
Expand Down Expand Up @@ -245,7 +245,7 @@ public VariationsMap getVariationsMap() {
/**
* @param preFilterExpression the faceting expression to scope search results (JSON-encoded
* query string). Please refer to
* https://docs.constructor.io/rest_api/collections#add-items-dynamically
* https://docs.constructor.com/reference/shared-filter-expressions
*/
public void setPreFilterExpression(String preFilterExpression) {
this.preFilterExpression = preFilterExpression;
Expand All @@ -261,7 +261,7 @@ public String getPreFilterExpression() {
/**
* @param qsParam any parameters listed in the API documentation can be serialized into a JSON
* object and parsed through this parameter. Please refer to
* https://docs.constructor.io/rest_api/search/queries/
* https://docs.constructor.com/reference/v1-search-get-search-results/
*/
public void setQsParam(String qsParam) {
this.qsParam = qsParam;
Expand All @@ -276,7 +276,7 @@ public String getQsParam() {

/**
* @param now a unix epoch timestamp used to emulate "past" and "future" requests. Please refer
* to https://docs.constructor.io/rest_api/search/queries/
* to https://docs.constructor.com/reference/v1-search-get-search-results/
*/
public void setNow(String now) {
this.now = now;
Expand Down Expand Up @@ -306,7 +306,7 @@ public int getOffset() {

/**
* @param filterMatchTypes the filterMatchTypes to set. Please refer to
* https://docs-beta.constructor.io/reference/v1-browse-get-browse-results for details
* https://docs.constructor.com/reference/v1-browse-get-browse-results for details
* Possible values 'all', 'any' or 'none'
*/
public void setFilterMatchTypes(Map<String, String> filterMatchTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class ConstructorItem {

/**
* Creates an item. Optional public fields are in the <a
* href="https://docs.constructor.io/rest_api/items/items/">API documentation</a>
* href="https://docs.constructor.com/reference/catalog-items">API documentation</a>
*
* @param id the id of the item that you are adding.
* @param name the name of the item that you are adding.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ConstructorVariation {

/**
* Creates a variation. Optional public fields are in the <a
* href="https://docs.constructor.io/rest-api.html#add-an-item">API documentation</a>
* href="https://docs.constructor.com/docs/integrating-with-constructor-product-catalog-items-variations">API documentation</a>
*
* @param id the id of the variation that you are adding.
* @param itemId the id of the item this variation is attached to.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public List<List<String>> getAnswers() {
/**
* @param quizSessionId The quiz session id will be returned with the first request, and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions
* https://docs.constructor.com/reference/configuration-quizzes
*/
public void setQuizSessionId(String quizSessionId) {
this.quizSessionId = quizSessionId;
Expand All @@ -47,7 +47,7 @@ public void setQuizSessionId(String quizSessionId) {
/**
* @return the quizSessionId. The quiz session id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizSessionId() {
return quizSessionId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String getSection() {
/**
* @param quizVersionId The quiz version id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning
* https://docs.constructor.com/reference/configuration-quizzes
*/
public void setQuizVersionId(String quizVersionId) {
this.quizVersionId = quizVersionId;
Expand All @@ -60,7 +60,7 @@ public void setQuizVersionId(String quizVersionId) {
/**
* @return the quizVersionId. The quiz version id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizVersionId() {
return quizVersionId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public Map<String, List<String>> getFacets() {
/**
* @param preFilterExpression the faceting expression to scope recommendation results
* (JSON-encoded query string). Please refer to
* https://docs.constructor.io/rest_api/collections#add-items-dynamically
* https://docs.constructor.com/reference/shared-filter-expressions
*/
public void setPreFilterExpression(String preFilterExpression) {
this.preFilterExpression = preFilterExpression;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public String getCollectionId() {

/**
* @param formatOptions the formatOptions to set. Please refer to
* https://docs.constructor.io/rest_api/search/queries for details
* https://docs.constructor.com/reference/v1-search-get-search-results for details
*/
public void setFormatOptions(Map<String, String> formatOptions) {
this.formatOptions = formatOptions;
Expand Down Expand Up @@ -240,7 +240,7 @@ public VariationsMap getVariationsMap() {
/**
* @param preFilterExpression the faceting expression to scope search results (JSON-encoded
* query string). Please refer to
* https://docs.constructor.io/rest_api/collections#add-items-dynamically
* https://docs.constructor.com/reference/shared-filter-expressions
*/
public void setPreFilterExpression(String preFilterExpression) {
this.preFilterExpression = preFilterExpression;
Expand All @@ -256,7 +256,7 @@ public String getPreFilterExpression() {
/**
* @param qsParam any parameters listed in the API documentation can be serialized into a JSON
* object and parsed through this parameter. Please refer to
* https://docs.constructor.io/rest_api/search/queries/
* https://docs.constructor.com/reference/v1-search-get-search-results/
*/
public void setQsParam(String qsParam) {
this.qsParam = qsParam;
Expand All @@ -271,7 +271,7 @@ public String getQsParam() {

/**
* @param now a unix epoch timestamp used to emulate "past" and "future" requests. Please refer
* to https://docs.constructor.io/rest_api/search/queries/
* to https://docs.constructor.com/reference/v1-search-get-search-results/
*/
public void setNow(String now) {
this.now = now;
Expand Down Expand Up @@ -301,7 +301,7 @@ public int getOffset() {

/**
* @param filterMatchTypes the filterMatchTypes to set. Please refer to
* https://docs-beta.constructor.io/reference/v1-search-get-search-results for details
* https://docs.constructor.com/reference/v1-search-get-search-results for details
* Possible values 'all', 'any' or 'none'
*/
public void setFilterMatchTypes(Map<String, String> filterMatchTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public QuizQuestion getNextQuestion() {
/**
* @return the quizVersionId. The quiz version id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizVersionId() {
return quizVersionId;
Expand All @@ -36,7 +36,7 @@ public String getQuizVersionId() {
/**
* @return the quizSessionId. The quiz session id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizSessionId() {
return quizSessionId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class QuizResultsConfigResponse {
/**
* @return the quizVersionId. The quiz version id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizVersionId() {
return quizVersionId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class QuizResultsResponse {
/**
* @return the quizVersionId. The quiz version id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizVersionId() {
return quizVersionId;
Expand All @@ -33,7 +33,7 @@ public String getQuizVersionId() {
/**
* @return the quizSessionId. The quiz session id will be returned with the first request and it
* should be passed with subsequent requests. More information can be found:
* https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions
* https://docs.constructor.com/reference/configuration-quizzes
*/
public String getQuizSessionId() {
return quizSessionId;
Expand Down
2 changes: 1 addition & 1 deletion docs/io/constructor/client/BrowseItemsRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ <h3>setFilterMatchTypes</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>filterMatchTypes</code> - the filterMatchTypes to set. Please refer to
https://docs-beta.constructor.io/reference/v1-browse-get-browse-items-results for details
https://docs.constructor.com/reference/v1-browse-get-browse-items-results for details
Possible values 'all', 'any' or 'none'</dd>
</dl>
</section>
Expand Down
10 changes: 5 additions & 5 deletions docs/io/constructor/client/BrowseRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ <h3>setFormatOptions</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>formatOptions</code> - the formatOptions to set. Please refer to
https://docs.constructor.io/rest_api/search/queries for details</dd>
https://docs.constructor.com/reference/v1-search-get-search-results for details</dd>
</dl>
</section>
</li>
Expand Down Expand Up @@ -543,7 +543,7 @@ <h3>setPreFilterExpression</h3>
<dt>Parameters:</dt>
<dd><code>preFilterExpression</code> - the faceting expression to scope search results (JSON-encoded
query string). Please refer to
https://docs.constructor.io/rest_api/collections#add-items-dynamically</dd>
https://docs.constructor.com/reference/configuration-collections</dd>
</dl>
</section>
</li>
Expand All @@ -565,7 +565,7 @@ <h3>setQsParam</h3>
<dt>Parameters:</dt>
<dd><code>qsParam</code> - any parameters listed in the API documentation can be serialized into a JSON
object and parsed through this parameter. Please refer to
https://docs.constructor.io/rest_api/search/queries/</dd>
https://docs.constructor.com/reference/v1-search-get-search-results/</dd>
</dl>
</section>
</li>
Expand All @@ -586,7 +586,7 @@ <h3>setNow</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>now</code> - a unix epoch timestamp used to emulate "past" and "future" requests. Please refer
to https://docs.constructor.io/rest_api/search/queries/</dd>
to https://docs.constructor.com/reference/v1-search-get-search-results/</dd>
</dl>
</section>
</li>
Expand Down Expand Up @@ -628,7 +628,7 @@ <h3>setFilterMatchTypes</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>filterMatchTypes</code> - the filterMatchTypes to set. Please refer to
https://docs-beta.constructor.io/reference/v1-browse-get-browse-results for details
https://docs.constructor.com/reference/v1-browse-get-browse-results for details
Possible values 'all', 'any' or 'none'</dd>
</dl>
</section>
Expand Down
2 changes: 1 addition & 1 deletion docs/io/constructor/client/ConstructorItem.html
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ <h3>ConstructorItem</h3>
<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name">ConstructorItem</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;id,
<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</span>
throws <span class="exceptions"><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></span></div>
<div class="block">Creates an item. Optional public fields are in the <a href="https://docs.constructor.io/rest_api/items/items/">API documentation</a></div>
<div class="block">Creates an item. Optional public fields are in the <a href="https://docs.constructor.com/reference/catalog-items">API documentation</a></div>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>id</code> - the id of the item that you are adding.</dd>
Expand Down
2 changes: 1 addition & 1 deletion docs/io/constructor/client/ConstructorVariation.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ <h3>ConstructorVariation</h3>
<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;itemId,
<a href="https://docs.oracle.com/javase/7/docs/api/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</span>
throws <span class="exceptions"><a href="https://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></span></div>
<div class="block">Creates a variation. Optional public fields are in the <a href="https://docs.constructor.io/rest-api.html#add-an-item">API documentation</a></div>
<div class="block">Creates a variation. Optional public fields are in the <a href="https://docs.constructor.com/docs/integrating-with-constructor-product-catalog-items-variations">API documentation</a></div>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>id</code> - the id of the variation that you are adding.</dd>
Expand Down
4 changes: 2 additions & 2 deletions docs/io/constructor/client/QuizRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ <h3>setQuizSessionId</h3>
<dt>Parameters:</dt>
<dd><code>quizSessionId</code> - The quiz session id will be returned with the first request, and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand All @@ -219,7 +219,7 @@ <h3>getQuizSessionId</h3>
<dt>Returns:</dt>
<dd>the quizSessionId. The quiz session id will be returned with the first request and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/io/constructor/client/QuizRequestBase.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h3>setQuizVersionId</h3>
<dt>Parameters:</dt>
<dd><code>quizVersionId</code> - The quiz version id will be returned with the first request and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand All @@ -242,7 +242,7 @@ <h3>getQuizVersionId</h3>
<dt>Returns:</dt>
<dd>the quizVersionId. The quiz version id will be returned with the first request and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/io/constructor/client/RecommendationsRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ <h3>setPreFilterExpression</h3>
<dt>Parameters:</dt>
<dd><code>preFilterExpression</code> - the faceting expression to scope recommendation results
(JSON-encoded query string). Please refer to
https://docs.constructor.io/rest_api/collections#add-items-dynamically</dd>
https://docs.constructor.com/reference/configuration-collections</dd>
</dl>
</section>
</li>
Expand Down
10 changes: 5 additions & 5 deletions docs/io/constructor/client/SearchRequest.html
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ <h3>setFormatOptions</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>formatOptions</code> - the formatOptions to set. Please refer to
https://docs.constructor.io/rest_api/search/queries for details</dd>
https://docs.constructor.com/reference/v1-search-get-search-results for details</dd>
</dl>
</section>
</li>
Expand Down Expand Up @@ -540,7 +540,7 @@ <h3>setPreFilterExpression</h3>
<dt>Parameters:</dt>
<dd><code>preFilterExpression</code> - the faceting expression to scope search results (JSON-encoded
query string). Please refer to
https://docs.constructor.io/rest_api/collections#add-items-dynamically</dd>
https://docs.constructor.com/reference/configuration-collections</dd>
</dl>
</section>
</li>
Expand All @@ -562,7 +562,7 @@ <h3>setQsParam</h3>
<dt>Parameters:</dt>
<dd><code>qsParam</code> - any parameters listed in the API documentation can be serialized into a JSON
object and parsed through this parameter. Please refer to
https://docs.constructor.io/rest_api/search/queries/</dd>
https://docs.constructor.com/reference/v1-search-get-search-results/</dd>
</dl>
</section>
</li>
Expand All @@ -583,7 +583,7 @@ <h3>setNow</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>now</code> - a unix epoch timestamp used to emulate "past" and "future" requests. Please refer
to https://docs.constructor.io/rest_api/search/queries/</dd>
to https://docs.constructor.com/reference/v1-search-get-search-results/</dd>
</dl>
</section>
</li>
Expand Down Expand Up @@ -625,7 +625,7 @@ <h3>setFilterMatchTypes</h3>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>filterMatchTypes</code> - the filterMatchTypes to set. Please refer to
https://docs-beta.constructor.io/reference/v1-search-get-search-results for details
https://docs.constructor.com/reference/v1-search-get-search-results for details
Possible values 'all', 'any' or 'none'</dd>
</dl>
</section>
Expand Down
4 changes: 2 additions & 2 deletions docs/io/constructor/client/models/QuizQuestionResponse.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ <h3>getQuizVersionId</h3>
<dt>Returns:</dt>
<dd>the quizVersionId. The quiz version id will be returned with the first request and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-versioning</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand All @@ -207,7 +207,7 @@ <h3>getQuizSessionId</h3>
<dt>Returns:</dt>
<dd>the quizSessionId. The quiz session id will be returned with the first request and it
should be passed with subsequent requests. More information can be found:
https://docs.constructor.io/rest_api/quiz/using_quizzes/#quiz-sessions</dd>
https://docs.constructor.com/reference/configuration-quizzes</dd>
</dl>
</section>
</li>
Expand Down
Loading
Loading