@teemill/product-catalog 1.69.2 → 1.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/api.ts +18 -1687
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +19 -1688
- package/dist/api.js +1 -58
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +19 -1688
- package/dist/esm/api.js +1 -58
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/ApplicationPropertiesProperties.md +2 -0
- package/docs/CreateApplicationProperties.md +2 -0
- package/docs/CreateProduct.md +2 -0
- package/docs/CreateProductRequest.md +2 -0
- package/docs/ProductsApi.md +2 -2
- package/docs/TextApplicationProperties.md +2 -0
- package/index.ts +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**description** | **string** | Product description | [optional] [default to undefined]
|
|
11
11
|
**enabled** | **boolean** | Whether the product is enabled upon creation. | [optional] [default to undefined]
|
|
12
12
|
**slug** | **string** | A custom URL slug for the product. This must be unique for each product on the project. | [optional] [default to undefined]
|
|
13
|
+
**brand** | **string** | The brand of the product. | [optional] [default to undefined]
|
|
13
14
|
**seoMetadata** | [**UpdateProductsRequestProductsInnerSeoMetadata**](UpdateProductsRequestProductsInnerSeoMetadata.md) | | [optional] [default to undefined]
|
|
14
15
|
**targetSearchPhrase** | **string** | The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
15
16
|
**targetSearchPhraseSynonyms** | **Array<string>** | Synonyms for the target search phrase. **Note:** This field requires the website integration | [optional] [default to undefined]
|
|
@@ -40,6 +41,7 @@ const instance: CreateProductRequest = {
|
|
|
40
41
|
description,
|
|
41
42
|
enabled,
|
|
42
43
|
slug,
|
|
44
|
+
brand,
|
|
43
45
|
seoMetadata,
|
|
44
46
|
targetSearchPhrase,
|
|
45
47
|
targetSearchPhraseSynonyms,
|
package/docs/ProductsApi.md
CHANGED
|
@@ -374,7 +374,7 @@ const { status, data } = await apiInstance.getProduct(
|
|
|
374
374
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
375
375
|
|
|
376
376
|
# **importProducts**
|
|
377
|
-
>
|
|
377
|
+
> ImportProducts200Response importProducts()
|
|
378
378
|
|
|
379
379
|
Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
|
|
380
380
|
|
|
@@ -408,7 +408,7 @@ const { status, data } = await apiInstance.importProducts(
|
|
|
408
408
|
|
|
409
409
|
### Return type
|
|
410
410
|
|
|
411
|
-
**
|
|
411
|
+
**ImportProducts200Response**
|
|
412
412
|
|
|
413
413
|
### Authorization
|
|
414
414
|
|
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**fontWeight** | **string** | The weight of the text. This must be a valid CSS font-weight value. | [optional] [default to FontWeightEnum_Normal]
|
|
14
14
|
**fontStyle** | **string** | The style of the text. This must be a valid CSS font-style value. | [optional] [default to FontStyleEnum_Normal]
|
|
15
15
|
**color** | **string** | The colour of the text in hex format. | [optional] [default to undefined]
|
|
16
|
+
**rotation** | **number** | The rotation of the text in degrees. | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -28,6 +29,7 @@ const instance: TextApplicationProperties = {
|
|
|
28
29
|
fontWeight,
|
|
29
30
|
fontStyle,
|
|
30
31
|
color,
|
|
32
|
+
rotation,
|
|
31
33
|
};
|
|
32
34
|
```
|
|
33
35
|
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.71.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|