@gofynd/fdk-client-javascript 1.4.15-beta.13 → 1.4.15-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -237,7 +237,7 @@ console.log("Active Theme: ", response.information.name);
|
|
|
237
237
|
The above code will log the curl command in the console
|
|
238
238
|
|
|
239
239
|
```bash
|
|
240
|
-
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.15-beta.
|
|
240
|
+
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.15-beta.14' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
|
|
241
241
|
Active Theme: Emerge
|
|
242
242
|
```
|
|
243
243
|
|
package/package.json
CHANGED
|
@@ -2611,6 +2611,7 @@ export = CatalogPlatformModel;
|
|
|
2611
2611
|
* @property {string[]} [tryouts]
|
|
2612
2612
|
* @property {string} [type]
|
|
2613
2613
|
* @property {number} [uid]
|
|
2614
|
+
* @property {ApplicationItemSEO} [seo]
|
|
2614
2615
|
*/
|
|
2615
2616
|
/**
|
|
2616
2617
|
* @typedef ProductListingPrice
|
|
@@ -7635,6 +7636,7 @@ type ProductListingDetail = {
|
|
|
7635
7636
|
tryouts?: string[];
|
|
7636
7637
|
type?: string;
|
|
7637
7638
|
uid?: number;
|
|
7639
|
+
seo?: ApplicationItemSEO;
|
|
7638
7640
|
};
|
|
7639
7641
|
/** @returns {ProductListingPrice} */
|
|
7640
7642
|
declare function ProductListingPrice(): ProductListingPrice;
|
|
@@ -2893,6 +2893,7 @@ const Joi = require("joi");
|
|
|
2893
2893
|
* @property {string[]} [tryouts]
|
|
2894
2894
|
* @property {string} [type]
|
|
2895
2895
|
* @property {number} [uid]
|
|
2896
|
+
* @property {ApplicationItemSEO} [seo]
|
|
2896
2897
|
*/
|
|
2897
2898
|
|
|
2898
2899
|
/**
|
|
@@ -7178,6 +7179,7 @@ class CatalogPlatformModel {
|
|
|
7178
7179
|
tryouts: Joi.array().items(Joi.string().allow("")),
|
|
7179
7180
|
type: Joi.string().allow(""),
|
|
7180
7181
|
uid: Joi.number(),
|
|
7182
|
+
seo: CatalogPlatformModel.ApplicationItemSEO(),
|
|
7181
7183
|
});
|
|
7182
7184
|
}
|
|
7183
7185
|
|