Skip to content

Commit 3fad598

Browse files
committed
[Auto Generated] 3.14.0
1 parent a556c05 commit 3fad598

File tree

11 files changed

+98
-8
lines changed

11 files changed

+98
-8
lines changed

CHANGELOG.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff 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>defaultCart</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[].hsCode</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.globalValidation.properties.hsCode</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[].hsCode</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[].hsCode</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>hsCode</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>hsCode</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>hsCode</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.hsCode</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
77+
78+
179
# CHANGE LOG (v3.13.0) - 2.9.2
280

381
## Platform Client

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Get started with the Java Development SDK for Fynd Platform
1616
<dependency>
1717
<groupId>com.github.gofynd</groupId>
1818
<artifactId>fdk-client-java</artifactId>
19-
<version>v3.13.0</version>
19+
<version>3.14.0</version>
2020
</dependency>
2121
```
2222

pom.xml

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

77
<groupId>com.github.gofynd</groupId>
88
<artifactId>fynd-client-java</artifactId>
9-
<version>v3.13.0</version>
9+
<version>3.14.0</version>
1010

1111
<parent>
1212
<groupId>org.springframework.boot</groupId>

src/main/java/com/sdk/application/ApplicationHeaderInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ private Request.Builder buildHeaders(Request request, String bearerToken) {
3939
.addHeader("User-Agent", applicationConfig.getUserAgent())
4040
.addHeader("Accept-Language", "en-IN")
4141
.addHeader("Authorization", "Bearer "+bearerToken)
42-
.addHeader("x-fp-sdk-version", "v3.13.0");
42+
.addHeader("x-fp-sdk-version", "3.14.0");
4343
}
4444
}

src/main/java/com/sdk/partner/AccessTokenInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public Response intercept(Chain chain) throws IOException {
2626
okhttp3.Request.Builder builder = original.newBuilder()
2727
.addHeader("Authorization", "Bearer "+ partnerConfig.getPartnerOauthClient().getToken())
2828
.addHeader("Content-Type", "application/x-www-form-urlencoded")
29-
.addHeader("x-fp-sdk-version", "v3.13.0");
29+
.addHeader("x-fp-sdk-version", "3.14.0");
3030
if (!partnerConfig.getExtraHeaders().isEmpty()) {
3131
HashMap<String, String> extraHeaders = partnerConfig.getExtraHeaders();
3232
for(Map.Entry<String,String> entry:extraHeaders.entrySet()){

src/main/java/com/sdk/partner/PartnerHeaderInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private Request.Builder buildHeaders(Request request, String bearerToken) {
3737
.addHeader("Accept-Language", "en-IN")
3838
.addHeader("Authorization", "Basic "+ bearerToken)
3939
.addHeader("Content-Type","application/x-www-form-urlencoded")
40-
.addHeader("x-fp-sdk-version", "v3.13.0");
40+
.addHeader("x-fp-sdk-version", "3.14.0");
4141
}
4242

4343
}

src/main/java/com/sdk/platform/AccessTokenInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public Response intercept(Chain chain) throws IOException {
2626
okhttp3.Request.Builder builder = original.newBuilder()
2727
.addHeader("Authorization", "Bearer "+ platformConfig.getPlatformOauthClient().getToken())
2828
.addHeader("Content-Type", "application/x-www-form-urlencoded")
29-
.addHeader("x-fp-sdk-version", "v3.13.0");
29+
.addHeader("x-fp-sdk-version", "3.14.0");
3030
if (!platformConfig.getExtraHeaders().isEmpty()) {
3131
HashMap<String, String> extraHeaders = platformConfig.getExtraHeaders();
3232
for(Map.Entry<String,String> entry:extraHeaders.entrySet()){

src/main/java/com/sdk/platform/PlatformHeaderInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private Request.Builder buildHeaders(Request request, String bearerToken) {
3737
.addHeader("Accept-Language", "en-IN")
3838
.addHeader("Authorization", "Basic "+ bearerToken)
3939
.addHeader("Content-Type","application/x-www-form-urlencoded")
40-
.addHeader("x-fp-sdk-version", "v3.13.0");
40+
.addHeader("x-fp-sdk-version", "3.14.0");
4141
}
4242

4343
}

src/main/java/com/sdk/platform/cart/CartPlatformModels.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9623,6 +9623,12 @@ public static class PlatformAddCartDetails{
96239623

96249624

96259625

9626+
@JsonProperty("default_cart")
9627+
private Boolean defaultCart;
9628+
9629+
9630+
9631+
96269632
@JsonProperty("items")
96279633
private List<AddProductCart> items;
96289634

src/main/java/com/sdk/platform/order/OrderPlatformModels.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13082,6 +13082,12 @@ public static class CreateOrderRequestSchema{
1308213082

1308313083

1308413084

13085+
13086+
@JsonProperty("meta")
13087+
private HashMap<String,Object> meta;
13088+
13089+
13090+
1308513091
}
1308613092

1308713093

0 commit comments

Comments
 (0)