@teemill/website 0.30.3 → 0.31.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.
@@ -0,0 +1,27 @@
1
+ # WebsiteProduct
2
+
3
+ Website-specific settings for a product on the storefront (search visibility, cross-sells, and collection membership).
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **string** | Unique object identifier | [default to undefined]
10
+ **excludeFromSearch** | **boolean** | When true, the product is excluded from storefront search results. | [default to undefined]
11
+ **crossSellProducts** | [**Array<Product>**](Product.md) | Products linked as cross-sells for this product, in display order. | [default to undefined]
12
+ **collections** | [**Array<WebsiteProductCollectionsInner>**](WebsiteProductCollectionsInner.md) | Collections this product belongs to. | [default to undefined]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { WebsiteProduct } from '@teemill/website';
18
+
19
+ const instance: WebsiteProduct = {
20
+ id,
21
+ excludeFromSearch,
22
+ crossSellProducts,
23
+ collections,
24
+ };
25
+ ```
26
+
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # WebsiteProductCollectionsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | Unique object identifier | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { WebsiteProductCollectionsInner } from '@teemill/website';
14
+
15
+ const instance: WebsiteProductCollectionsInner = {
16
+ id,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.3
7
+ * The version of the OpenAPI document: 0.31.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/website",
3
- "version": "0.30.3",
3
+ "version": "0.31.0",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.13.5"
27
+ "axios": "1.15.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",