File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # CHANGE LOG (3.22.0) - 2.11.8
2+
13# CHANGE LOG (3.21.0) - 2.11.7
24
35## Application Client
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Get started with the python Development SDK for Fynd Platform
1414### Usage
1515
1616``` bash
17- pip install " git+https://github.com/gofynd/fdk-client-python.git@3.21 .0#egg=fdk_client"
17+ pip install " git+https://github.com/gofynd/fdk-client-python.git@3.22 .0#egg=fdk_client"
1818```
1919
2020Using this method, you can ` import ` fdk-client-python like so:
Original file line number Diff line number Diff line change 1- __version__ = "3.21 .0"
1+ __version__ = "3.22 .0"
Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 3232
3333
3434
35+
3536
3637
3738
4243
4344
4445
46+
4547
4648
4749
@@ -258,6 +260,8 @@ class addItems(BaseSchema):
258260
259261 b = fields .Boolean (required = False )
260262
263+ include_cart_calculation = fields .Boolean (required = False )
264+
261265 area_code = fields .Str (required = False )
262266
263267 buy_now = fields .Boolean (required = False )
@@ -279,6 +283,8 @@ class updateCart(BaseSchema):
279283
280284 b = fields .Boolean (required = False )
281285
286+ include_cart_calculation = fields .Boolean (required = False )
287+
282288 area_code = fields .Str (required = False )
283289
284290 buy_now = fields .Boolean (required = False )
Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 275275
276276
277277
278+
278279
279280
280281
286287
287288
288289
290+
289291
290292
291293
296298
297299
298300
301+
299302
300303
301304
@@ -1086,6 +1089,8 @@ class platformAddItems(BaseSchema):
10861089
10871090 b = fields .Boolean (required = False )
10881091
1092+ include_cart_calculation = fields .Boolean (required = False )
1093+
10891094 buy_now = fields .Boolean (required = False )
10901095
10911096 order_type = fields .Str (required = False )
@@ -1113,6 +1118,8 @@ class platformUpdateCart(BaseSchema):
11131118
11141119 b = fields .Boolean (required = False )
11151120
1121+ include_cart_calculation = fields .Boolean (required = False )
1122+
11161123 buy_now = fields .Boolean (required = False )
11171124
11181125
@@ -1134,6 +1141,8 @@ class updateCartBreakup(BaseSchema):
11341141
11351142 b = fields .Boolean (required = False )
11361143
1144+ include_cart_calculation = fields .Boolean (required = False )
1145+
11371146 buy_now = fields .Boolean (required = False )
11381147
11391148
Original file line number Diff line number Diff line change @@ -2273,6 +2273,8 @@ class Article(BaseSchema):
22732273
22742274 article_index = fields .Int (required = False )
22752275
2276+ identifier = fields .Str (required = False )
2277+
22762278
22772279
22782280class PriceAdjustmentRestrictions (BaseSchema ):
Original file line number Diff line number Diff line change @@ -6439,6 +6439,10 @@ class Prices(BaseSchema):
64396439
64406440 loyalty_discount = fields .Float (required = False )
64416441
6442+ marketplace_promotion_effective_discount = fields .Float (required = False , allow_none = True )
6443+
6444+ seller_promotion_effective_discount = fields .Float (required = False , allow_none = True )
6445+
64426446
64436447
64446448class ChargeDistributionSchema (BaseSchema ):
Original file line number Diff line number Diff line change 1111
1212setup (
1313 name = 'fdk_client' ,
14- version = '3.21 .0' ,
14+ version = '3.22 .0' ,
1515 author = 'Manish Magnani' ,
1616 description = description ,
1717 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments