From 421afb15a6cf48dc6c26b0304ec6e9d3a95a65f3 Mon Sep 17 00:00:00 2001 From: "ct-sdks[bot]" <153784748+ct-sdks[bot]@users.noreply.github.com> Date: Fri, 21 Mar 2025 12:00:43 +0000 Subject: [PATCH 1/2] build(codegen): updating SDK --- ...ctKeyProductSelectionsByIDProductsGet.java | 168 ++++++++--------- ...yProductSelectionsKeyByKeyProductsGet.java | 172 +++++++++--------- .../ByProjectKeyProductTailoringGet.java | 168 ++++++++--------- ...ctKeyProductsByIDProductSelectionsGet.java | 168 ++++++++--------- ...yProductsKeyByKeyProductSelectionsGet.java | 172 +++++++++--------- ...nedProductSelectionPagedQueryResponse.java | 4 +- ...uctSelectionPagedQueryResponseBuilder.java | 4 +- ...roductSelectionPagedQueryResponseImpl.java | 2 +- .../ProductSelectionPagedQueryResponse.java | 4 +- ...uctSelectionPagedQueryResponseBuilder.java | 4 +- ...roductSelectionPagedQueryResponseImpl.java | 2 +- ...uctSelectionProductPagedQueryResponse.java | 4 +- ...ctionProductPagedQueryResponseBuilder.java | 4 +- ...electionProductPagedQueryResponseImpl.java | 2 +- .../ProductsInStorePagedQueryResponse.java | 4 +- ...ductsInStorePagedQueryResponseBuilder.java | 4 +- ...ProductsInStorePagedQueryResponseImpl.java | 2 +- .../ProductTailoringPagedQueryResponse.java | 4 +- ...uctTailoringPagedQueryResponseBuilder.java | 4 +- ...roductTailoringPagedQueryResponseImpl.java | 2 +- ...tKeyProductSelectionsByIDProductsTest.java | 24 +-- ...ProductSelectionsKeyByKeyProductsTest.java | 24 +-- .../ByProjectKeyProductTailoringTest.java | 14 +- ...tKeyProductsByIDProductSelectionsTest.java | 28 +-- ...ProductsKeyByKeyProductSelectionsTest.java | 28 +-- reference.txt | 1 + references.txt | 1 + 27 files changed, 510 insertions(+), 508 deletions(-) create mode 100644 reference.txt diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsByIDProductsGet.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsByIDProductsGet.java index 3b0c2328a8f..f617d07d8aa 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsByIDProductsGet.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsByIDProductsGet.java @@ -103,6 +103,10 @@ public List getWhere() { return this.getQueryParam("where"); } + public List getWithTotal() { + return this.getQueryParam("withTotal"); + } + public List getExpand() { return this.getQueryParam("expand"); } @@ -115,10 +119,6 @@ public List getOffset() { return this.getQueryParam("offset"); } - public List getWithTotal() { - return this.getQueryParam("withTotal"); - } - public List getSort() { return this.getQueryParam("sort"); } @@ -210,6 +210,86 @@ public ByProjectKeyProductSelectionsByIDProductsGet addWhere(final Coll where.stream().map(s -> new ParamEntry<>("where", s.toString())).collect(Collectors.toList())); } + /** + * set withTotal with the specified value + * @param withTotal value to be set + * @param value type + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final TValue withTotal) { + return copy().withQueryParam("withTotal", withTotal); + } + + /** + * add additional withTotal query parameter + * @param withTotal value to be added + * @param value type + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final TValue withTotal) { + return copy().addQueryParam("withTotal", withTotal); + } + + /** + * set withTotal with the specified value + * @param supplier supplier for the value to be set + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Supplier supplier) { + return copy().withQueryParam("withTotal", supplier.get()); + } + + /** + * add additional withTotal query parameter + * @param supplier supplier for the value to be added + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Supplier supplier) { + return copy().addQueryParam("withTotal", supplier.get()); + } + + /** + * set withTotal with the specified value + * @param op builder for the value to be set + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Function op) { + return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * add additional withTotal query parameter + * @param op builder for the value to be added + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Function op) { + return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * set withTotal with the specified values + * @param withTotal values to be set + * @param value type + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Collection withTotal) { + return copy().withoutQueryParam("withTotal") + .addQueryParams(withTotal.stream() + .map(s -> new ParamEntry<>("withTotal", s.toString())) + .collect(Collectors.toList())); + } + + /** + * add additional withTotal query parameters + * @param withTotal values to be added + * @param value type + * @return ByProjectKeyProductSelectionsByIDProductsGet + */ + public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Collection withTotal) { + return copy().addQueryParams( + withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); + } + /** * set expand with the specified value * @param expand value to be set @@ -447,86 +527,6 @@ public ByProjectKeyProductSelectionsByIDProductsGet addOffset(final Col offset.stream().map(s -> new ParamEntry<>("offset", s.toString())).collect(Collectors.toList())); } - /** - * set withTotal with the specified value - * @param withTotal value to be set - * @param value type - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final TValue withTotal) { - return copy().withQueryParam("withTotal", withTotal); - } - - /** - * add additional withTotal query parameter - * @param withTotal value to be added - * @param value type - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final TValue withTotal) { - return copy().addQueryParam("withTotal", withTotal); - } - - /** - * set withTotal with the specified value - * @param supplier supplier for the value to be set - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Supplier supplier) { - return copy().withQueryParam("withTotal", supplier.get()); - } - - /** - * add additional withTotal query parameter - * @param supplier supplier for the value to be added - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Supplier supplier) { - return copy().addQueryParam("withTotal", supplier.get()); - } - - /** - * set withTotal with the specified value - * @param op builder for the value to be set - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Function op) { - return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * add additional withTotal query parameter - * @param op builder for the value to be added - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Function op) { - return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * set withTotal with the specified values - * @param withTotal values to be set - * @param value type - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet withWithTotal(final Collection withTotal) { - return copy().withoutQueryParam("withTotal") - .addQueryParams(withTotal.stream() - .map(s -> new ParamEntry<>("withTotal", s.toString())) - .collect(Collectors.toList())); - } - - /** - * add additional withTotal query parameters - * @param withTotal values to be added - * @param value type - * @return ByProjectKeyProductSelectionsByIDProductsGet - */ - public ByProjectKeyProductSelectionsByIDProductsGet addWithTotal(final Collection withTotal) { - return copy().addQueryParams( - withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); - } - /** * set sort with the specified value * @param sort value to be set diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsKeyByKeyProductsGet.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsKeyByKeyProductsGet.java index 055ba00d400..b92e6bc1bd4 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsKeyByKeyProductsGet.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductSelectionsKeyByKeyProductsGet.java @@ -103,6 +103,10 @@ public List getWhere() { return this.getQueryParam("where"); } + public List getWithTotal() { + return this.getQueryParam("withTotal"); + } + public List getExpand() { return this.getQueryParam("expand"); } @@ -115,10 +119,6 @@ public List getOffset() { return this.getQueryParam("offset"); } - public List getWithTotal() { - return this.getQueryParam("withTotal"); - } - public List getSort() { return this.getQueryParam("sort"); } @@ -210,6 +210,88 @@ public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWhere(final where.stream().map(s -> new ParamEntry<>("where", s.toString())).collect(Collectors.toList())); } + /** + * set withTotal with the specified value + * @param withTotal value to be set + * @param value type + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final TValue withTotal) { + return copy().withQueryParam("withTotal", withTotal); + } + + /** + * add additional withTotal query parameter + * @param withTotal value to be added + * @param value type + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final TValue withTotal) { + return copy().addQueryParam("withTotal", withTotal); + } + + /** + * set withTotal with the specified value + * @param supplier supplier for the value to be set + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final Supplier supplier) { + return copy().withQueryParam("withTotal", supplier.get()); + } + + /** + * add additional withTotal query parameter + * @param supplier supplier for the value to be added + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final Supplier supplier) { + return copy().addQueryParam("withTotal", supplier.get()); + } + + /** + * set withTotal with the specified value + * @param op builder for the value to be set + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal( + final Function op) { + return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * add additional withTotal query parameter + * @param op builder for the value to be added + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal( + final Function op) { + return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * set withTotal with the specified values + * @param withTotal values to be set + * @param value type + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final Collection withTotal) { + return copy().withoutQueryParam("withTotal") + .addQueryParams(withTotal.stream() + .map(s -> new ParamEntry<>("withTotal", s.toString())) + .collect(Collectors.toList())); + } + + /** + * add additional withTotal query parameters + * @param withTotal values to be added + * @param value type + * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet + */ + public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final Collection withTotal) { + return copy().addQueryParams( + withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); + } + /** * set expand with the specified value * @param expand value to be set @@ -449,88 +531,6 @@ public ByProjectKeyProductSelectionsKeyByKeyProductsGet addOffset(final offset.stream().map(s -> new ParamEntry<>("offset", s.toString())).collect(Collectors.toList())); } - /** - * set withTotal with the specified value - * @param withTotal value to be set - * @param value type - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final TValue withTotal) { - return copy().withQueryParam("withTotal", withTotal); - } - - /** - * add additional withTotal query parameter - * @param withTotal value to be added - * @param value type - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final TValue withTotal) { - return copy().addQueryParam("withTotal", withTotal); - } - - /** - * set withTotal with the specified value - * @param supplier supplier for the value to be set - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final Supplier supplier) { - return copy().withQueryParam("withTotal", supplier.get()); - } - - /** - * add additional withTotal query parameter - * @param supplier supplier for the value to be added - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final Supplier supplier) { - return copy().addQueryParam("withTotal", supplier.get()); - } - - /** - * set withTotal with the specified value - * @param op builder for the value to be set - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal( - final Function op) { - return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * add additional withTotal query parameter - * @param op builder for the value to be added - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal( - final Function op) { - return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * set withTotal with the specified values - * @param withTotal values to be set - * @param value type - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet withWithTotal(final Collection withTotal) { - return copy().withoutQueryParam("withTotal") - .addQueryParams(withTotal.stream() - .map(s -> new ParamEntry<>("withTotal", s.toString())) - .collect(Collectors.toList())); - } - - /** - * add additional withTotal query parameters - * @param withTotal values to be added - * @param value type - * @return ByProjectKeyProductSelectionsKeyByKeyProductsGet - */ - public ByProjectKeyProductSelectionsKeyByKeyProductsGet addWithTotal(final Collection withTotal) { - return copy().addQueryParams( - withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); - } - /** * set sort with the specified value * @param sort value to be set diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductTailoringGet.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductTailoringGet.java index 0422018d25b..ac7c3f39331 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductTailoringGet.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductTailoringGet.java @@ -88,6 +88,10 @@ public String getProjectKey() { return this.projectKey; } + public List getWithTotal() { + return this.getQueryParam("withTotal"); + } + public List getExpand() { return this.getQueryParam("expand"); } @@ -104,10 +108,6 @@ public List getOffset() { return this.getQueryParam("offset"); } - public List getWithTotal() { - return this.getQueryParam("withTotal"); - } - public List getWhere() { return this.getQueryParam("where"); } @@ -116,6 +116,86 @@ public void setProjectKey(final String projectKey) { this.projectKey = projectKey; } + /** + * set withTotal with the specified value + * @param withTotal value to be set + * @param value type + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet withWithTotal(final TValue withTotal) { + return copy().withQueryParam("withTotal", withTotal); + } + + /** + * add additional withTotal query parameter + * @param withTotal value to be added + * @param value type + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet addWithTotal(final TValue withTotal) { + return copy().addQueryParam("withTotal", withTotal); + } + + /** + * set withTotal with the specified value + * @param supplier supplier for the value to be set + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet withWithTotal(final Supplier supplier) { + return copy().withQueryParam("withTotal", supplier.get()); + } + + /** + * add additional withTotal query parameter + * @param supplier supplier for the value to be added + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet addWithTotal(final Supplier supplier) { + return copy().addQueryParam("withTotal", supplier.get()); + } + + /** + * set withTotal with the specified value + * @param op builder for the value to be set + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet withWithTotal(final Function op) { + return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * add additional withTotal query parameter + * @param op builder for the value to be added + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet addWithTotal(final Function op) { + return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * set withTotal with the specified values + * @param withTotal values to be set + * @param value type + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet withWithTotal(final Collection withTotal) { + return copy().withoutQueryParam("withTotal") + .addQueryParams(withTotal.stream() + .map(s -> new ParamEntry<>("withTotal", s.toString())) + .collect(Collectors.toList())); + } + + /** + * add additional withTotal query parameters + * @param withTotal values to be added + * @param value type + * @return ByProjectKeyProductTailoringGet + */ + public ByProjectKeyProductTailoringGet addWithTotal(final Collection withTotal) { + return copy().addQueryParams( + withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); + } + /** * set expand with the specified value * @param expand value to be set @@ -432,86 +512,6 @@ public ByProjectKeyProductTailoringGet addOffset(final Collection new ParamEntry<>("offset", s.toString())).collect(Collectors.toList())); } - /** - * set withTotal with the specified value - * @param withTotal value to be set - * @param value type - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet withWithTotal(final TValue withTotal) { - return copy().withQueryParam("withTotal", withTotal); - } - - /** - * add additional withTotal query parameter - * @param withTotal value to be added - * @param value type - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet addWithTotal(final TValue withTotal) { - return copy().addQueryParam("withTotal", withTotal); - } - - /** - * set withTotal with the specified value - * @param supplier supplier for the value to be set - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet withWithTotal(final Supplier supplier) { - return copy().withQueryParam("withTotal", supplier.get()); - } - - /** - * add additional withTotal query parameter - * @param supplier supplier for the value to be added - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet addWithTotal(final Supplier supplier) { - return copy().addQueryParam("withTotal", supplier.get()); - } - - /** - * set withTotal with the specified value - * @param op builder for the value to be set - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet withWithTotal(final Function op) { - return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * add additional withTotal query parameter - * @param op builder for the value to be added - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet addWithTotal(final Function op) { - return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * set withTotal with the specified values - * @param withTotal values to be set - * @param value type - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet withWithTotal(final Collection withTotal) { - return copy().withoutQueryParam("withTotal") - .addQueryParams(withTotal.stream() - .map(s -> new ParamEntry<>("withTotal", s.toString())) - .collect(Collectors.toList())); - } - - /** - * add additional withTotal query parameters - * @param withTotal values to be added - * @param value type - * @return ByProjectKeyProductTailoringGet - */ - public ByProjectKeyProductTailoringGet addWithTotal(final Collection withTotal) { - return copy().addQueryParams( - withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); - } - /** * set where with the specified value * @param where value to be set diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsByIDProductSelectionsGet.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsByIDProductSelectionsGet.java index b2852f3896c..829be279f93 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsByIDProductSelectionsGet.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsByIDProductSelectionsGet.java @@ -100,6 +100,10 @@ public String getID() { return this.ID; } + public List getWithTotal() { + return this.getQueryParam("withTotal"); + } + public List getExpand() { return this.getQueryParam("expand"); } @@ -116,10 +120,6 @@ public List getOffset() { return this.getQueryParam("offset"); } - public List getWithTotal() { - return this.getQueryParam("withTotal"); - } - public List getWhere() { return this.getQueryParam("where"); } @@ -132,6 +132,86 @@ public void setID(final String ID) { this.ID = ID; } + /** + * set withTotal with the specified value + * @param withTotal value to be set + * @param value type + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final TValue withTotal) { + return copy().withQueryParam("withTotal", withTotal); + } + + /** + * add additional withTotal query parameter + * @param withTotal value to be added + * @param value type + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final TValue withTotal) { + return copy().addQueryParam("withTotal", withTotal); + } + + /** + * set withTotal with the specified value + * @param supplier supplier for the value to be set + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Supplier supplier) { + return copy().withQueryParam("withTotal", supplier.get()); + } + + /** + * add additional withTotal query parameter + * @param supplier supplier for the value to be added + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Supplier supplier) { + return copy().addQueryParam("withTotal", supplier.get()); + } + + /** + * set withTotal with the specified value + * @param op builder for the value to be set + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Function op) { + return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * add additional withTotal query parameter + * @param op builder for the value to be added + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Function op) { + return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * set withTotal with the specified values + * @param withTotal values to be set + * @param value type + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Collection withTotal) { + return copy().withoutQueryParam("withTotal") + .addQueryParams(withTotal.stream() + .map(s -> new ParamEntry<>("withTotal", s.toString())) + .collect(Collectors.toList())); + } + + /** + * add additional withTotal query parameters + * @param withTotal values to be added + * @param value type + * @return ByProjectKeyProductsByIDProductSelectionsGet + */ + public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Collection withTotal) { + return copy().addQueryParams( + withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); + } + /** * set expand with the specified value * @param expand value to be set @@ -448,86 +528,6 @@ public ByProjectKeyProductsByIDProductSelectionsGet addOffset(final Col offset.stream().map(s -> new ParamEntry<>("offset", s.toString())).collect(Collectors.toList())); } - /** - * set withTotal with the specified value - * @param withTotal value to be set - * @param value type - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final TValue withTotal) { - return copy().withQueryParam("withTotal", withTotal); - } - - /** - * add additional withTotal query parameter - * @param withTotal value to be added - * @param value type - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final TValue withTotal) { - return copy().addQueryParam("withTotal", withTotal); - } - - /** - * set withTotal with the specified value - * @param supplier supplier for the value to be set - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Supplier supplier) { - return copy().withQueryParam("withTotal", supplier.get()); - } - - /** - * add additional withTotal query parameter - * @param supplier supplier for the value to be added - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Supplier supplier) { - return copy().addQueryParam("withTotal", supplier.get()); - } - - /** - * set withTotal with the specified value - * @param op builder for the value to be set - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Function op) { - return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * add additional withTotal query parameter - * @param op builder for the value to be added - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Function op) { - return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * set withTotal with the specified values - * @param withTotal values to be set - * @param value type - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet withWithTotal(final Collection withTotal) { - return copy().withoutQueryParam("withTotal") - .addQueryParams(withTotal.stream() - .map(s -> new ParamEntry<>("withTotal", s.toString())) - .collect(Collectors.toList())); - } - - /** - * add additional withTotal query parameters - * @param withTotal values to be added - * @param value type - * @return ByProjectKeyProductsByIDProductSelectionsGet - */ - public ByProjectKeyProductsByIDProductSelectionsGet addWithTotal(final Collection withTotal) { - return copy().addQueryParams( - withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); - } - /** * set where with the specified value * @param where value to be set diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsKeyByKeyProductSelectionsGet.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsKeyByKeyProductSelectionsGet.java index 2e36f87edef..2b8de32314d 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsKeyByKeyProductSelectionsGet.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyProductsKeyByKeyProductSelectionsGet.java @@ -100,6 +100,10 @@ public String getKey() { return this.key; } + public List getWithTotal() { + return this.getQueryParam("withTotal"); + } + public List getExpand() { return this.getQueryParam("expand"); } @@ -116,10 +120,6 @@ public List getOffset() { return this.getQueryParam("offset"); } - public List getWithTotal() { - return this.getQueryParam("withTotal"); - } - public List getWhere() { return this.getQueryParam("where"); } @@ -132,6 +132,88 @@ public void setKey(final String key) { this.key = key; } + /** + * set withTotal with the specified value + * @param withTotal value to be set + * @param value type + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final TValue withTotal) { + return copy().withQueryParam("withTotal", withTotal); + } + + /** + * add additional withTotal query parameter + * @param withTotal value to be added + * @param value type + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final TValue withTotal) { + return copy().addQueryParam("withTotal", withTotal); + } + + /** + * set withTotal with the specified value + * @param supplier supplier for the value to be set + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final Supplier supplier) { + return copy().withQueryParam("withTotal", supplier.get()); + } + + /** + * add additional withTotal query parameter + * @param supplier supplier for the value to be added + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final Supplier supplier) { + return copy().addQueryParam("withTotal", supplier.get()); + } + + /** + * set withTotal with the specified value + * @param op builder for the value to be set + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal( + final Function op) { + return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * add additional withTotal query parameter + * @param op builder for the value to be added + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal( + final Function op) { + return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); + } + + /** + * set withTotal with the specified values + * @param withTotal values to be set + * @param value type + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final Collection withTotal) { + return copy().withoutQueryParam("withTotal") + .addQueryParams(withTotal.stream() + .map(s -> new ParamEntry<>("withTotal", s.toString())) + .collect(Collectors.toList())); + } + + /** + * add additional withTotal query parameters + * @param withTotal values to be added + * @param value type + * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet + */ + public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final Collection withTotal) { + return copy().addQueryParams( + withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); + } + /** * set expand with the specified value * @param expand value to be set @@ -450,88 +532,6 @@ public ByProjectKeyProductsKeyByKeyProductSelectionsGet addOffset(final offset.stream().map(s -> new ParamEntry<>("offset", s.toString())).collect(Collectors.toList())); } - /** - * set withTotal with the specified value - * @param withTotal value to be set - * @param value type - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final TValue withTotal) { - return copy().withQueryParam("withTotal", withTotal); - } - - /** - * add additional withTotal query parameter - * @param withTotal value to be added - * @param value type - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final TValue withTotal) { - return copy().addQueryParam("withTotal", withTotal); - } - - /** - * set withTotal with the specified value - * @param supplier supplier for the value to be set - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final Supplier supplier) { - return copy().withQueryParam("withTotal", supplier.get()); - } - - /** - * add additional withTotal query parameter - * @param supplier supplier for the value to be added - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final Supplier supplier) { - return copy().addQueryParam("withTotal", supplier.get()); - } - - /** - * set withTotal with the specified value - * @param op builder for the value to be set - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal( - final Function op) { - return copy().withQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * add additional withTotal query parameter - * @param op builder for the value to be added - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal( - final Function op) { - return copy().addQueryParam("withTotal", op.apply(new StringBuilder())); - } - - /** - * set withTotal with the specified values - * @param withTotal values to be set - * @param value type - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet withWithTotal(final Collection withTotal) { - return copy().withoutQueryParam("withTotal") - .addQueryParams(withTotal.stream() - .map(s -> new ParamEntry<>("withTotal", s.toString())) - .collect(Collectors.toList())); - } - - /** - * add additional withTotal query parameters - * @param withTotal values to be added - * @param value type - * @return ByProjectKeyProductsKeyByKeyProductSelectionsGet - */ - public ByProjectKeyProductsKeyByKeyProductSelectionsGet addWithTotal(final Collection withTotal) { - return copy().addQueryParams( - withTotal.stream().map(s -> new ParamEntry<>("withTotal", s.toString())).collect(Collectors.toList())); - } - /** * set where with the specified value * @param where value to be set diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponse.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponse.java index 5d5d9ce5ad1..f059e737af9 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponse.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponse.java @@ -62,7 +62,7 @@ public interface AssignedProductSelectionPagedQueryResponse public Long getCount(); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ @@ -100,7 +100,7 @@ public interface AssignedProductSelectionPagedQueryResponse public void setCount(final Long count); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseBuilder.java index bcc518add96..e1e310785fe 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseBuilder.java @@ -73,7 +73,7 @@ public AssignedProductSelectionPagedQueryResponseBuilder count(final Long count) } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set * @return Builder */ @@ -204,7 +204,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseImpl.java index e8d5f8a54ce..507fc2c3da0 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/AssignedProductSelectionPagedQueryResponseImpl.java @@ -79,7 +79,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

*/ public Long getTotal() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponse.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponse.java index fbdf9bdbcca..862067702af 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponse.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponse.java @@ -62,7 +62,7 @@ public interface ProductSelectionPagedQueryResponse public Long getCount(); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ @@ -100,7 +100,7 @@ public interface ProductSelectionPagedQueryResponse public void setCount(final Long count); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseBuilder.java index 4096e3f7768..ee1af5d8896 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseBuilder.java @@ -72,7 +72,7 @@ public ProductSelectionPagedQueryResponseBuilder count(final Long count) { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set * @return Builder */ @@ -201,7 +201,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseImpl.java index 45f717c308b..070a2114dc2 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionPagedQueryResponseImpl.java @@ -78,7 +78,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

*/ public Long getTotal() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponse.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponse.java index 44b945dddc0..c9dc203692a 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponse.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponse.java @@ -62,7 +62,7 @@ public interface ProductSelectionProductPagedQueryResponse public Long getCount(); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ @@ -100,7 +100,7 @@ public interface ProductSelectionProductPagedQueryResponse public void setCount(final Long count); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseBuilder.java index 6272441a6fd..69b62a530d1 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseBuilder.java @@ -73,7 +73,7 @@ public ProductSelectionProductPagedQueryResponseBuilder count(final Long count) } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set * @return Builder */ @@ -204,7 +204,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseImpl.java index 439c8881b6e..d295b905a69 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductSelectionProductPagedQueryResponseImpl.java @@ -79,7 +79,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

*/ public Long getTotal() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponse.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponse.java index 626658aaf2c..a35bc663c7f 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponse.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponse.java @@ -62,7 +62,7 @@ public interface ProductsInStorePagedQueryResponse public Long getCount(); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ @@ -100,7 +100,7 @@ public interface ProductsInStorePagedQueryResponse public void setCount(final Long count); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseBuilder.java index 56a84fa793c..c276e130783 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseBuilder.java @@ -72,7 +72,7 @@ public ProductsInStorePagedQueryResponseBuilder count(final Long count) { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set * @return Builder */ @@ -205,7 +205,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseImpl.java index df38d8890a1..d2742062a85 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_selection/ProductsInStorePagedQueryResponseImpl.java @@ -78,7 +78,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. Unlike other endpoints, the Product Selection endpoint does not return this field by default. To get total, pass the query parameter withTotal set to true. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

*/ public Long getTotal() { diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponse.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponse.java index 77d368e8aed..ab38d208b33 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponse.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponse.java @@ -61,7 +61,7 @@ public interface ProductTailoringPagedQueryResponse { public Long getCount(); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ @@ -99,7 +99,7 @@ public interface ProductTailoringPagedQueryResponse { public void setCount(final Long count); /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseBuilder.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseBuilder.java index 8fb9be3594e..c5b9fc8270c 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseBuilder.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseBuilder.java @@ -72,7 +72,7 @@ public ProductTailoringPagedQueryResponseBuilder count(final Long count) { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @param total value to be set * @return Builder */ @@ -201,7 +201,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

* @return total */ diff --git a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseImpl.java b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseImpl.java index 90907ea6c6a..fc61a17ead6 100644 --- a/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseImpl.java +++ b/commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/product_tailoring/ProductTailoringPagedQueryResponseImpl.java @@ -78,7 +78,7 @@ public Long getCount() { } /** - *

Total number of results matching the query. This number is an estimation that is not strongly consistent. This field is returned by default. For improved performance, calculating this field can be deactivated by using the query parameter withTotal=false. When the results are filtered with a Query Predicate, total is subject to a limit.

+ *

Total number of results matching the query. Present only when the withTotal query parameter is set to true. This number is an estimation that is not strongly consistent. When the results are filtered with a Query Predicate, total is subject to a limit.

*/ public Long getTotal() { diff --git a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsByIDProductsTest.java b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsByIDProductsTest.java index 1d2aa7c27a3..66f1769b65d 100644 --- a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsByIDProductsTest.java +++ b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsByIDProductsTest.java @@ -79,36 +79,36 @@ public static Object[][] requestWithMethodParameters() { .withId("test_ID") .products() .get() - .withExpand("expand") + .withWithTotal(true) .createHttpRequest(), - "get", "test_projectKey/product-selections/test_ID/products?expand=expand", }, + "get", "test_projectKey/product-selections/test_ID/products?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withLimit(7) + .withExpand("expand") .createHttpRequest(), - "get", "test_projectKey/product-selections/test_ID/products?limit=7", }, + "get", "test_projectKey/product-selections/test_ID/products?expand=expand", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withOffset(3) + .withLimit(7) .createHttpRequest(), - "get", "test_projectKey/product-selections/test_ID/products?offset=3", }, + "get", "test_projectKey/product-selections/test_ID/products?limit=7", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withWithTotal(true) + .withOffset(3) .createHttpRequest(), - "get", "test_projectKey/product-selections/test_ID/products?withTotal=true", }, + "get", "test_projectKey/product-selections/test_ID/products?offset=3", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() @@ -140,25 +140,25 @@ public static Object[][] executeMethodParameters() { .withId("test_ID") .products() .get() - .withExpand("expand"), }, + .withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withLimit(7), }, + .withExpand("expand"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withOffset(3), }, + .withLimit(7), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") .products() .get() - .withWithTotal(true), }, + .withOffset(3), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withId("test_ID") diff --git a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsKeyByKeyProductsTest.java b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsKeyByKeyProductsTest.java index 98fda4fec2f..54f5a64753a 100644 --- a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsKeyByKeyProductsTest.java +++ b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductSelectionsKeyByKeyProductsTest.java @@ -79,36 +79,36 @@ public static Object[][] requestWithMethodParameters() { .withKey("test_key") .products() .get() - .withExpand("expand") + .withWithTotal(true) .createHttpRequest(), - "get", "test_projectKey/product-selections/key=test_key/products?expand=expand", }, + "get", "test_projectKey/product-selections/key=test_key/products?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withLimit(7) + .withExpand("expand") .createHttpRequest(), - "get", "test_projectKey/product-selections/key=test_key/products?limit=7", }, + "get", "test_projectKey/product-selections/key=test_key/products?expand=expand", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withOffset(3) + .withLimit(7) .createHttpRequest(), - "get", "test_projectKey/product-selections/key=test_key/products?offset=3", }, + "get", "test_projectKey/product-selections/key=test_key/products?limit=7", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withWithTotal(true) + .withOffset(3) .createHttpRequest(), - "get", "test_projectKey/product-selections/key=test_key/products?withTotal=true", }, + "get", "test_projectKey/product-selections/key=test_key/products?offset=3", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() @@ -142,25 +142,25 @@ public static Object[][] executeMethodParameters() { .withKey("test_key") .products() .get() - .withExpand("expand"), }, + .withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withLimit(7), }, + .withExpand("expand"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withOffset(3), }, + .withLimit(7), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") .products() .get() - .withWithTotal(true), }, + .withOffset(3), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productSelections() .withKey("test_key") diff --git a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductTailoringTest.java b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductTailoringTest.java index af17cbe850f..6a7b32c4527 100644 --- a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductTailoringTest.java +++ b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductTailoringTest.java @@ -64,6 +64,11 @@ public void executeClientException(HttpRequestCommand httpRequest) throws Exc @DataProvider public static Object[][] requestWithMethodParameters() { return new Object[][] { + new Object[] { apiRoot.withProjectKey("test_projectKey") + .productTailoring() + .get() + .withWithTotal(true) + .createHttpRequest(), "get", "test_projectKey/product-tailoring?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productTailoring() .get() @@ -84,11 +89,6 @@ public static Object[][] requestWithMethodParameters() { .get() .withOffset(3) .createHttpRequest(), "get", "test_projectKey/product-tailoring?offset=3", }, - new Object[] { apiRoot.withProjectKey("test_projectKey") - .productTailoring() - .get() - .withWithTotal(true) - .createHttpRequest(), "get", "test_projectKey/product-tailoring?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productTailoring() .get() @@ -124,13 +124,13 @@ public static Object[][] requestWithMethodParameters() { @DataProvider public static Object[][] executeMethodParameters() { return new Object[][] { + new Object[] { + apiRoot.withProjectKey("test_projectKey").productTailoring().get().withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey").productTailoring().get().withExpand("expand"), }, new Object[] { apiRoot.withProjectKey("test_projectKey").productTailoring().get().withSort("sort"), }, new Object[] { apiRoot.withProjectKey("test_projectKey").productTailoring().get().withLimit(7), }, new Object[] { apiRoot.withProjectKey("test_projectKey").productTailoring().get().withOffset(3), }, - new Object[] { - apiRoot.withProjectKey("test_projectKey").productTailoring().get().withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey").productTailoring().get().withWhere("where"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .productTailoring() diff --git a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsByIDProductSelectionsTest.java b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsByIDProductSelectionsTest.java index 06aa34936e7..54a76b9cd1a 100644 --- a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsByIDProductSelectionsTest.java +++ b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsByIDProductSelectionsTest.java @@ -64,6 +64,15 @@ public void executeClientException(HttpRequestCommand httpRequest) throws Exc @DataProvider public static Object[][] requestWithMethodParameters() { return new Object[][] { + new Object[] { + apiRoot.withProjectKey("test_projectKey") + .products() + .withId("test_ID") + .productSelections() + .get() + .withWithTotal(true) + .createHttpRequest(), + "get", "test_projectKey/products/test_ID/product-selections?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() @@ -100,15 +109,6 @@ public static Object[][] requestWithMethodParameters() { .withOffset(3) .createHttpRequest(), "get", "test_projectKey/products/test_ID/product-selections?offset=3", }, - new Object[] { - apiRoot.withProjectKey("test_projectKey") - .products() - .withId("test_ID") - .productSelections() - .get() - .withWithTotal(true) - .createHttpRequest(), - "get", "test_projectKey/products/test_ID/product-selections?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() @@ -143,31 +143,31 @@ public static Object[][] executeMethodParameters() { .withId("test_ID") .productSelections() .get() - .withExpand("expand"), }, + .withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withId("test_ID") .productSelections() .get() - .withSort("sort"), }, + .withExpand("expand"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withId("test_ID") .productSelections() .get() - .withLimit(7), }, + .withSort("sort"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withId("test_ID") .productSelections() .get() - .withOffset(3), }, + .withLimit(7), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withId("test_ID") .productSelections() .get() - .withWithTotal(true), }, + .withOffset(3), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withId("test_ID") diff --git a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsKeyByKeyProductSelectionsTest.java b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsKeyByKeyProductSelectionsTest.java index 8a392c3336c..402e6ae65d9 100644 --- a/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsKeyByKeyProductSelectionsTest.java +++ b/commercetools/commercetools-sdk-java-api/src/test/java-generated/com/commercetools/api/client/resource/ByProjectKeyProductsKeyByKeyProductSelectionsTest.java @@ -64,6 +64,15 @@ public void executeClientException(HttpRequestCommand httpRequest) throws Exc @DataProvider public static Object[][] requestWithMethodParameters() { return new Object[][] { + new Object[] { + apiRoot.withProjectKey("test_projectKey") + .products() + .withKey("test_key") + .productSelections() + .get() + .withWithTotal(true) + .createHttpRequest(), + "get", "test_projectKey/products/key=test_key/product-selections?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() @@ -100,15 +109,6 @@ public static Object[][] requestWithMethodParameters() { .withOffset(3) .createHttpRequest(), "get", "test_projectKey/products/key=test_key/product-selections?offset=3", }, - new Object[] { - apiRoot.withProjectKey("test_projectKey") - .products() - .withKey("test_key") - .productSelections() - .get() - .withWithTotal(true) - .createHttpRequest(), - "get", "test_projectKey/products/key=test_key/product-selections?withTotal=true", }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() @@ -145,31 +145,31 @@ public static Object[][] executeMethodParameters() { .withKey("test_key") .productSelections() .get() - .withExpand("expand"), }, + .withWithTotal(true), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withKey("test_key") .productSelections() .get() - .withSort("sort"), }, + .withExpand("expand"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withKey("test_key") .productSelections() .get() - .withLimit(7), }, + .withSort("sort"), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withKey("test_key") .productSelections() .get() - .withOffset(3), }, + .withLimit(7), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withKey("test_key") .productSelections() .get() - .withWithTotal(true), }, + .withOffset(3), }, new Object[] { apiRoot.withProjectKey("test_projectKey") .products() .withKey("test_key") diff --git a/reference.txt b/reference.txt new file mode 100644 index 00000000000..a53e146355b --- /dev/null +++ b/reference.txt @@ -0,0 +1 @@ +b5b44c610de8554eb3b2cf85b71006611d0c180a diff --git a/references.txt b/references.txt index 917fc2ac2ed..0a0b8c2f024 100644 --- a/references.txt +++ b/references.txt @@ -387,3 +387,4 @@ a4fe92e28e967d91ddaad6750b6434a65949b840 ffa8644c871728467258443ffb54707031865c44 a7aa20c17dc375042673f3de785e65cda595960c 9e27b6b4195fb7839b6c87f31a988d1612f327d6 +7e0d07d02382161fc6d401b83e03ad2754afbc9b From 384fa2dc40bee09bd37efbaeade8c2b72e3759f6 Mon Sep 17 00:00:00 2001 From: "ct-sdks[bot]" <153784748+ct-sdks[bot]@users.noreply.github.com> Date: Fri, 21 Mar 2025 12:05:17 +0000 Subject: [PATCH 2/2] TASK: Updating license information --- .../index.json | 12 +- .../index.json | 32 +- licenses/commercetools-graphql-api/index.json | 12 +- licenses/commercetools-http-client/index.json | 32 +- .../commercetools-javanet-client/index.json | 12 +- .../index.json | 16 +- .../index.json | 14 +- .../index.json | 16 +- .../commercetools-okhttp-client3/index.json | 12 +- .../commercetools-okhttp-client4/index.json | 12 +- .../index.json | 52 +-- .../commercetools-sdk-compat-v1/index.json | 32 +- .../commercetools-sdk-java-api/index.json | 12 +- .../commercetools-sdk-java-history/index.json | 12 +- .../index.json | 12 +- licenses/index.json | 300 ++---------------- licenses/rmf-java-base/index.json | 12 +- 17 files changed, 184 insertions(+), 418 deletions(-) diff --git a/licenses/commercetools-apachehttp-client/index.json b/licenses/commercetools-apachehttp-client/index.json index d72e11884c6..f78af155def 100644 --- a/licenses/commercetools-apachehttp-client/index.json +++ b/licenses/commercetools-apachehttp-client/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -172,14 +172,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-async-http-client/index.json b/licenses/commercetools-async-http-client/index.json index 22aa0242d80..0cc868cc462 100644 --- a/licenses/commercetools-async-http-client/index.json +++ b/licenses/commercetools-async-http-client/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -141,7 +141,7 @@ }, { "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -154,7 +154,7 @@ }, { "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -167,7 +167,7 @@ }, { "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -180,7 +180,7 @@ }, { "moduleName": "io.netty:netty-codec-socks", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -193,7 +193,7 @@ }, { "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -206,7 +206,7 @@ }, { "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -219,7 +219,7 @@ }, { "moduleName": "io.netty:netty-handler-proxy", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -232,7 +232,7 @@ }, { "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -245,7 +245,7 @@ }, { "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -284,7 +284,7 @@ }, { "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -366,14 +366,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-graphql-api/index.json b/licenses/commercetools-graphql-api/index.json index 28c4456472a..9e1126895b5 100644 --- a/licenses/commercetools-graphql-api/index.json +++ b/licenses/commercetools-graphql-api/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -283,14 +283,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-http-client/index.json b/licenses/commercetools-http-client/index.json index 22aa0242d80..0cc868cc462 100644 --- a/licenses/commercetools-http-client/index.json +++ b/licenses/commercetools-http-client/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -141,7 +141,7 @@ }, { "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -154,7 +154,7 @@ }, { "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -167,7 +167,7 @@ }, { "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -180,7 +180,7 @@ }, { "moduleName": "io.netty:netty-codec-socks", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -193,7 +193,7 @@ }, { "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -206,7 +206,7 @@ }, { "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -219,7 +219,7 @@ }, { "moduleName": "io.netty:netty-handler-proxy", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -232,7 +232,7 @@ }, { "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -245,7 +245,7 @@ }, { "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -284,7 +284,7 @@ }, { "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -366,14 +366,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-javanet-client/index.json b/licenses/commercetools-javanet-client/index.json index ced29304eb3..60b6b659303 100644 --- a/licenses/commercetools-javanet-client/index.json +++ b/licenses/commercetools-javanet-client/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -120,14 +120,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-monitoring-datadog/index.json b/licenses/commercetools-monitoring-datadog/index.json index 2bb1e57f9ca..ecfe68c22aa 100644 --- a/licenses/commercetools-monitoring-datadog/index.json +++ b/licenses/commercetools-monitoring-datadog/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.datadoghq:datadog-api-client", - "moduleVersion": "2.31.0", + "moduleVersion": "2.33.1", "moduleUrls": [ "https://github.com/DataDog/datadog-api-client-java" ], @@ -32,7 +32,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -45,7 +45,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -58,7 +58,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -71,7 +71,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -84,7 +84,7 @@ }, { "moduleName": "com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-base" ], @@ -1045,14 +1045,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-monitoring-newrelic/index.json b/licenses/commercetools-monitoring-newrelic/index.json index 11ded533729..2248086f096 100644 --- a/licenses/commercetools-monitoring-newrelic/index.json +++ b/licenses/commercetools-monitoring-newrelic/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -67,7 +67,7 @@ }, { "moduleName": "com.newrelic.agent.java:newrelic-api", - "moduleVersion": "8.18.0", + "moduleVersion": "8.19.0", "moduleUrls": [ "https://github.com/newrelic/newrelic-java-agent" ], @@ -120,14 +120,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-monitoring-opentelemetry/index.json b/licenses/commercetools-monitoring-opentelemetry/index.json index 957e3ebc3d2..52b6bed2958 100644 --- a/licenses/commercetools-monitoring-opentelemetry/index.json +++ b/licenses/commercetools-monitoring-opentelemetry/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -94,7 +94,7 @@ }, { "moduleName": "io.opentelemetry:opentelemetry-api", - "moduleVersion": "1.46.0", + "moduleVersion": "1.48.0", "moduleUrls": [ "https://github.com/open-telemetry/opentelemetry-java" ], @@ -107,7 +107,7 @@ }, { "moduleName": "io.opentelemetry:opentelemetry-context", - "moduleVersion": "1.46.0", + "moduleVersion": "1.48.0", "moduleUrls": [ "https://github.com/open-telemetry/opentelemetry-java" ], @@ -133,14 +133,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-okhttp-client3/index.json b/licenses/commercetools-okhttp-client3/index.json index 8919dad4ed6..365c9186428 100644 --- a/licenses/commercetools-okhttp-client3/index.json +++ b/licenses/commercetools-okhttp-client3/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -182,14 +182,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-okhttp-client4/index.json b/licenses/commercetools-okhttp-client4/index.json index 5a4e10f8a92..b3617f8d6f1 100644 --- a/licenses/commercetools-okhttp-client4/index.json +++ b/licenses/commercetools-okhttp-client4/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -211,14 +211,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-reactornetty-client/index.json b/licenses/commercetools-reactornetty-client/index.json index 44376196b66..aada023dfc8 100644 --- a/licenses/commercetools-reactornetty-client/index.json +++ b/licenses/commercetools-reactornetty-client/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -94,7 +94,7 @@ }, { "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -107,7 +107,7 @@ }, { "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -120,7 +120,7 @@ }, { "moduleName": "io.netty:netty-codec-dns", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -133,7 +133,7 @@ }, { "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -146,7 +146,7 @@ }, { "moduleName": "io.netty:netty-codec-http2", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -159,7 +159,7 @@ }, { "moduleName": "io.netty:netty-codec-socks", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -172,7 +172,7 @@ }, { "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -185,7 +185,7 @@ }, { "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -198,7 +198,7 @@ }, { "moduleName": "io.netty:netty-handler-proxy", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -211,7 +211,7 @@ }, { "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -224,7 +224,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -237,7 +237,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns-classes-macos", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -250,7 +250,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns-native-macos", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -263,7 +263,7 @@ }, { "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -276,7 +276,7 @@ }, { "moduleName": "io.netty:netty-transport-classes-epoll", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -289,7 +289,7 @@ }, { "moduleName": "io.netty:netty-transport-native-epoll", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -302,7 +302,7 @@ }, { "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -315,7 +315,7 @@ }, { "moduleName": "io.projectreactor.netty:reactor-netty-core", - "moduleVersion": "1.2.2", + "moduleVersion": "1.2.4", "moduleUrls": [ "https://github.com/reactor/reactor-netty" ], @@ -328,7 +328,7 @@ }, { "moduleName": "io.projectreactor.netty:reactor-netty-http", - "moduleVersion": "1.2.2", + "moduleVersion": "1.2.4", "moduleUrls": [ "https://github.com/reactor/reactor-netty" ], @@ -341,7 +341,7 @@ }, { "moduleName": "io.projectreactor:reactor-core", - "moduleVersion": "3.7.2", + "moduleVersion": "3.7.4", "moduleUrls": [ "https://github.com/reactor/reactor-core" ], @@ -403,14 +403,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-sdk-compat-v1/index.json b/licenses/commercetools-sdk-compat-v1/index.json index cf0fdd9c832..f3211463252 100644 --- a/licenses/commercetools-sdk-compat-v1/index.json +++ b/licenses/commercetools-sdk-compat-v1/index.json @@ -72,7 +72,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -85,7 +85,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -98,7 +98,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -111,7 +111,7 @@ }, { "moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-dataformats-binary" ], @@ -124,7 +124,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -137,7 +137,7 @@ }, { "moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names" ], @@ -243,7 +243,7 @@ }, { "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -256,7 +256,7 @@ }, { "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -269,7 +269,7 @@ }, { "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -282,7 +282,7 @@ }, { "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -295,7 +295,7 @@ }, { "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -308,7 +308,7 @@ }, { "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -321,7 +321,7 @@ }, { "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -347,7 +347,7 @@ }, { "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -671,14 +671,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-sdk-java-api/index.json b/licenses/commercetools-sdk-java-api/index.json index 44436aeb370..ba744206b98 100644 --- a/licenses/commercetools-sdk-java-api/index.json +++ b/licenses/commercetools-sdk-java-api/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -179,14 +179,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-sdk-java-history/index.json b/licenses/commercetools-sdk-java-history/index.json index d43ada6c4c2..b04bab874c6 100644 --- a/licenses/commercetools-sdk-java-history/index.json +++ b/licenses/commercetools-sdk-java-history/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -129,14 +129,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/commercetools-sdk-java-importapi/index.json b/licenses/commercetools-sdk-java-importapi/index.json index d43ada6c4c2..b04bab874c6 100644 --- a/licenses/commercetools-sdk-java-importapi/index.json +++ b/licenses/commercetools-sdk-java-importapi/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -129,14 +129,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/index.json b/licenses/index.json index ceef7093d80..b8a5f4ac024 100644 --- a/licenses/index.json +++ b/licenses/index.json @@ -72,7 +72,7 @@ }, { "moduleName": "com.datadoghq:datadog-api-client", - "moduleVersion": "2.31.0", + "moduleVersion": "2.33.1", "moduleUrls": [ "https://github.com/DataDog/datadog-api-client-java" ], @@ -102,7 +102,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -115,7 +115,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -128,7 +128,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -141,7 +141,7 @@ }, { "moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-dataformats-binary" ], @@ -154,7 +154,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -167,7 +167,7 @@ }, { "moduleName": "com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-base" ], @@ -180,7 +180,7 @@ }, { "moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names" ], @@ -404,7 +404,7 @@ }, { "moduleName": "com.newrelic.agent.java:newrelic-api", - "moduleVersion": "8.18.0", + "moduleVersion": "8.19.0", "moduleUrls": [ "https://github.com/newrelic/newrelic-java-agent" ], @@ -592,33 +592,7 @@ }, { "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-buffer", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -631,33 +605,7 @@ }, { "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-codec", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -670,7 +618,7 @@ }, { "moduleName": "io.netty:netty-codec-dns", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -683,33 +631,7 @@ }, { "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-codec-http", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -722,20 +644,7 @@ }, { "moduleName": "io.netty:netty-codec-http2", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-codec-socks", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -748,20 +657,7 @@ }, { "moduleName": "io.netty:netty-codec-socks", - "moduleVersion": "4.1.118.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -774,46 +670,7 @@ }, { "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-common", - "moduleVersion": "4.1.118.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -826,7 +683,7 @@ }, { "moduleName": "io.netty:netty-handler", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -839,20 +696,7 @@ }, { "moduleName": "io.netty:netty-handler-proxy", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-handler-proxy", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -865,33 +709,7 @@ }, { "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-resolver", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -904,7 +722,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -917,7 +735,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns-classes-macos", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -930,33 +748,7 @@ }, { "moduleName": "io.netty:netty-resolver-dns-native-macos", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.117.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -969,7 +761,7 @@ }, { "moduleName": "io.netty:netty-transport", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -982,7 +774,7 @@ }, { "moduleName": "io.netty:netty-transport-classes-epoll", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -1008,7 +800,7 @@ }, { "moduleName": "io.netty:netty-transport-native-epoll", - "moduleVersion": "4.1.116.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -1047,33 +839,7 @@ }, { "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.116.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.117.Final", - "moduleUrls": [ - "https://netty.io/" - ], - "moduleLicenses": [ - { - "moduleLicense": "Apache License, Version 2.0", - "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" - } - ] - }, - { - "moduleName": "io.netty:netty-transport-native-unix-common", - "moduleVersion": "4.1.118.Final", + "moduleVersion": "4.1.119.Final", "moduleUrls": [ "https://netty.io/" ], @@ -1086,7 +852,7 @@ }, { "moduleName": "io.opentelemetry:opentelemetry-api", - "moduleVersion": "1.46.0", + "moduleVersion": "1.48.0", "moduleUrls": [ "https://github.com/open-telemetry/opentelemetry-java" ], @@ -1099,7 +865,7 @@ }, { "moduleName": "io.opentelemetry:opentelemetry-context", - "moduleVersion": "1.46.0", + "moduleVersion": "1.48.0", "moduleUrls": [ "https://github.com/open-telemetry/opentelemetry-java" ], @@ -1112,7 +878,7 @@ }, { "moduleName": "io.projectreactor.netty:reactor-netty-core", - "moduleVersion": "1.2.2", + "moduleVersion": "1.2.4", "moduleUrls": [ "https://github.com/reactor/reactor-netty" ], @@ -1125,7 +891,7 @@ }, { "moduleName": "io.projectreactor.netty:reactor-netty-http", - "moduleVersion": "1.2.2", + "moduleVersion": "1.2.4", "moduleUrls": [ "https://github.com/reactor/reactor-netty" ], @@ -1138,7 +904,7 @@ }, { "moduleName": "io.projectreactor:reactor-core", - "moduleVersion": "3.7.2", + "moduleVersion": "3.7.4", "moduleUrls": [ "https://github.com/reactor/reactor-core" ], @@ -2358,14 +2124,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License", diff --git a/licenses/rmf-java-base/index.json b/licenses/rmf-java-base/index.json index a7ade017ca5..44d328e5e3b 100644 --- a/licenses/rmf-java-base/index.json +++ b/licenses/rmf-java-base/index.json @@ -2,7 +2,7 @@ "dependencies": [ { "moduleName": "com.fasterxml.jackson.core:jackson-annotations", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -15,7 +15,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-core", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-core" ], @@ -28,7 +28,7 @@ }, { "moduleName": "com.fasterxml.jackson.core:jackson-databind", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson" ], @@ -41,7 +41,7 @@ }, { "moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", - "moduleVersion": "2.18.2", + "moduleVersion": "2.18.3", "moduleUrls": [ "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" ], @@ -107,14 +107,14 @@ }, { "moduleName": "org.slf4j:slf4j-api", - "moduleVersion": "2.0.16", + "moduleVersion": "2.0.17", "moduleUrls": [ "http://www.slf4j.org" ], "moduleLicenses": [ { "moduleLicense": null, - "moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php" + "moduleLicenseUrl": "https://opensource.org/license/mit" }, { "moduleLicense": "MIT License",