@teemill/product-catalog 1.70.0 → 1.71.1
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 +20 -1691
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +21 -1692
- 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 +21 -1692
- 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/CreateProductVariantImagesInner.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
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.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|