Skip to content

Commit 5fe1424

Browse files
committed
[Auto Generated] 3.7.0
1 parent 3460326 commit 5fe1424

20 files changed

+2547
-5533
lines changed

CHANGELOG.md

Lines changed: 17 additions & 407 deletions
Large diffs are not rendered by default.

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>3.6.0</version>
19+
<version>3.7.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>3.6.0</version>
9+
<version>3.7.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", "3.6.0");
42+
.addHeader("x-fp-sdk-version", "3.7.0");
4343
}
4444
}

src/main/java/com/sdk/application/cart/CartApplicationModels.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2093,12 +2093,6 @@ public static class RawBreakup{
20932093

20942094

20952095

2096-
2097-
@JsonProperty("taxes")
2098-
private Double taxes;
2099-
2100-
2101-
21022096
}
21032097

21042098

src/main/java/com/sdk/application/order/OrderApplicationModels.java

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,49 +1302,6 @@ public static class Identifiers{
13021302

13031303

13041304

1305-
}
1306-
1307-
1308-
/*
1309-
Model: TaxComponent
1310-
*/
1311-
@AllArgsConstructor
1312-
@NoArgsConstructor
1313-
@Getter
1314-
@Setter
1315-
@JsonIgnoreProperties(ignoreUnknown = true)
1316-
@JsonInclude(JsonInclude.Include.NON_NULL)
1317-
public static class TaxComponent{
1318-
1319-
1320-
1321-
1322-
1323-
1324-
1325-
@JsonProperty("name")
1326-
private String name;
1327-
1328-
1329-
1330-
1331-
@JsonProperty("rate")
1332-
private Double rate;
1333-
1334-
1335-
1336-
1337-
@JsonProperty("tax_amount")
1338-
private Double taxAmount;
1339-
1340-
1341-
1342-
1343-
@JsonProperty("taxable_amount")
1344-
private Double taxableAmount;
1345-
1346-
1347-
13481305
}
13491306

13501307

@@ -1532,12 +1489,6 @@ public static class FinancialBreakup{
15321489

15331490

15341491

1535-
1536-
@JsonProperty("taxes")
1537-
private List<TaxComponent> taxes;
1538-
1539-
1540-
15411492
}
15421493

15431494

src/main/java/com/sdk/application/payment/PaymentApplicationApiList.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -143,19 +143,4 @@ interface PaymentApplicationApiList {
143143

144144
@POST
145145
Call<PaymentApplicationModels.ValidateCustomerCreditSchema> validateCustomerAndCreditSummary(@Url String url1, @Body PaymentApplicationModels.CustomerValidationSchema payload, @HeaderMap Map<String, String> requestHeaders);
146-
147-
@GET
148-
Call<PaymentApplicationModels.RefundBeneficiaries> getRefundBeneficiaries(@Url String url1, @Query("order_id") String orderId, @Query("shipment_id") String shipmentId, @Query("filter_by") String filterBy, @HeaderMap Map<String, String> requestHeaders);
149-
150-
@POST
151-
Call<PaymentApplicationModels.AddBeneficiaryResponseDetails> addBeneficiary(@Url String url1, @Body PaymentApplicationModels.AddBeneficiaryRequestDetails payload, @HeaderMap Map<String, String> requestHeaders);
152-
153-
@DELETE
154-
Call<PaymentApplicationModels.DeleteBeneficiaryDetails> deleteBeneficiary(@Url String url1, @HeaderMap Map<String, String> requestHeaders);
155-
156-
@GET
157-
Call<PaymentApplicationModels.RefundBeneficiaries> getRefundBeneficiariesUsingOTPSession(@Url String url1, @Query("order_id") String orderId, @Query("shipment_id") String shipmentId, @Query("filter_by") String filterBy, @HeaderMap Map<String, String> requestHeaders);
158-
159-
@POST
160-
Call<PaymentApplicationModels.AddBeneficiaryResponseDetails> addRefundBeneficiaryUsingOTPSession(@Url String url1, @Body PaymentApplicationModels.AddBeneficiaryRequestDetails payload, @HeaderMap Map<String, String> requestHeaders);
161146
}

0 commit comments

Comments
 (0)