Skip to content

Commit

Permalink
[Auto Generated] 1.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Oct 16, 2024
1 parent 7357fd0 commit 2036227
Show file tree
Hide file tree
Showing 297 changed files with 55,026 additions and 33,190 deletions.
8,072 changes: 8,072 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ console.log("Active Theme: ", response.information.name);
The above code will log the curl command in the console

```bash
curl --request GET "https://api.fynd.com/service/application/theme/v1.0/applied-theme" --header 'authorization: Bearer <authorization-token>' --header 'x-fp-sdk-version: 1.4.13' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
curl --request GET "https://api.fynd.com/service/application/theme/v1.0/applied-theme" --header 'authorization: Bearer <authorization-token>' --header 'x-fp-sdk-version: 1.4.14' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
Active Theme: Emerge
```

Expand Down
2 changes: 1 addition & 1 deletion dist/application.js

Large diffs are not rendered by default.

64 changes: 32 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gofynd/fdk-client-javascript",
"version": "1.4.13",
"version": "1.4.14",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions sdk/application/ApplicationClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ declare class ApplicationClient {
configuration: Configuration;
content: Content;
fileStorage: FileStorage;
finance: Finance;
lead: Lead;
logistic: Logistic;
order: Order;
Expand Down Expand Up @@ -71,6 +72,7 @@ import Communication = require("./Communication/CommunicationApplicationClient")
import Configuration = require("./Configuration/ConfigurationApplicationClient");
import Content = require("./Content/ContentApplicationClient");
import FileStorage = require("./FileStorage/FileStorageApplicationClient");
import Finance = require("./Finance/FinanceApplicationClient");
import Lead = require("./Lead/LeadApplicationClient");
import Logistic = require("./Logistic/LogisticApplicationClient");
import Order = require("./Order/OrderApplicationClient");
Expand Down
2 changes: 2 additions & 0 deletions sdk/application/ApplicationClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const Communication = require("./Communication/CommunicationApplicationClient");
const Configuration = require("./Configuration/ConfigurationApplicationClient");
const Content = require("./Content/ContentApplicationClient");
const FileStorage = require("./FileStorage/FileStorageApplicationClient");
const Finance = require("./Finance/FinanceApplicationClient");
const Lead = require("./Lead/LeadApplicationClient");
const Logistic = require("./Logistic/LogisticApplicationClient");
const Order = require("./Order/OrderApplicationClient");
Expand Down Expand Up @@ -35,6 +36,7 @@ class ApplicationClient {
this.configuration = new Configuration(config);
this.content = new Content(config);
this.fileStorage = new FileStorage(config);
this.finance = new Finance(config);
this.lead = new Lead(config);
this.logistic = new Logistic(config);
this.order = new Order(config);
Expand Down
Loading

0 comments on commit 2036227

Please sign in to comment.