Skip to content

Commit 48d0762

Browse files
committed
[Auto Generated] v3.13.0
1 parent 55d11d1 commit 48d0762

20 files changed

+2018
-665
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# CHANGE LOG (v3.13.0) - 2.9.2
2+
3+
## Platform Client
4+
5+
6+
7+
### Serviceability
8+
9+
10+
11+
#### createShipments
12+
13+
- ##### What's New
14+
- [Added] method <code>createShipments</code>
15+
16+
17+
18+
### Order
19+
20+
21+
22+
#### createOrder
23+
24+
- ##### What's Deprecated
25+
- [Breaking] [Deleted] property <code>message</code> of schema <code></code> in response with status code 200
26+
27+
- ##### What's Changed
28+
- [Breaking] [Changed] <code>message</code> made optional in response with status code 200
29+
30+
131
# CHANGE LOG (3.12.0) - 2.9.0
232

333
## Application Client

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ console.log("Active Theme: ", response.information.name);
234234
The above code will log the curl command in the console
235235

236236
```bash
237-
curl --request GET "https://api.fynd.com/service/application/theme/v1.0/applied-theme" --header 'authorization: Bearer <authorization-token>' --header 'x-fp-sdk-version: 3.12.0' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
237+
curl --request GET "https://api.fynd.com/service/application/theme/v1.0/applied-theme" --header 'authorization: Bearer <authorization-token>' --header 'x-fp-sdk-version: v3.13.0' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
238238
Active Theme: Emerge
239239
```
240240

dist/application.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/application.js.LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/*! Axios v1.12.2 Copyright (c) 2025 Matt Zabriskie and contributors */
1+
/*! Axios v1.13.1 Copyright (c) 2025 Matt Zabriskie and contributors */

package-lock.json

Lines changed: 79 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gofynd/fdk-client-javascript",
3-
"version": "3.12.0",
3+
"version": "v3.13.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

sdk/platform/Order/OrderPlatformClient.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ declare class Order {
8585
* @returns {Promise<Object>} - Success response
8686
* @name createOrder
8787
* @summary: Create Order
88-
* @description: Creates an order in the OMS. Note: Use the Serviceability API (getShipments) to determine shipments before creating an order. OMS no longer auto-selects fulfillment stores and only creates shipments as provided in the request payload. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/order/createOrder/).
88+
* @description: Creates an order in the OMS. Note: Use the Serviceability API (<a href='/commerce/sdk/latest/platform/company/serviceability#createShipments'>createShipments</a>) to determine shipments before creating an order. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/order/createOrder/).
8989
*/
9090
createOrder({ xOrderingSource, body, xApplicationId, xExtensionId, requestHeaders }?: OrderPlatformValidator.CreateOrderParam, { responseHeaders }?: object): Promise<any>;
9191
/**

0 commit comments

Comments
 (0)