Skip to content

Commit

Permalink
[Auto Generated] 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Nov 26, 2024
1 parent 4091267 commit 93e237f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 38 deletions.
33 changes: 1 addition & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CHANGE LOG (1.4.15) - 2.0.0
# CHANGE LOG (1.5.0) - 2.0.0

## Application Client

Expand Down Expand Up @@ -485,10 +485,6 @@
- ##### What's New
- [Added] <code>query</code> parameter <code>fulfillmentType</code> (type: <code>string</code>)

- [Added] property <code>items[].bags[].article.childDetails[]</code> of schema <code>Article</code> in response with status code 200

- ##### What's Changed
- [Breaking] [Changed] Type from <code>object</code> to <code>array</code> of property <code>items[].bags[].article.childDetails</code> of schema <code>Article</code> in response with status code 200


#### getOrders
Expand All @@ -498,33 +494,6 @@



#### getApplicationShipments

- ##### What's New
- [Added] property <code>items[].bags[].article.childDetails[]</code> of schema <code>Article</code> in response with status code 200

- ##### What's Changed
- [Breaking] [Changed] Type from <code>object</code> to <code>array</code> of property <code>items[].bags[].article.childDetails</code> of schema <code>Article</code> in response with status code 200


#### getBagById

- ##### What's New
- [Added] property <code>data.article.childDetails[]</code> of schema <code>Article</code> in response with status code 200

- ##### What's Changed
- [Breaking] [Changed] Type from <code>object</code> to <code>array</code> of property <code>data.article.childDetails</code> of schema <code>Article</code> in response with status code 200


#### getBags

- ##### What's New
- [Added] property <code>data.items[].article.childDetails[]</code> of schema <code>Article</code> in response with status code 200

- ##### What's Changed
- [Breaking] [Changed] Type from <code>object</code> to <code>array</code> of property <code>data.items[].article.childDetails</code> of schema <code>Article</code> in response with status code 200


# CHANGE LOG (1.4.14) - 1.9.5

## Application Client
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Get started with the Kotlin Development SDK for Fynd Platform

# Usage

1. Add the dependency in your app build.gradle `implementation 'com.github.gofynd:fdk-client-kotlin:1.4.15'` in your app build.gradle
1. Add the dependency in your app build.gradle `implementation 'com.github.gofynd:fdk-client-kotlin:1.5.0'` in your app build.gradle
2. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
minSdkVersion 21
targetSdkVersion 31
versionCode 2
versionName "1.4.15"
versionName "1.5.0"
multiDexEnabled true

vectorDrawables.useSupportLibrary = true
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/sdk/common/AccessTokenInterceptor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class AccessTokenInterceptor(
}

if (!original.headers.names().contains("x-fp-sdk-version")) {
header("x-fp-sdk-version", "1.4.15")
header("x-fp-sdk-version", "1.5.0")
}

if (!original.headers.names().contains("x-currency-code")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ApplicationHeaderInterceptor(
header("x-currency-code", currencyCode)
}
if (!original.headers.names().contains("x-fp-sdk-version")) {
header("x-fp-sdk-version", "1.4.15")
header("x-fp-sdk-version", "1.5.0")
}
val bearerToken =
Base64.encodeToString(
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/sdk/common/PublicHeaderInterceptor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PublicHeaderInterceptor(
val original = chain.request()

val builder = original.newBuilder()
.header("x-fp-sdk-version", "1.4.15")
.header("x-fp-sdk-version", "1.5.0")
publicConfig?.extraHeaders?.let {
for ((key, value) in it) {
if (!original.headers.names().contains(key)) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/sdk/platform/order/OrderModels.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11027,7 +11027,7 @@ data class Article(


@SerializedName("child_details")
var childDetails: @RawValue ArrayList<HashMap<String,Any>>?=null,
var childDetails: @RawValue HashMap<String,Any>?=null,

@SerializedName("seller_identifier")
var sellerIdentifier: String?=null,
Expand Down

0 comments on commit 93e237f

Please sign in to comment.