Skip to content

Commit df1ff1b

Browse files
committed
[Auto Generated] 3.22.0
1 parent 683dc1a commit df1ff1b

10 files changed

Lines changed: 61 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# CHANGE LOG (3.22.0) - 2.11.8
2+
13
# CHANGE LOG (3.21.0) - 2.11.7
24

35
## Application Client

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2020
Using this method, you can `import` fdk-client-python like so:

fdk_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.21.0"
1+
__version__ = "3.22.0"

fdk_client/application/cart/client.py

Lines changed: 14 additions & 8 deletions
Large diffs are not rendered by default.

fdk_client/application/cart/validator.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333

3434

35+
3536

3637

3738

@@ -42,6 +43,7 @@
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)

fdk_client/platform/cart/applicationClient.py

Lines changed: 21 additions & 12 deletions
Large diffs are not rendered by default.

fdk_client/platform/cart/applicationValidator.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@
275275

276276

277277

278+
278279

279280

280281

@@ -286,6 +287,7 @@
286287

287288

288289

290+
289291

290292

291293

@@ -296,6 +298,7 @@
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

fdk_client/platform/cart/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

22782280
class PriceAdjustmentRestrictions(BaseSchema):

fdk_client/platform/order/models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

64446448
class ChargeDistributionSchema(BaseSchema):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
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,

0 commit comments

Comments
 (0)