@gofynd/fdk-client-javascript 1.3.11-beta.5 → 1.3.11-beta.7

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
@@ -214,7 +214,7 @@ console.log("Active Theme: ", response.information.name);
214
214
  The above code will log the curl command in the console
215
215
 
216
216
  ```bash
217
- 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.3.11-beta.5' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
217
+ 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.3.11-beta.7' --header 'x-fp-date: 20230222T115108Z' --header 'x-fp-signature: v1.1:1e3ab3b02b5bc626e3c32a37ee844266ade02bbcbaafc28fc7a0e46a76a7a1a8'
218
218
  Active Theme: Emerge
219
219
  ```
220
220
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gofynd/fdk-client-javascript",
3
- "version": "1.3.11-beta.5",
3
+ "version": "1.3.11-beta.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1904,7 +1904,7 @@ export = OrderPlatformModel;
1904
1904
  /**
1905
1905
  * @typedef ShipmentItemFulFillingStore
1906
1906
  * @property {string} [address]
1907
- * @property {string[]} [brand_store_tags]
1907
+ * @property {string} [brand_store_tags]
1908
1908
  * @property {string} [city]
1909
1909
  * @property {string} code
1910
1910
  * @property {number} id
@@ -4762,7 +4762,7 @@ type ShipmentItem = {
4762
4762
  declare function ShipmentItemFulFillingStore(): ShipmentItemFulFillingStore;
4763
4763
  type ShipmentItemFulFillingStore = {
4764
4764
  address?: string;
4765
- brand_store_tags?: string[];
4765
+ brand_store_tags?: string;
4766
4766
  city?: string;
4767
4767
  code: string;
4768
4768
  id: number;
@@ -2115,7 +2115,7 @@ const Joi = require("joi");
2115
2115
  /**
2116
2116
  * @typedef ShipmentItemFulFillingStore
2117
2117
  * @property {string} [address]
2118
- * @property {string[]} [brand_store_tags]
2118
+ * @property {string} [brand_store_tags]
2119
2119
  * @property {string} [city]
2120
2120
  * @property {string} code
2121
2121
  * @property {number} id
@@ -5247,7 +5247,7 @@ class OrderPlatformModel {
5247
5247
  static ShipmentItemFulFillingStore() {
5248
5248
  return Joi.object({
5249
5249
  address: Joi.string().allow("").allow(null),
5250
- brand_store_tags: Joi.array().items(Joi.string().allow("")),
5250
+ brand_store_tags: Joi.string().allow("").allow(null),
5251
5251
  city: Joi.string().allow("").allow(null),
5252
5252
  code: Joi.string().allow("").required(),
5253
5253
  id: Joi.number().required(),