Skip to content

Commit 8fed7d7

Browse files
committed
build(codegen): updating SDK
1 parent 75ae57f commit 8fed7d7

10 files changed

+13
-12
lines changed

lib/commercetools-api/src/Models/ProductType/AttributeDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function getInputTip();
8080
public function getInputHint();
8181

8282
/**
83-
* <p>If <code>true</code>, the Attribute's values are available for the <a href="/../api/projects/products-search">Product Projections Search API</a> for use in full-text search queries, filters, and facets.</p>
83+
* <p>If <code>true</code>, the Attribute's values are available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API for use in full-text search queries, filters, and facets.</p>
8484
* <p>Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
8585
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
8686
* This constraint is enforced at both <a href="ctp:api:endpoint:/{projectKey}/products:POST">Product creation</a> and <a href="/../api/projects/products#update-product">Product update</a>.

lib/commercetools-api/src/Models/ProductType/AttributeDefinitionBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function getInputHint()
148148
}
149149

150150
/**
151-
* <p>If <code>true</code>, the Attribute's values are available for the <a href="/../api/projects/products-search">Product Projections Search API</a> for use in full-text search queries, filters, and facets.</p>
151+
* <p>If <code>true</code>, the Attribute's values are available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API for use in full-text search queries, filters, and facets.</p>
152152
* <p>Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
153153
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
154154
* This constraint is enforced at both <a href="ctp:api:endpoint:/{projectKey}/products:POST">Product creation</a> and <a href="/../api/projects/products#update-product">Product update</a>.

lib/commercetools-api/src/Models/ProductType/AttributeDefinitionDraft.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface AttributeDefinitionDraft extends JsonObject
3333
public function getType();
3434

3535
/**
36-
* <p>User-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
36+
* <p>User-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
3737
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
3838
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
3939
*
@@ -83,7 +83,7 @@ public function getInputTip();
8383
public function getInputHint();
8484

8585
/**
86-
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projections Search API</a> and can be used in full-text search queries, filters, and facets.
86+
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API and can be used in full-text search queries, filters, and facets.
8787
* Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
8888
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
8989
* This constraint is enforced at both Product creation and Product update.

lib/commercetools-api/src/Models/ProductType/AttributeDefinitionDraftBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function getType()
8383
}
8484

8585
/**
86-
* <p>User-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
86+
* <p>User-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
8787
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
8888
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
8989
*
@@ -151,7 +151,7 @@ public function getInputHint()
151151
}
152152

153153
/**
154-
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projections Search API</a> and can be used in full-text search queries, filters, and facets.
154+
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API and can be used in full-text search queries, filters, and facets.
155155
* Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
156156
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
157157
* This constraint is enforced at both Product creation and Product update.

lib/commercetools-api/src/Models/ProductType/AttributeDefinitionDraftModel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function getType()
116116
}
117117

118118
/**
119-
* <p>User-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
119+
* <p>User-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
120120
* <p>When using the same <code>name</code> for an Attribute in multiple ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes, else an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
121121
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> Type and sets thereof.</p>
122122
*
@@ -240,7 +240,7 @@ public function getInputHint()
240240
}
241241

242242
/**
243-
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projections Search API</a> and can be used in full-text search queries, filters, and facets.
243+
* <p>Set to <code>true</code> if the Attribute's values should be available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API and can be used in full-text search queries, filters, and facets.
244244
* Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
245245
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
246246
* This constraint is enforced at both Product creation and Product update.

lib/commercetools-api/src/Models/ProductType/AttributeDefinitionModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public function getInputHint()
237237
}
238238

239239
/**
240-
* <p>If <code>true</code>, the Attribute's values are available for the <a href="/../api/projects/products-search">Product Projections Search API</a> for use in full-text search queries, filters, and facets.</p>
240+
* <p>If <code>true</code>, the Attribute's values are available in the <a href="/../api/projects/products-search">Product Projection Search</a> or the <a href="/../api/projects/product-search">Product Search</a> API for use in full-text search queries, filters, and facets.</p>
241241
* <p>Which exact features are available with this flag depends on the specific <a href="ctp:api:type:AttributeType">AttributeType</a>.
242242
* The maximum size of a searchable field is <strong>restricted</strong> by the <a href="/../api/limits#field-content-size">Field content size limit</a>.
243243
* This constraint is enforced at both <a href="ctp:api:endpoint:/{projectKey}/products:POST">Product creation</a> and <a href="/../api/projects/products#update-product">Product update</a>.

lib/commercetools-api/src/Models/ProductType/ProductTypeChangeAttributeNameAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface ProductTypeChangeAttributeNameAction extends ProductTypeUpdateAction
2525
public function getAttributeName();
2626

2727
/**
28-
* <p>New user-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
28+
* <p>New user-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
2929
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
3030
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
3131
*

lib/commercetools-api/src/Models/ProductType/ProductTypeChangeAttributeNameActionBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getAttributeName()
4444
}
4545

4646
/**
47-
* <p>New user-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
47+
* <p>New user-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
4848
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
4949
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
5050
*

lib/commercetools-api/src/Models/ProductType/ProductTypeChangeAttributeNameActionModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function getAttributeName()
9191
}
9292

9393
/**
94-
* <p>New user-defined name of the Attribute that is unique with the <a href="ctp:api:type:Project">Project</a>.</p>
94+
* <p>New user-defined name of the Attribute that is unique to the <a href="ctp:api:type:Project">Project</a>.</p>
9595
* <p>When using the same <code>name</code> for an Attribute in two or more ProductTypes, all fields of the AttributeDefinition of this Attribute must be the same across the ProductTypes. If not, an <a href="ctp:api:type:AttributeDefinitionAlreadyExistsError">AttributeDefinitionAlreadyExists</a> error is returned.
9696
* An exception to this are the values of an <code>enum</code> or <code>lenum</code> type and sets thereof.</p>
9797
*

references.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,3 +342,4 @@ df53588d26d7953dfdf44166866ca03045f0a70b
342342
55ee33c4d18af345c4e89be226286c56c187a878
343343
e5666d7956fd6de53e41f965b052896d2a2ddd9b
344344
98343f9a365a2f9d4db86190003d00b8682c71d9
345+
e8f731a742ca2997342b1b5f98121d86c8189a3b

0 commit comments

Comments
 (0)