You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+78Lines changed: 78 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,81 @@
1
+
# CHANGE LOG (3.14.0) - 2.9.3
2
+
3
+
## Platform Client
4
+
5
+
6
+
7
+
### Cart
8
+
9
+
10
+
11
+
#### platformAddItems
12
+
13
+
- ##### What's New
14
+
- [Added] property <code>default_cart</code> of schema <code>PlatformAddCartDetails</code> in request body
15
+
16
+
17
+
### Catalog
18
+
19
+
20
+
21
+
#### getAppProducts
22
+
23
+
- ##### What's New
24
+
- [Added] Possible nullable value <code>true</code> to property <code>items[].hs_code</code> of schema <code>RawProduct</code> in response with status code 200
25
+
26
+
27
+
#### validateProductGlobalTemplate
28
+
29
+
- ##### What's New
30
+
- [Added] Possible nullable value <code>true</code> to property <code>data.global_validation.properties.hs_code</code> of schema <code>Properties</code> in response with status code 200
31
+
32
+
33
+
#### getProductSize
34
+
35
+
- ##### What's New
36
+
- [Added] Possible nullable value <code>true</code> to property <code>items[].hs_code</code> of schema <code>Product</code> in response with status code 200
37
+
38
+
39
+
#### getProducts
40
+
41
+
- ##### What's New
42
+
- [Added] Possible nullable value <code>true</code> to property <code>items[].hs_code</code> of schema <code>ProductSchemaV2</code> in response with status code 200
43
+
44
+
45
+
#### createProduct
46
+
47
+
- ##### What's New
48
+
- [Added] Possible nullable value <code>true</code> to property <code>hs_code</code> of schema <code>ProductCreateSchemaV3</code> in request body
49
+
50
+
51
+
#### editProduct
52
+
53
+
- ##### What's New
54
+
- [Added] Possible nullable value <code>true</code> to property <code>hs_code</code> of schema <code>ProductUpdateSchemaV3</code> in request body
55
+
56
+
57
+
#### partialUpdateProduct
58
+
59
+
- ##### What's New
60
+
- [Added] Possible nullable value <code>true</code> to property <code>hs_code</code> of schema <code>ProductPatchSchemaV3</code> in request body
61
+
62
+
63
+
#### getProduct
64
+
65
+
- ##### What's New
66
+
- [Added] Possible nullable value <code>true</code> to property <code>data.hs_code</code> of schema <code>ProductSchemaV2</code> in response with status code 200
67
+
68
+
69
+
### Order
70
+
71
+
72
+
73
+
#### createOrder
74
+
75
+
- ##### What's New
76
+
- [Added] property <code>meta</code> of schema <code>CreateOrderRequestSchema</code> in request body
"""Add product items to the customer's existing shopping cart. If there is no existing cart associated with the customer, it creates a new one and adds the items to it.
1934
+
"""Adds product items to a customer's shopping cart. If the customer does not have an existing cart, a new one is created automatically. - The `new_cart` flag forces creation of a new cart even if one already exists. - The `default_cart` flag determines whether the item is added to the user's default storefront-visible cart. If `true`, the item is added to the user's default cart that is accessible via the storefront. If `false`, an existing active cart is fetched if available; otherwise, a new hidden cart is created.
1935
1935
:param x-ordering-source : Ordering source header, to be used to identify source of order creation. : type string
1936
1936
:param i : This is a boolean value. Select `true` to retrieve all the items added in the cart. : type boolean
1937
1937
:param b : This is a boolean value. Select `true` to retrieve the price breakup of cart items. : type boolean
0 commit comments