@gofynd/fdk-client-javascript 0.1.35 → 0.1.36

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.
Files changed (109) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +256 -239
  3. package/documentation/application/CATALOG.md +413 -409
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +4 -0
  11. package/documentation/application/ORDER.md +307 -303
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +317 -300
  14. package/documentation/application/REWARDS.md +153 -160
  15. package/documentation/application/SHARE.md +4 -0
  16. package/documentation/application/THEME.md +4 -0
  17. package/documentation/application/USER.md +4 -0
  18. package/documentation/platform/ANALYTICS.md +4 -0
  19. package/documentation/platform/AUDITTRAIL.md +4 -0
  20. package/documentation/platform/BILLING.md +4 -0
  21. package/documentation/platform/CART.md +480 -463
  22. package/documentation/platform/CATALOG.md +3895 -2942
  23. package/documentation/platform/COMMON.md +4 -0
  24. package/documentation/platform/COMMUNICATION.md +4 -0
  25. package/documentation/platform/COMPANYPROFILE.md +224 -193
  26. package/documentation/platform/CONFIGURATION.md +4 -0
  27. package/documentation/platform/CONTENT.md +8 -21
  28. package/documentation/platform/DISCOUNT.md +4 -0
  29. package/documentation/platform/FILESTORAGE.md +85 -0
  30. package/documentation/platform/INVENTORY.md +4 -0
  31. package/documentation/platform/LEAD.md +6 -2
  32. package/documentation/platform/ORDER.md +6298 -1448
  33. package/documentation/platform/PARTNER.md +12 -8
  34. package/documentation/platform/PAYMENT.md +107 -103
  35. package/documentation/platform/README.md +2 -2
  36. package/documentation/platform/REWARDS.md +219 -152
  37. package/documentation/platform/SHARE.md +4 -0
  38. package/documentation/platform/THEME.md +4 -0
  39. package/documentation/platform/USER.md +4 -0
  40. package/documentation/platform/WEBHOOK.md +4 -0
  41. package/documentation/public/CONFIGURATION.md +4 -0
  42. package/documentation/public/INVENTORY.md +4 -0
  43. package/documentation/public/WEBHOOK.md +4 -0
  44. package/package.json +1 -1
  45. package/sdk/application/ApplicationModels.d.ts +77 -73
  46. package/sdk/application/ApplicationModels.js +1751 -1725
  47. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  48. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  49. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  50. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  51. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  52. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  53. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  54. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  55. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  56. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  57. package/sdk/application/client/LogisticApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  59. package/sdk/application/client/OrderApplicationClient.js +1 -1
  60. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  61. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  62. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  63. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  64. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  65. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  66. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  67. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  68. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  69. package/sdk/application/models/CatalogValidator.js +2 -2
  70. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  71. package/sdk/application/models/PaymentValidator.js +12 -0
  72. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  73. package/sdk/application/models/RewardsValidator.js +12 -12
  74. package/sdk/common/AxiosHelper.js +1 -1
  75. package/sdk/common/Constant.d.ts +9 -0
  76. package/sdk/common/Constant.js +11 -0
  77. package/sdk/platform/PlatformApplicationClient.d.ts +8600 -7286
  78. package/sdk/platform/PlatformApplicationClient.js +4338 -3678
  79. package/sdk/platform/PlatformApplicationModels.d.ts +21 -26
  80. package/sdk/platform/PlatformApplicationModels.js +5561 -4301
  81. package/sdk/platform/PlatformClient.d.ts +3448 -2801
  82. package/sdk/platform/PlatformClient.js +3903 -3108
  83. package/sdk/platform/PlatformModels.d.ts +352 -278
  84. package/sdk/platform/PlatformModels.js +5230 -3942
  85. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  86. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  87. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  88. package/sdk/platform/client/CatalogPlatformClient.d.ts +209 -150
  89. package/sdk/platform/client/CatalogPlatformClient.js +441 -294
  90. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  91. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  92. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  93. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  94. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  95. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  96. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  97. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  98. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  99. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  100. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  101. package/sdk/platform/models/CatalogValidator.d.ts +24 -21
  102. package/sdk/platform/models/CatalogValidator.js +103 -72
  103. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  104. package/sdk/platform/models/OrderValidator.js +312 -51
  105. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  106. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  107. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  108. package/tests/common/schema/action-url.json +15 -0
  109. package/tests/common/schema/url-action.json +16 -0
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Application docs](./README.md)
6
7
 
7
8
  ## Catalog Methods
8
9
  Catalog API's allows you to access list of products, prices, seller details, similar features, variants and many more useful features.
10
+
9
11
  * [getProductDetailBySlug](#getproductdetailbyslug)
10
12
  * [getProductSizesBySlug](#getproductsizesbyslug)
11
13
  * [getProductComparisonBySlugs](#getproductcomparisonbyslugs)
@@ -26,8 +28,8 @@ Catalog API's allows you to access list of products, prices, seller details, sim
26
28
  * [getCollectionItemsBySlug](#getcollectionitemsbyslug)
27
29
  * [getCollectionDetailBySlug](#getcollectiondetailbyslug)
28
30
  * [getFollowedListing](#getfollowedlisting)
29
- * [unfollowById](#unfollowbyid)
30
31
  * [followById](#followbyid)
32
+ * [unfollowById](#unfollowbyid)
31
33
  * [getFollowerCountById](#getfollowercountbyid)
32
34
  * [getFollowIds](#getfollowids)
33
35
  * [getStores](#getstores)
@@ -42,6 +44,8 @@ Catalog API's allows you to access list of products, prices, seller details, sim
42
44
  ## Methods with example and description
43
45
 
44
46
 
47
+
48
+
45
49
  ### getProductDetailBySlug
46
50
  Get a product
47
51
 
@@ -1883,7 +1887,7 @@ const data = await catalog.getProducts({ q : value,
1883
1887
  | Argument | Type | Required | Description |
1884
1888
  | --------- | ----- | -------- | ----------- |
1885
1889
  | q | string | no | The search query for entering partial or full name of product, brand, category, or collection. |
1886
- | f | string | no | The search filter parameters. Filter parameters will be passed in f parameter as shown in the example below. Double Pipe (||) denotes the OR condition, whereas Triple-colon (:::) indicates a new filter paramater applied as an AND condition. |
1890
+ | f | string | no | The search filter parameters. Filter parameters will be passed in f parameter as shown in the example below. Double Pipe (\|\|) denotes the OR condition, whereas Triple-colon (:::) indicates a new filter paramater applied as an AND condition. |
1887
1891
  | filters | boolean | no | This is a boolean value, True for fetching all filter parameters and False for disabling the filter parameters. |
1888
1892
  | sortOn | string | no | The order in which the list of products should be sorted, e.g. popularity, price, latest and discount, in either ascending or descending order. See the supported values below. |
1889
1893
  | pageId | string | no | Page ID to retrieve next set of results. |
@@ -5827,7 +5831,7 @@ const data = await catalog.getCollectionItemsBySlug({ slug : value,
5827
5831
  | Argument | Type | Required | Description |
5828
5832
  | --------- | ----- | -------- | ----------- |
5829
5833
  | slug | string | yes | A short, human-readable, URL-friendly identifier of a collection. You can get slug value from the endpoint /service/application/catalog/v1.0/collections/. |
5830
- | f | string | no | The search filter parameters. Filter parameters will be passed in f parameter as shown in the example below. Double Pipe (||) denotes the OR condition, whereas Triple-colon (:::) indicates a new filter paramater applied as an AND condition. |
5834
+ | f | string | no | The search filter parameters. Filter parameters will be passed in f parameter as shown in the example below. Double Pipe (\|\|) denotes the OR condition, whereas Triple-colon (:::) indicates a new filter paramater applied as an AND condition. |
5831
5835
  | filters | boolean | no | This is a boolean value, True for fetching all filter parameters and False for disabling the filter parameters. |
5832
5836
  | sortOn | string | no | The order in which the list of products should be sorted, e.g. popularity, price, latest and discount, in either ascending or descending order. See the supported values below. |
5833
5837
  | pageId | string | no | Page ID to retrieve next set of results. |
@@ -6678,18 +6682,18 @@ Success. Returns a Followed resource object. Check the example shown below or re
6678
6682
  ---
6679
6683
 
6680
6684
 
6681
- ### unfollowById
6682
- Unfollow an entity (product/brand/collection)
6685
+ ### followById
6686
+ Follow an entity (product/brand/collection)
6683
6687
 
6684
6688
 
6685
6689
 
6686
6690
  ```javascript
6687
6691
  // Promise
6688
- const promise = catalog.unfollowById({ collectionType : value,
6692
+ const promise = catalog.followById({ collectionType : value,
6689
6693
  collectionId : value });
6690
6694
 
6691
6695
  // Async/Await
6692
- const data = await catalog.unfollowById({ collectionType : value,
6696
+ const data = await catalog.followById({ collectionType : value,
6693
6697
  collectionId : value });
6694
6698
  ```
6695
6699
 
@@ -6704,7 +6708,7 @@ const data = await catalog.unfollowById({ collectionType : value,
6704
6708
 
6705
6709
 
6706
6710
 
6707
- You can undo a followed product, brand or collection by its ID. This action is referred as _unfollow_.
6711
+ Follow a particular entity such as product, brand, collection specified by its ID.
6708
6712
 
6709
6713
  *Returned Response:*
6710
6714
 
@@ -6723,7 +6727,7 @@ Success. Returns a response object. Check the example shown below or refer `Foll
6723
6727
 
6724
6728
  ```json
6725
6729
  {
6726
- "message": "Products Removed From Wishlist",
6730
+ "message": "Brands Added To Wishlist",
6727
6731
  "id": "1"
6728
6732
  }
6729
6733
  ```
@@ -6740,18 +6744,18 @@ Success. Returns a response object. Check the example shown below or refer `Foll
6740
6744
  ---
6741
6745
 
6742
6746
 
6743
- ### followById
6744
- Follow an entity (product/brand/collection)
6747
+ ### unfollowById
6748
+ Unfollow an entity (product/brand/collection)
6745
6749
 
6746
6750
 
6747
6751
 
6748
6752
  ```javascript
6749
6753
  // Promise
6750
- const promise = catalog.followById({ collectionType : value,
6754
+ const promise = catalog.unfollowById({ collectionType : value,
6751
6755
  collectionId : value });
6752
6756
 
6753
6757
  // Async/Await
6754
- const data = await catalog.followById({ collectionType : value,
6758
+ const data = await catalog.unfollowById({ collectionType : value,
6755
6759
  collectionId : value });
6756
6760
  ```
6757
6761
 
@@ -6766,7 +6770,7 @@ const data = await catalog.followById({ collectionType : value,
6766
6770
 
6767
6771
 
6768
6772
 
6769
- Follow a particular entity such as product, brand, collection specified by its ID.
6773
+ You can undo a followed product, brand or collection by its ID. This action is referred as _unfollow_.
6770
6774
 
6771
6775
  *Returned Response:*
6772
6776
 
@@ -6785,7 +6789,7 @@ Success. Returns a response object. Check the example shown below or refer `Foll
6785
6789
 
6786
6790
  ```json
6787
6791
  {
6788
- "message": "Brands Added To Wishlist",
6792
+ "message": "Products Removed From Wishlist",
6789
6793
  "id": "1"
6790
6794
  }
6791
6795
  ```
@@ -7881,37 +7885,36 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7881
7885
 
7882
7886
 
7883
7887
 
7884
- #### [Meta](#Meta)
7888
+ #### [ApplicationItemSEO](#ApplicationItemSEO)
7885
7889
 
7886
7890
  | Properties | Type | Nullable | Description |
7887
7891
  | ---------- | ---- | -------- | ----------- |
7888
- | source | string | no | |
7892
+ | title | any | no | |
7893
+ | description | any | no | |
7889
7894
 
7890
7895
  ---
7891
7896
 
7892
7897
 
7893
7898
 
7894
7899
 
7895
- #### [Media](#Media)
7900
+ #### [NetQuantity](#NetQuantity)
7896
7901
 
7897
7902
  | Properties | Type | Nullable | Description |
7898
7903
  | ---------- | ---- | -------- | ----------- |
7899
- | meta | [Meta](#Meta) | no | |
7900
- | alt | string | no | |
7901
- | type | string | no | |
7902
- | url | string | no | |
7904
+ | value | number | no | |
7905
+ | unit | any | no | |
7903
7906
 
7904
7907
  ---
7905
7908
 
7906
7909
 
7907
7910
 
7908
7911
 
7909
- #### [ProductListingActionPage](#ProductListingActionPage)
7912
+ #### [ProductDetailAttribute](#ProductDetailAttribute)
7910
7913
 
7911
7914
  | Properties | Type | Nullable | Description |
7912
7915
  | ---------- | ---- | -------- | ----------- |
7913
- | query | string | no | |
7914
- | params | string | no | |
7916
+ | key | string | no | |
7917
+ | value | string | no | |
7915
7918
  | type | string | no | |
7916
7919
 
7917
7920
  ---
@@ -7919,114 +7922,115 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7919
7922
 
7920
7923
 
7921
7924
 
7922
- #### [ProductListingAction](#ProductListingAction)
7925
+ #### [ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)
7923
7926
 
7924
7927
  | Properties | Type | Nullable | Description |
7925
7928
  | ---------- | ---- | -------- | ----------- |
7926
- | type | string | no | |
7927
- | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7929
+ | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
7930
+ | title | string | no | |
7928
7931
 
7929
7932
  ---
7930
7933
 
7931
7934
 
7932
7935
 
7933
7936
 
7934
- #### [ProductBrand](#ProductBrand)
7937
+ #### [CustomMetaFields](#CustomMetaFields)
7935
7938
 
7936
7939
  | Properties | Type | Nullable | Description |
7937
7940
  | ---------- | ---- | -------- | ----------- |
7938
- | description | string | no | |
7939
- | action | [ProductListingAction](#ProductListingAction) | no | |
7940
- | uid | number | no | |
7941
- | logo | [Media](#Media) | no | |
7942
- | name | string | no | |
7941
+ | key | string | yes | |
7942
+ | value | string | yes | |
7943
7943
 
7944
7944
  ---
7945
7945
 
7946
7946
 
7947
7947
 
7948
7948
 
7949
- #### [Price](#Price)
7949
+ #### [Meta](#Meta)
7950
7950
 
7951
7951
  | Properties | Type | Nullable | Description |
7952
7952
  | ---------- | ---- | -------- | ----------- |
7953
- | max | number | no | |
7954
- | min | number | no | |
7955
- | currency_symbol | string | no | |
7956
- | currency_code | string | no | |
7953
+ | source | string | no | |
7957
7954
 
7958
7955
  ---
7959
7956
 
7960
7957
 
7961
7958
 
7962
7959
 
7963
- #### [ProductListingPrice](#ProductListingPrice)
7960
+ #### [Media](#Media)
7964
7961
 
7965
7962
  | Properties | Type | Nullable | Description |
7966
7963
  | ---------- | ---- | -------- | ----------- |
7967
- | marked | [Price](#Price) | no | |
7968
- | effective | [Price](#Price) | no | |
7964
+ | url | string | no | |
7965
+ | type | string | no | |
7966
+ | meta | [Meta](#Meta) | no | |
7967
+ | alt | string | no | |
7969
7968
 
7970
7969
  ---
7971
7970
 
7972
7971
 
7973
7972
 
7974
7973
 
7975
- #### [ApplicationItemSEO](#ApplicationItemSEO)
7974
+ #### [ProductListingActionPage](#ProductListingActionPage)
7976
7975
 
7977
7976
  | Properties | Type | Nullable | Description |
7978
7977
  | ---------- | ---- | -------- | ----------- |
7979
- | description | any | no | |
7980
- | title | any | no | |
7978
+ | type | string | no | |
7979
+ | query | string | no | |
7980
+ | params | string | no | |
7981
7981
 
7982
7982
  ---
7983
7983
 
7984
7984
 
7985
7985
 
7986
7986
 
7987
- #### [NetQuantity](#NetQuantity)
7987
+ #### [ProductListingAction](#ProductListingAction)
7988
7988
 
7989
7989
  | Properties | Type | Nullable | Description |
7990
7990
  | ---------- | ---- | -------- | ----------- |
7991
- | unit | any | no | |
7992
- | value | number | no | |
7991
+ | type | string | no | |
7992
+ | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7993
7993
 
7994
7994
  ---
7995
7995
 
7996
7996
 
7997
7997
 
7998
7998
 
7999
- #### [CustomMetaFields](#CustomMetaFields)
7999
+ #### [ProductBrand](#ProductBrand)
8000
8000
 
8001
8001
  | Properties | Type | Nullable | Description |
8002
8002
  | ---------- | ---- | -------- | ----------- |
8003
- | key | string | yes | |
8004
- | value | string | yes | |
8003
+ | uid | number | no | |
8004
+ | description | string | no | |
8005
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8006
+ | logo | [Media](#Media) | no | |
8007
+ | name | string | no | |
8005
8008
 
8006
8009
  ---
8007
8010
 
8008
8011
 
8009
8012
 
8010
8013
 
8011
- #### [ProductDetailAttribute](#ProductDetailAttribute)
8014
+ #### [Price](#Price)
8012
8015
 
8013
8016
  | Properties | Type | Nullable | Description |
8014
8017
  | ---------- | ---- | -------- | ----------- |
8015
- | key | string | no | |
8016
- | type | string | no | |
8017
- | value | string | no | |
8018
+ | min | number | no | |
8019
+ | max | number | no | |
8020
+ | currency_symbol | string | no | |
8021
+ | currency_code | string | no | |
8018
8022
 
8019
8023
  ---
8020
8024
 
8021
8025
 
8022
8026
 
8023
8027
 
8024
- #### [ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)
8028
+ #### [ProductListingPrice](#ProductListingPrice)
8025
8029
 
8026
8030
  | Properties | Type | Nullable | Description |
8027
8031
  | ---------- | ---- | -------- | ----------- |
8028
- | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
8029
- | title | string | no | |
8032
+ | effective | [Price](#Price) | no | |
8033
+ | marked | [Price](#Price) | no | |
8030
8034
 
8031
8035
  ---
8032
8036
 
@@ -8037,9 +8041,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8037
8041
 
8038
8042
  | Properties | Type | Nullable | Description |
8039
8043
  | ---------- | ---- | -------- | ----------- |
8044
+ | increment_unit | number | no | |
8040
8045
  | maximum | number | no | |
8041
8046
  | minimum | number | no | |
8042
- | increment_unit | number | no | |
8043
8047
 
8044
8048
  ---
8045
8049
 
@@ -8050,39 +8054,39 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8050
8054
 
8051
8055
  | Properties | Type | Nullable | Description |
8052
8056
  | ---------- | ---- | -------- | ----------- |
8053
- | description | string | no | |
8054
- | medias | [[Media](#Media)] | no | |
8055
- | brand | [ProductBrand](#ProductBrand) | no | |
8056
- | attributes | string | no | |
8057
- | has_variant | boolean | no | |
8058
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8059
- | image_nature | string | no | |
8060
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8061
- | item_type | string | no | |
8062
- | tryouts | [string] | no | |
8057
+ | uid | number | no | |
8063
8058
  | short_description | string | no | |
8064
- | name | string | no | |
8065
- | item_code | string | no | |
8059
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8060
+ | has_variant | boolean | no | |
8061
+ | product_online_date | string | no | |
8062
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8063
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8064
+ | attributes | string | no | |
8065
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8066
8066
  | slug | string | yes | |
8067
8067
  | is_dependent | boolean | no | |
8068
- | _custom_json | string | no | |
8068
+ | teaser_tag | string | no | |
8069
8069
  | rating | number | no | |
8070
- | type | string | no | |
8071
- | action | [ProductListingAction](#ProductListingAction) | no | |
8072
- | uid | number | no | |
8073
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8070
+ | image_nature | string | no | |
8071
+ | medias | [[Media](#Media)] | no | |
8072
+ | _custom_json | string | no | |
8073
+ | item_code | string | no | |
8074
8074
  | tags | [string] | no | |
8075
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8076
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8077
- | similars | [string] | no | |
8078
- | highlights | [string] | no | |
8079
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8080
- | rating_count | number | no | |
8081
- | product_online_date | string | no | |
8082
- | discount | string | no | |
8083
8075
  | color | string | no | |
8084
- | teaser_tag | string | no | |
8076
+ | similars | [string] | no | |
8077
+ | brand | [ProductBrand](#ProductBrand) | no | |
8078
+ | type | string | no | |
8079
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8080
+ | item_type | string | no | |
8081
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8082
+ | description | string | no | |
8085
8083
  | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8084
+ | tryouts | [string] | no | |
8085
+ | discount | string | no | |
8086
+ | rating_count | number | no | |
8087
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8088
+ | highlights | [string] | no | |
8089
+ | name | string | no | |
8086
8090
 
8087
8091
  ---
8088
8092
 
@@ -8116,10 +8120,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8116
8120
  | Properties | Type | Nullable | Description |
8117
8121
  | ---------- | ---- | -------- | ----------- |
8118
8122
  | height | number | yes | |
8119
- | length | number | yes | |
8123
+ | is_default | boolean | yes | |
8120
8124
  | unit | string | yes | |
8125
+ | length | number | yes | |
8121
8126
  | width | number | yes | |
8122
- | is_default | boolean | yes | |
8123
8127
 
8124
8128
  ---
8125
8129
 
@@ -8145,9 +8149,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8145
8149
  | ---------- | ---- | -------- | ----------- |
8146
8150
  | is_available | boolean | no | |
8147
8151
  | seller_identifiers | [string] | no | |
8148
- | value | string | no | |
8149
- | quantity | number | no | |
8150
8152
  | dimension | [Dimension](#Dimension) | no | |
8153
+ | quantity | number | no | |
8154
+ | value | string | no | |
8151
8155
  | weight | [Weight](#Weight) | no | |
8152
8156
  | display | string | no | |
8153
8157
 
@@ -8156,44 +8160,44 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8156
8160
 
8157
8161
 
8158
8162
 
8159
- #### [ColumnHeader](#ColumnHeader)
8163
+ #### [SizeChartValues](#SizeChartValues)
8160
8164
 
8161
8165
  | Properties | Type | Nullable | Description |
8162
8166
  | ---------- | ---- | -------- | ----------- |
8163
- | convertable | boolean | no | |
8164
- | value | string | no | |
8167
+ | col_1 | string | no | |
8168
+ | col_5 | string | no | |
8169
+ | col_6 | string | no | |
8170
+ | col_2 | string | no | |
8171
+ | col_3 | string | no | |
8172
+ | col_4 | string | no | |
8165
8173
 
8166
8174
  ---
8167
8175
 
8168
8176
 
8169
8177
 
8170
8178
 
8171
- #### [ColumnHeaders](#ColumnHeaders)
8179
+ #### [ColumnHeader](#ColumnHeader)
8172
8180
 
8173
8181
  | Properties | Type | Nullable | Description |
8174
8182
  | ---------- | ---- | -------- | ----------- |
8175
- | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8176
- | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8177
- | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8178
- | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8179
- | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8180
- | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8183
+ | value | string | no | |
8184
+ | convertable | boolean | no | |
8181
8185
 
8182
8186
  ---
8183
8187
 
8184
8188
 
8185
8189
 
8186
8190
 
8187
- #### [SizeChartValues](#SizeChartValues)
8191
+ #### [ColumnHeaders](#ColumnHeaders)
8188
8192
 
8189
8193
  | Properties | Type | Nullable | Description |
8190
8194
  | ---------- | ---- | -------- | ----------- |
8191
- | col_2 | string | no | |
8192
- | col_4 | string | no | |
8193
- | col_6 | string | no | |
8194
- | col_5 | string | no | |
8195
- | col_1 | string | no | |
8196
- | col_3 | string | no | |
8195
+ | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8196
+ | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8197
+ | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8198
+ | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8199
+ | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8200
+ | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8197
8201
 
8198
8202
  ---
8199
8203
 
@@ -8205,12 +8209,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8205
8209
  | Properties | Type | Nullable | Description |
8206
8210
  | ---------- | ---- | -------- | ----------- |
8207
8211
  | description | string | no | |
8212
+ | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8213
+ | title | string | no | |
8208
8214
  | size_tip | string | no | |
8215
+ | unit | string | no | |
8209
8216
  | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8210
- | title | string | no | |
8211
8217
  | image | string | no | |
8212
- | unit | string | no | |
8213
- | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8214
8218
 
8215
8219
  ---
8216
8220
 
@@ -8222,11 +8226,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8222
8226
  | Properties | Type | Nullable | Description |
8223
8227
  | ---------- | ---- | -------- | ----------- |
8224
8228
  | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8225
- | multi_size | boolean | no | |
8226
8229
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8227
8230
  | discount | string | no | |
8228
- | sellable | boolean | no | |
8229
8231
  | sizes | [[ProductSize](#ProductSize)] | no | |
8232
+ | sellable | boolean | no | |
8233
+ | multi_size | boolean | no | |
8230
8234
  | size_chart | [SizeChart](#SizeChart) | no | |
8231
8235
 
8232
8236
  ---
@@ -8238,10 +8242,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8238
8242
 
8239
8243
  | Properties | Type | Nullable | Description |
8240
8244
  | ---------- | ---- | -------- | ----------- |
8241
- | description | string | no | |
8245
+ | key | string | no | |
8242
8246
  | logo | string | no | |
8247
+ | description | string | no | |
8243
8248
  | display | string | no | |
8244
- | key | string | no | |
8245
8249
 
8246
8250
  ---
8247
8251
 
@@ -8276,10 +8280,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8276
8280
 
8277
8281
  | Properties | Type | Nullable | Description |
8278
8282
  | ---------- | ---- | -------- | ----------- |
8279
- | subtitle | string | no | |
8280
8283
  | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8281
8284
  | items | [[ProductDetail](#ProductDetail)] | no | |
8282
8285
  | title | string | no | |
8286
+ | subtitle | string | no | |
8283
8287
 
8284
8288
  ---
8285
8289
 
@@ -8301,15 +8305,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8301
8305
 
8302
8306
  | Properties | Type | Nullable | Description |
8303
8307
  | ---------- | ---- | -------- | ----------- |
8304
- | color_name | string | no | |
8305
- | is_available | boolean | no | |
8306
- | medias | [[Media](#Media)] | no | |
8307
- | action | [ProductListingAction](#ProductListingAction) | no | |
8308
8308
  | uid | number | no | |
8309
+ | is_available | boolean | no | |
8310
+ | slug | string | no | |
8309
8311
  | value | string | no | |
8310
8312
  | color | string | no | |
8313
+ | color_name | string | no | |
8314
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8315
+ | medias | [[Media](#Media)] | no | |
8311
8316
  | name | string | no | |
8312
- | slug | string | no | |
8313
8317
 
8314
8318
  ---
8315
8319
 
@@ -8320,10 +8324,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8320
8324
 
8321
8325
  | Properties | Type | Nullable | Description |
8322
8326
  | ---------- | ---- | -------- | ----------- |
8327
+ | key | string | no | |
8328
+ | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8323
8329
  | header | string | no | |
8324
8330
  | display_type | string | no | |
8325
- | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8326
- | key | string | no | |
8327
8331
 
8328
8332
  ---
8329
8333
 
@@ -8341,52 +8345,52 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8341
8345
 
8342
8346
 
8343
8347
 
8344
- #### [Seller](#Seller)
8348
+ #### [ProductStockPrice](#ProductStockPrice)
8345
8349
 
8346
8350
  | Properties | Type | Nullable | Description |
8347
8351
  | ---------- | ---- | -------- | ----------- |
8348
- | uid | number | no | |
8349
- | name | string | no | |
8350
- | count | number | no | |
8352
+ | currency | string | no | |
8353
+ | effective | number | no | |
8354
+ | marked | number | no | |
8351
8355
 
8352
8356
  ---
8353
8357
 
8354
8358
 
8355
8359
 
8356
8360
 
8357
- #### [CompanyDetail](#CompanyDetail)
8361
+ #### [StoreDetail](#StoreDetail)
8358
8362
 
8359
8363
  | Properties | Type | Nullable | Description |
8360
8364
  | ---------- | ---- | -------- | ----------- |
8361
- | name | string | no | |
8365
+ | code | string | no | |
8362
8366
  | id | number | no | |
8367
+ | city | string | no | |
8368
+ | name | string | no | |
8363
8369
 
8364
8370
  ---
8365
8371
 
8366
8372
 
8367
8373
 
8368
8374
 
8369
- #### [ProductStockPrice](#ProductStockPrice)
8375
+ #### [Seller](#Seller)
8370
8376
 
8371
8377
  | Properties | Type | Nullable | Description |
8372
8378
  | ---------- | ---- | -------- | ----------- |
8373
- | marked | number | no | |
8374
- | effective | number | no | |
8375
- | currency | string | no | |
8379
+ | uid | number | no | |
8380
+ | count | number | no | |
8381
+ | name | string | no | |
8376
8382
 
8377
8383
  ---
8378
8384
 
8379
8385
 
8380
8386
 
8381
8387
 
8382
- #### [StoreDetail](#StoreDetail)
8388
+ #### [CompanyDetail](#CompanyDetail)
8383
8389
 
8384
8390
  | Properties | Type | Nullable | Description |
8385
8391
  | ---------- | ---- | -------- | ----------- |
8386
- | city | string | no | |
8387
- | code | string | no | |
8388
- | name | string | no | |
8389
8392
  | id | number | no | |
8393
+ | name | string | no | |
8390
8394
 
8391
8395
  ---
8392
8396
 
@@ -8397,15 +8401,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8397
8401
 
8398
8402
  | Properties | Type | Nullable | Description |
8399
8403
  | ---------- | ---- | -------- | ----------- |
8400
- | seller | [Seller](#Seller) | no | |
8401
- | size | string | no | |
8402
- | company | [CompanyDetail](#CompanyDetail) | no | |
8403
- | price | [ProductStockPrice](#ProductStockPrice) | no | |
8404
- | item_id | number | no | |
8405
8404
  | uid | string | no | |
8406
- | store | [StoreDetail](#StoreDetail) | no | |
8405
+ | price | [ProductStockPrice](#ProductStockPrice) | no | |
8407
8406
  | quantity | number | no | |
8408
8407
  | identifier | string | no | |
8408
+ | store | [StoreDetail](#StoreDetail) | no | |
8409
+ | seller | [Seller](#Seller) | no | |
8410
+ | company | [CompanyDetail](#CompanyDetail) | no | |
8411
+ | size | string | no | |
8412
+ | item_id | number | no | |
8409
8413
 
8410
8414
  ---
8411
8415
 
@@ -8427,13 +8431,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8427
8431
 
8428
8432
  | Properties | Type | Nullable | Description |
8429
8433
  | ---------- | ---- | -------- | ----------- |
8430
- | size | number | no | |
8431
- | next_id | string | no | |
8434
+ | current | number | no | |
8432
8435
  | item_total | number | no | |
8433
- | type | string | yes | |
8434
8436
  | has_previous | boolean | no | |
8437
+ | next_id | string | no | |
8435
8438
  | has_next | boolean | no | |
8436
- | current | number | no | |
8439
+ | size | number | no | |
8440
+ | type | string | yes | |
8437
8441
 
8438
8442
  ---
8439
8443
 
@@ -8452,36 +8456,36 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8452
8456
 
8453
8457
 
8454
8458
 
8455
- #### [ProductFiltersValue](#ProductFiltersValue)
8459
+ #### [ProductFiltersKey](#ProductFiltersKey)
8456
8460
 
8457
8461
  | Properties | Type | Nullable | Description |
8458
8462
  | ---------- | ---- | -------- | ----------- |
8459
- | currency_code | string | no | |
8460
- | query_format | string | no | |
8461
- | selected_max | number | no | |
8462
- | count | number | no | |
8463
- | max | number | no | |
8464
- | display_format | string | no | |
8465
- | value | string | no | |
8466
- | currency_symbol | string | no | |
8463
+ | logo | string | no | |
8464
+ | name | string | yes | |
8465
+ | kind | string | no | |
8467
8466
  | display | string | yes | |
8468
- | selected_min | number | no | |
8469
- | min | number | no | |
8470
- | is_selected | boolean | yes | |
8471
8467
 
8472
8468
  ---
8473
8469
 
8474
8470
 
8475
8471
 
8476
8472
 
8477
- #### [ProductFiltersKey](#ProductFiltersKey)
8473
+ #### [ProductFiltersValue](#ProductFiltersValue)
8478
8474
 
8479
8475
  | Properties | Type | Nullable | Description |
8480
8476
  | ---------- | ---- | -------- | ----------- |
8481
- | kind | string | no | |
8482
- | logo | string | no | |
8477
+ | is_selected | boolean | yes | |
8478
+ | currency_code | string | no | |
8479
+ | currency_symbol | string | no | |
8480
+ | display_format | string | no | |
8481
+ | min | number | no | |
8482
+ | value | string | no | |
8483
+ | max | number | no | |
8484
+ | selected_max | number | no | |
8485
+ | selected_min | number | no | |
8486
+ | count | number | no | |
8487
+ | query_format | string | no | |
8483
8488
  | display | string | yes | |
8484
- | name | string | yes | |
8485
8489
 
8486
8490
  ---
8487
8491
 
@@ -8492,8 +8496,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8492
8496
 
8493
8497
  | Properties | Type | Nullable | Description |
8494
8498
  | ---------- | ---- | -------- | ----------- |
8495
- | values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
8496
8499
  | key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
8500
+ | values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
8497
8501
 
8498
8502
  ---
8499
8503
 
@@ -8505,10 +8509,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8505
8509
  | Properties | Type | Nullable | Description |
8506
8510
  | ---------- | ---- | -------- | ----------- |
8507
8511
  | header | string | no | |
8508
- | total | number | no | |
8509
- | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8510
8512
  | display_type | string | no | |
8513
+ | total | number | no | |
8511
8514
  | key | string | no | |
8515
+ | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8512
8516
 
8513
8517
  ---
8514
8518
 
@@ -8519,43 +8523,43 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8519
8523
 
8520
8524
  | Properties | Type | Nullable | Description |
8521
8525
  | ---------- | ---- | -------- | ----------- |
8522
- | description | string | no | |
8523
- | medias | [[Media](#Media)] | no | |
8524
- | brand | [ProductBrand](#ProductBrand) | no | |
8525
- | attributes | string | no | |
8526
- | has_variant | boolean | no | |
8527
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8528
- | image_nature | string | no | |
8529
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8530
- | item_type | string | no | |
8531
- | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8532
- | tryouts | [string] | no | |
8526
+ | uid | number | no | |
8533
8527
  | short_description | string | no | |
8534
- | name | string | no | |
8535
8528
  | sizes | [string] | no | |
8536
- | item_code | string | no | |
8529
+ | sellable | boolean | no | |
8530
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8531
+ | has_variant | boolean | no | |
8532
+ | product_online_date | string | no | |
8533
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8534
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8535
+ | attributes | string | no | |
8536
+ | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8537
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8537
8538
  | slug | string | yes | |
8538
8539
  | is_dependent | boolean | no | |
8539
- | _custom_json | string | no | |
8540
+ | teaser_tag | string | no | |
8540
8541
  | rating | number | no | |
8541
- | type | string | no | |
8542
- | action | [ProductListingAction](#ProductListingAction) | no | |
8543
- | uid | number | no | |
8544
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8542
+ | image_nature | string | no | |
8543
+ | medias | [[Media](#Media)] | no | |
8544
+ | _custom_json | string | no | |
8545
+ | item_code | string | no | |
8545
8546
  | tags | [string] | no | |
8546
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8547
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8548
- | sellable | boolean | no | |
8547
+ | color | string | no | |
8549
8548
  | similars | [string] | no | |
8550
- | highlights | [string] | no | |
8551
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8549
+ | brand | [ProductBrand](#ProductBrand) | no | |
8550
+ | type | string | no | |
8551
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8552
+ | item_type | string | no | |
8553
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8554
+ | description | string | no | |
8555
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8556
+ | tryouts | [string] | no | |
8557
+ | discount | string | no | |
8552
8558
  | identifiers | [string] | no | |
8553
8559
  | rating_count | number | no | |
8554
- | product_online_date | string | no | |
8555
- | discount | string | no | |
8556
- | color | string | no | |
8557
- | teaser_tag | string | no | |
8558
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8560
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8561
+ | highlights | [string] | no | |
8562
+ | name | string | no | |
8559
8563
 
8560
8564
  ---
8561
8565
 
@@ -8566,9 +8570,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8566
8570
 
8567
8571
  | Properties | Type | Nullable | Description |
8568
8572
  | ---------- | ---- | -------- | ----------- |
8569
- | name | string | no | |
8570
- | is_selected | boolean | no | |
8571
8573
  | value | string | no | |
8574
+ | is_selected | boolean | no | |
8575
+ | name | string | no | |
8572
8576
 
8573
8577
  ---
8574
8578
 
@@ -8581,8 +8585,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8581
8585
  | ---------- | ---- | -------- | ----------- |
8582
8586
  | filters | [[ProductFilters](#ProductFilters)] | no | |
8583
8587
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8584
- | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8585
8588
  | page | [Page](#Page) | yes | |
8589
+ | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8586
8590
 
8587
8591
  ---
8588
8592
 
@@ -8605,15 +8609,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8605
8609
 
8606
8610
  | Properties | Type | Nullable | Description |
8607
8611
  | ---------- | ---- | -------- | ----------- |
8608
- | description | string | no | |
8609
- | banners | [ImageUrls](#ImageUrls) | no | |
8610
- | action | [ProductListingAction](#ProductListingAction) | no | |
8611
8612
  | uid | number | no | |
8613
+ | banners | [ImageUrls](#ImageUrls) | no | |
8614
+ | description | string | no | |
8612
8615
  | discount | string | no | |
8616
+ | slug | string | no | |
8617
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8618
+ | departments | [string] | no | |
8613
8619
  | logo | [Media](#Media) | no | |
8614
8620
  | name | string | no | |
8615
- | departments | [string] | no | |
8616
- | slug | string | no | |
8617
8621
 
8618
8622
  ---
8619
8623
 
@@ -8636,9 +8640,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8636
8640
 
8637
8641
  | Properties | Type | Nullable | Description |
8638
8642
  | ---------- | ---- | -------- | ----------- |
8639
- | description | string | no | |
8640
8643
  | banners | [ImageUrls](#ImageUrls) | no | |
8641
8644
  | uid | number | no | |
8645
+ | description | string | no | |
8642
8646
  | logo | [Media](#Media) | no | |
8643
8647
  | name | string | no | |
8644
8648
 
@@ -8647,6 +8651,18 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8647
8651
 
8648
8652
 
8649
8653
 
8654
+ #### [DepartmentIdentifier](#DepartmentIdentifier)
8655
+
8656
+ | Properties | Type | Nullable | Description |
8657
+ | ---------- | ---- | -------- | ----------- |
8658
+ | uid | number | no | |
8659
+ | slug | string | no | |
8660
+
8661
+ ---
8662
+
8663
+
8664
+
8665
+
8650
8666
  #### [CategoryBanner](#CategoryBanner)
8651
8667
 
8652
8668
  | Properties | Type | Nullable | Description |
@@ -8663,13 +8679,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8663
8679
 
8664
8680
  | Properties | Type | Nullable | Description |
8665
8681
  | ---------- | ---- | -------- | ----------- |
8666
- | _custom_json | string | no | |
8667
8682
  | banners | [ImageUrls](#ImageUrls) | no | |
8668
- | action | [ProductListingAction](#ProductListingAction) | no | |
8669
8683
  | uid | number | no | |
8684
+ | slug | string | no | |
8685
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8670
8686
  | childs | [string] | no | |
8687
+ | _custom_json | string | no | |
8671
8688
  | name | string | no | |
8672
- | slug | string | no | |
8673
8689
 
8674
8690
  ---
8675
8691
 
@@ -8680,13 +8696,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8680
8696
 
8681
8697
  | Properties | Type | Nullable | Description |
8682
8698
  | ---------- | ---- | -------- | ----------- |
8683
- | _custom_json | string | no | |
8684
8699
  | banners | [ImageUrls](#ImageUrls) | no | |
8685
- | action | [ProductListingAction](#ProductListingAction) | no | |
8686
8700
  | uid | number | no | |
8701
+ | slug | string | no | |
8702
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8687
8703
  | childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
8704
+ | _custom_json | string | no | |
8688
8705
  | name | string | no | |
8689
- | slug | string | no | |
8690
8706
 
8691
8707
  ---
8692
8708
 
@@ -8697,13 +8713,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8697
8713
 
8698
8714
  | Properties | Type | Nullable | Description |
8699
8715
  | ---------- | ---- | -------- | ----------- |
8700
- | _custom_json | string | no | |
8701
8716
  | banners | [ImageUrls](#ImageUrls) | no | |
8702
- | action | [ProductListingAction](#ProductListingAction) | no | |
8703
8717
  | uid | number | no | |
8718
+ | slug | string | no | |
8719
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8704
8720
  | childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
8721
+ | _custom_json | string | no | |
8705
8722
  | name | string | no | |
8706
- | slug | string | no | |
8707
8723
 
8708
8724
  ---
8709
8725
 
@@ -8715,11 +8731,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8715
8731
  | Properties | Type | Nullable | Description |
8716
8732
  | ---------- | ---- | -------- | ----------- |
8717
8733
  | banners | [CategoryBanner](#CategoryBanner) | yes | |
8718
- | action | [ProductListingAction](#ProductListingAction) | yes | |
8719
8734
  | uid | number | yes | |
8735
+ | slug | string | yes | |
8736
+ | action | [ProductListingAction](#ProductListingAction) | yes | |
8720
8737
  | childs | [[Child](#Child)] | no | |
8721
8738
  | name | string | yes | |
8722
- | slug | string | yes | |
8723
8739
 
8724
8740
  ---
8725
8741
 
@@ -8738,24 +8754,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8738
8754
 
8739
8755
 
8740
8756
 
8741
- #### [DepartmentIdentifier](#DepartmentIdentifier)
8742
-
8743
- | Properties | Type | Nullable | Description |
8744
- | ---------- | ---- | -------- | ----------- |
8745
- | uid | number | no | |
8746
- | slug | string | no | |
8747
-
8748
- ---
8749
-
8750
-
8751
-
8752
-
8753
8757
  #### [CategoryListingResponse](#CategoryListingResponse)
8754
8758
 
8755
8759
  | Properties | Type | Nullable | Description |
8756
8760
  | ---------- | ---- | -------- | ----------- |
8757
- | data | [[DepartmentCategoryTree](#DepartmentCategoryTree)] | no | |
8758
8761
  | departments | [[DepartmentIdentifier](#DepartmentIdentifier)] | no | |
8762
+ | data | [[DepartmentCategoryTree](#DepartmentCategoryTree)] | no | |
8759
8763
 
8760
8764
  ---
8761
8765
 
@@ -8766,10 +8770,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8766
8770
 
8767
8771
  | Properties | Type | Nullable | Description |
8768
8772
  | ---------- | ---- | -------- | ----------- |
8769
- | uid | number | no | |
8773
+ | banners | [ImageUrls](#ImageUrls) | no | |
8770
8774
  | logo | [Media](#Media) | no | |
8775
+ | uid | number | no | |
8771
8776
  | name | string | no | |
8772
- | banners | [ImageUrls](#ImageUrls) | no | |
8773
8777
 
8774
8778
  ---
8775
8779
 
@@ -8793,11 +8797,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8793
8797
 
8794
8798
  | Properties | Type | Nullable | Description |
8795
8799
  | ---------- | ---- | -------- | ----------- |
8796
- | priority_order | number | no | |
8797
8800
  | uid | number | no | |
8801
+ | slug | string | no | |
8802
+ | priority_order | number | no | |
8798
8803
  | logo | [Media](#Media) | no | |
8799
8804
  | name | string | no | |
8800
- | slug | string | no | |
8801
8805
 
8802
8806
  ---
8803
8807
 
@@ -8819,10 +8823,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8819
8823
 
8820
8824
  | Properties | Type | Nullable | Description |
8821
8825
  | ---------- | ---- | -------- | ----------- |
8822
- | _custom_json | string | no | |
8823
8826
  | type | string | no | |
8824
8827
  | action | [ProductListingAction](#ProductListingAction) | no | |
8825
8828
  | logo | [Media](#Media) | no | |
8829
+ | _custom_json | string | no | |
8826
8830
  | display | string | no | |
8827
8831
 
8828
8832
  ---
@@ -8841,26 +8845,26 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8841
8845
 
8842
8846
 
8843
8847
 
8844
- #### [CollectionListingFilterType](#CollectionListingFilterType)
8848
+ #### [CollectionListingFilterTag](#CollectionListingFilterTag)
8845
8849
 
8846
8850
  | Properties | Type | Nullable | Description |
8847
8851
  | ---------- | ---- | -------- | ----------- |
8848
- | name | string | no | |
8849
8852
  | is_selected | boolean | no | |
8850
8853
  | display | string | no | |
8854
+ | name | string | no | |
8851
8855
 
8852
8856
  ---
8853
8857
 
8854
8858
 
8855
8859
 
8856
8860
 
8857
- #### [CollectionListingFilterTag](#CollectionListingFilterTag)
8861
+ #### [CollectionListingFilterType](#CollectionListingFilterType)
8858
8862
 
8859
8863
  | Properties | Type | Nullable | Description |
8860
8864
  | ---------- | ---- | -------- | ----------- |
8861
- | name | string | no | |
8862
8865
  | is_selected | boolean | no | |
8863
8866
  | display | string | no | |
8867
+ | name | string | no | |
8864
8868
 
8865
8869
  ---
8866
8870
 
@@ -8871,8 +8875,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8871
8875
 
8872
8876
  | Properties | Type | Nullable | Description |
8873
8877
  | ---------- | ---- | -------- | ----------- |
8874
- | type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
8875
8878
  | tags | [[CollectionListingFilterTag](#CollectionListingFilterTag)] | no | |
8879
+ | type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
8876
8880
 
8877
8881
  ---
8878
8882
 
@@ -8883,9 +8887,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8883
8887
 
8884
8888
  | Properties | Type | Nullable | Description |
8885
8889
  | ---------- | ---- | -------- | ----------- |
8890
+ | value | [any] | yes | |
8886
8891
  | op | string | yes | |
8887
8892
  | attribute | string | yes | |
8888
- | value | [any] | yes | |
8889
8893
 
8890
8894
  ---
8891
8895
 
@@ -8896,27 +8900,27 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8896
8900
 
8897
8901
  | Properties | Type | Nullable | Description |
8898
8902
  | ---------- | ---- | -------- | ----------- |
8899
- | description | string | no | |
8900
- | logo | [Media](#Media) | no | |
8901
- | tag | [string] | no | |
8902
- | allow_facets | boolean | no | |
8903
+ | uid | string | no | |
8903
8904
  | query | [[CollectionQuery](#CollectionQuery)] | no | |
8904
- | name | string | no | |
8905
- | meta | string | no | |
8906
- | slug | string | no | |
8907
- | priority | number | no | |
8908
- | type | string | no | |
8909
8905
  | sort_on | string | no | |
8910
8906
  | allow_sort | boolean | no | |
8911
- | action | [ProductListingAction](#ProductListingAction) | no | |
8912
- | uid | string | no | |
8913
- | cron | string | no | |
8914
- | badge | string | no | |
8915
8907
  | visible_facets_keys | [string] | no | |
8916
- | _schedule | string | no | |
8917
8908
  | banners | [ImageUrls](#ImageUrls) | no | |
8918
- | is_active | boolean | no | |
8909
+ | slug | string | no | |
8910
+ | cron | string | no | |
8911
+ | meta | string | no | |
8912
+ | logo | [Media](#Media) | no | |
8919
8913
  | app_id | string | no | |
8914
+ | is_active | boolean | no | |
8915
+ | badge | string | no | |
8916
+ | type | string | no | |
8917
+ | tag | [string] | no | |
8918
+ | description | string | no | |
8919
+ | priority | number | no | |
8920
+ | allow_facets | boolean | no | |
8921
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8922
+ | _schedule | string | no | |
8923
+ | name | string | no | |
8920
8924
 
8921
8925
  ---
8922
8926
 
@@ -8940,25 +8944,25 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8940
8944
 
8941
8945
  | Properties | Type | Nullable | Description |
8942
8946
  | ---------- | ---- | -------- | ----------- |
8943
- | description | string | no | |
8944
- | logo | [Media](#Media) | no | |
8945
- | tag | [string] | no | |
8946
- | allow_facets | boolean | no | |
8947
8947
  | query | [[CollectionQuery](#CollectionQuery)] | no | |
8948
- | name | string | no | |
8949
- | meta | string | no | |
8950
- | slug | string | no | |
8951
- | priority | number | no | |
8952
- | type | string | no | |
8953
8948
  | sort_on | string | no | |
8954
8949
  | allow_sort | boolean | no | |
8955
- | cron | string | no | |
8956
- | badge | string | no | |
8957
8950
  | visible_facets_keys | [string] | no | |
8958
- | _schedule | string | no | |
8959
8951
  | banners | [ImageUrls](#ImageUrls) | no | |
8960
- | is_active | boolean | no | |
8952
+ | slug | string | no | |
8953
+ | cron | string | no | |
8954
+ | meta | string | no | |
8955
+ | logo | [Media](#Media) | no | |
8961
8956
  | app_id | string | no | |
8957
+ | is_active | boolean | no | |
8958
+ | badge | string | no | |
8959
+ | type | string | no | |
8960
+ | tag | [string] | no | |
8961
+ | description | string | no | |
8962
+ | priority | number | no | |
8963
+ | allow_facets | boolean | no | |
8964
+ | _schedule | string | no | |
8965
+ | name | string | no | |
8962
8966
 
8963
8967
  ---
8964
8968
 
@@ -9005,8 +9009,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9005
9009
  | Properties | Type | Nullable | Description |
9006
9010
  | ---------- | ---- | -------- | ----------- |
9007
9011
  | brands | [number] | no | |
9008
- | products | [number] | no | |
9009
9012
  | collections | [number] | no | |
9013
+ | products | [number] | no | |
9010
9014
 
9011
9015
  ---
9012
9016
 
@@ -9028,8 +9032,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9028
9032
 
9029
9033
  | Properties | Type | Nullable | Description |
9030
9034
  | ---------- | ---- | -------- | ----------- |
9031
- | coordinates | [number] | no | |
9032
9035
  | type | string | no | |
9036
+ | coordinates | [number] | no | |
9033
9037
 
9034
9038
  ---
9035
9039
 
@@ -9040,16 +9044,16 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9040
9044
 
9041
9045
  | Properties | Type | Nullable | Description |
9042
9046
  | ---------- | ---- | -------- | ----------- |
9047
+ | uid | number | no | |
9048
+ | state | string | no | |
9049
+ | pincode | number | no | |
9043
9050
  | store_email | string | no | |
9051
+ | lat_long | [LatLong](#LatLong) | no | |
9052
+ | address | string | no | |
9044
9053
  | country | string | no | |
9045
9054
  | store_code | string | no | |
9046
- | uid | number | no | |
9047
9055
  | city | string | no | |
9048
- | state | string | no | |
9049
9056
  | name | string | no | |
9050
- | pincode | number | no | |
9051
- | address | string | no | |
9052
- | lat_long | [LatLong](#LatLong) | no | |
9053
9057
 
9054
9058
  ---
9055
9059
 
@@ -9072,11 +9076,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9072
9076
 
9073
9077
  | Properties | Type | Nullable | Description |
9074
9078
  | ---------- | ---- | -------- | ----------- |
9075
- | priority_order | number | no | |
9076
9079
  | uid | number | no | |
9080
+ | slug | string | no | |
9081
+ | priority_order | number | no | |
9077
9082
  | logo | string | no | |
9078
9083
  | name | string | no | |
9079
- | slug | string | no | |
9080
9084
 
9081
9085
  ---
9082
9086
 
@@ -9099,42 +9103,42 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9099
9103
 
9100
9104
  | Properties | Type | Nullable | Description |
9101
9105
  | ---------- | ---- | -------- | ----------- |
9102
- | name | string | no | |
9103
9106
  | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
9104
9107
  | email | string | no | |
9108
+ | name | string | no | |
9105
9109
 
9106
9110
  ---
9107
9111
 
9108
9112
 
9109
9113
 
9110
9114
 
9111
- #### [CompanyStore](#CompanyStore)
9115
+ #### [StoreAddressSerializer](#StoreAddressSerializer)
9112
9116
 
9113
9117
  | Properties | Type | Nullable | Description |
9114
9118
  | ---------- | ---- | -------- | ----------- |
9115
- | business_type | string | no | |
9116
- | uid | number | no | |
9117
- | name | string | no | |
9118
- | company_type | string | no | |
9119
+ | state | string | no | |
9120
+ | address2 | string | no | |
9121
+ | pincode | number | no | |
9122
+ | latitude | number | no | |
9123
+ | longitude | number | no | |
9124
+ | address1 | string | no | |
9125
+ | country | string | no | |
9126
+ | landmark | string | no | |
9127
+ | city | string | no | |
9119
9128
 
9120
9129
  ---
9121
9130
 
9122
9131
 
9123
9132
 
9124
9133
 
9125
- #### [StoreAddressSerializer](#StoreAddressSerializer)
9134
+ #### [CompanyStore](#CompanyStore)
9126
9135
 
9127
9136
  | Properties | Type | Nullable | Description |
9128
9137
  | ---------- | ---- | -------- | ----------- |
9129
- | latitude | number | no | |
9130
- | country | string | no | |
9131
- | landmark | string | no | |
9132
- | city | string | no | |
9133
- | longitude | number | no | |
9134
- | state | string | no | |
9135
- | pincode | number | no | |
9136
- | address1 | string | no | |
9137
- | address2 | string | no | |
9138
+ | uid | number | no | |
9139
+ | business_type | string | no | |
9140
+ | company_type | string | no | |
9141
+ | name | string | no | |
9138
9142
 
9139
9143
  ---
9140
9144
 
@@ -9145,13 +9149,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9145
9149
 
9146
9150
  | Properties | Type | Nullable | Description |
9147
9151
  | ---------- | ---- | -------- | ----------- |
9152
+ | uid | number | no | |
9148
9153
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9149
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9154
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9155
+ | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9150
9156
  | company | [CompanyStore](#CompanyStore) | no | |
9151
- | uid | number | no | |
9157
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9152
9158
  | name | string | no | |
9153
- | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9154
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9155
9159
 
9156
9160
  ---
9157
9161
 
@@ -9175,8 +9179,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9175
9179
 
9176
9180
  | Properties | Type | Nullable | Description |
9177
9181
  | ---------- | ---- | -------- | ----------- |
9178
- | minute | number | no | |
9179
9182
  | hour | number | no | |
9183
+ | minute | number | no | |
9180
9184
 
9181
9185
  ---
9182
9186
 
@@ -9187,9 +9191,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9187
9191
 
9188
9192
  | Properties | Type | Nullable | Description |
9189
9193
  | ---------- | ---- | -------- | ----------- |
9194
+ | closing | [Time](#Time) | no | |
9190
9195
  | open | boolean | no | |
9191
9196
  | weekday | string | no | |
9192
- | closing | [Time](#Time) | no | |
9193
9197
  | opening | [Time](#Time) | no | |
9194
9198
 
9195
9199
  ---
@@ -9201,15 +9205,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9201
9205
 
9202
9206
  | Properties | Type | Nullable | Description |
9203
9207
  | ---------- | ---- | -------- | ----------- |
9208
+ | uid | number | no | |
9204
9209
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9210
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9211
+ | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9212
+ | company | [CompanyStore](#CompanyStore) | no | |
9213
+ | timing | [[StoreTiming](#StoreTiming)] | no | |
9205
9214
  | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9206
9215
  | _custom_json | string | no | |
9207
- | company | [CompanyStore](#CompanyStore) | no | |
9208
- | uid | number | no | |
9209
9216
  | name | string | no | |
9210
- | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9211
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9212
- | timing | [[StoreTiming](#StoreTiming)] | no | |
9213
9217
 
9214
9218
  ---
9215
9219
 
@@ -9220,10 +9224,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9220
9224
 
9221
9225
  | Properties | Type | Nullable | Description |
9222
9226
  | ---------- | ---- | -------- | ----------- |
9223
- | user_id | string | yes | |
9224
9227
  | username | string | yes | |
9225
9228
  | super_user | boolean | no | |
9226
9229
  | contact | string | no | |
9230
+ | user_id | string | yes | |
9227
9231
 
9228
9232
  ---
9229
9233
 
@@ -9234,56 +9238,56 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9234
9238
 
9235
9239
  | Properties | Type | Nullable | Description |
9236
9240
  | ---------- | ---- | -------- | ----------- |
9237
- | min_effective | number | no | |
9238
- | currency | any | no | |
9239
9241
  | min_marked | number | no | |
9242
+ | min_effective | number | no | |
9240
9243
  | max_effective | number | no | |
9241
9244
  | max_marked | number | no | |
9245
+ | currency | any | no | |
9242
9246
 
9243
9247
  ---
9244
9248
 
9245
9249
 
9246
9250
 
9247
9251
 
9248
- #### [Size](#Size)
9252
+ #### [ProductDetails](#ProductDetails)
9249
9253
 
9250
9254
  | Properties | Type | Nullable | Description |
9251
9255
  | ---------- | ---- | -------- | ----------- |
9252
- | quantity | number | no | |
9253
- | display | any | no | |
9254
- | is_available | boolean | no | |
9255
- | value | any | no | |
9256
+ | country_of_origin | any | no | |
9257
+ | images | [any] | no | |
9258
+ | hsn_code | number | no | |
9259
+ | short_description | any | no | |
9260
+ | out_of_stock | boolean | no | |
9261
+ | template_tag | any | no | |
9262
+ | has_variant | boolean | no | |
9263
+ | grouped_attributes | string | no | |
9264
+ | attributes | string | no | |
9265
+ | slug | any | no | |
9266
+ | rating | number | no | |
9267
+ | image_nature | any | no | |
9268
+ | brand_uid | number | no | |
9269
+ | item_code | any | no | |
9270
+ | identifier | string | no | |
9271
+ | is_set | boolean | no | |
9272
+ | description | any | no | |
9273
+ | media | [string] | no | |
9274
+ | rating_count | number | no | |
9275
+ | highlights | [any] | no | |
9276
+ | name | any | no | |
9256
9277
 
9257
9278
  ---
9258
9279
 
9259
9280
 
9260
9281
 
9261
9282
 
9262
- #### [ProductDetails](#ProductDetails)
9283
+ #### [Size](#Size)
9263
9284
 
9264
9285
  | Properties | Type | Nullable | Description |
9265
9286
  | ---------- | ---- | -------- | ----------- |
9266
- | description | any | no | |
9267
- | country_of_origin | any | no | |
9268
- | is_set | boolean | no | |
9269
- | media | [string] | no | |
9270
- | attributes | string | no | |
9271
- | has_variant | boolean | no | |
9272
- | brand_uid | number | no | |
9273
- | image_nature | any | no | |
9274
- | template_tag | any | no | |
9275
- | images | [any] | no | |
9276
- | short_description | any | no | |
9277
- | name | any | no | |
9278
- | item_code | any | no | |
9279
- | slug | any | no | |
9280
- | hsn_code | number | no | |
9281
- | rating | number | no | |
9282
- | highlights | [any] | no | |
9283
- | grouped_attributes | string | no | |
9284
- | rating_count | number | no | |
9285
- | out_of_stock | boolean | no | |
9286
- | identifier | string | no | |
9287
+ | is_available | boolean | no | |
9288
+ | value | any | no | |
9289
+ | quantity | number | no | |
9290
+ | display | any | no | |
9287
9291
 
9288
9292
  ---
9289
9293
 
@@ -9294,15 +9298,15 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9294
9298
 
9295
9299
  | Properties | Type | Nullable | Description |
9296
9300
  | ---------- | ---- | -------- | ----------- |
9297
- | max_quantity | number | yes | |
9298
9301
  | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9299
- | allow_remove | boolean | no | |
9302
+ | product_details | [ProductDetails](#ProductDetails) | no | |
9300
9303
  | auto_select | boolean | no | |
9301
- | auto_add_to_cart | boolean | no | |
9304
+ | product_uid | number | yes | |
9302
9305
  | sizes | [[Size](#Size)] | no | |
9306
+ | auto_add_to_cart | boolean | no | |
9307
+ | allow_remove | boolean | no | |
9308
+ | max_quantity | number | yes | |
9303
9309
  | min_quantity | number | no | |
9304
- | product_uid | number | yes | |
9305
- | product_details | [ProductDetails](#ProductDetails) | no | |
9306
9310
 
9307
9311
  ---
9308
9312
 
@@ -9313,23 +9317,23 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9313
9317
 
9314
9318
  | Properties | Type | Nullable | Description |
9315
9319
  | ---------- | ---- | -------- | ----------- |
9316
- | created_on | string | yes | |
9317
- | verified_by | [UserDetail](#UserDetail) | no | |
9318
- | slug | any | no | |
9320
+ | choice | any | no | |
9321
+ | name | any | yes | |
9322
+ | modified_by | [UserDetail](#UserDetail) | no | |
9319
9323
  | same_store_assignment | boolean | no | |
9324
+ | _id | any | no | |
9325
+ | verified_on | string | no | |
9326
+ | slug | any | no | |
9320
9327
  | is_active | boolean | no | |
9321
9328
  | page_visibility | [any] | no | |
9322
- | company_id | number | no | |
9323
- | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9324
- | logo | string | no | |
9325
9329
  | created_by | [UserDetail](#UserDetail) | no | |
9326
- | name | any | yes | |
9327
- | verified_on | string | no | |
9328
- | modified_by | [UserDetail](#UserDetail) | no | |
9330
+ | verified_by | [UserDetail](#UserDetail) | no | |
9329
9331
  | meta | string | no | |
9332
+ | logo | string | no | |
9333
+ | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9330
9334
  | modified_on | string | yes | |
9331
- | choice | any | no | |
9332
- | _id | any | no | |
9335
+ | company_id | number | no | |
9336
+ | created_on | string | yes | |
9333
9337
 
9334
9338
  ---
9335
9339
 
@@ -9347,164 +9351,164 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9347
9351
 
9348
9352
 
9349
9353
 
9350
- #### [ReturnConfigSchemaV2](#ReturnConfigSchemaV2)
9354
+ #### [StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)
9351
9355
 
9352
9356
  | Properties | Type | Nullable | Description |
9353
9357
  | ---------- | ---- | -------- | ----------- |
9354
- | time | number | no | |
9355
- | returnable | boolean | no | |
9356
- | unit | string | no | |
9358
+ | quantity | number | no | |
9359
+ | tat | number | no | |
9360
+ | distance | number | no | |
9361
+ | pincode | number | no | |
9357
9362
 
9358
9363
  ---
9359
9364
 
9360
9365
 
9361
9366
 
9362
9367
 
9363
- #### [StoreV2](#StoreV2)
9368
+ #### [ArticleAssignmentV2](#ArticleAssignmentV2)
9364
9369
 
9365
9370
  | Properties | Type | Nullable | Description |
9366
9371
  | ---------- | ---- | -------- | ----------- |
9367
- | uid | number | no | |
9368
- | name | string | no | |
9369
- | count | number | no | |
9372
+ | level | string | no | |
9373
+ | strategy | string | no | |
9370
9374
 
9371
9375
  ---
9372
9376
 
9373
9377
 
9374
9378
 
9375
9379
 
9376
- #### [ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)
9380
+ #### [DetailsSchemaV2](#DetailsSchemaV2)
9377
9381
 
9378
9382
  | Properties | Type | Nullable | Description |
9379
9383
  | ---------- | ---- | -------- | ----------- |
9380
- | size | string | no | |
9381
- | pieces | number | no | |
9384
+ | key | string | no | |
9385
+ | value | string | no | |
9386
+ | type | string | no | |
9382
9387
 
9383
9388
  ---
9384
9389
 
9385
9390
 
9386
9391
 
9387
9392
 
9388
- #### [ProductSetDistributionV2](#ProductSetDistributionV2)
9393
+ #### [SellerGroupAttributes](#SellerGroupAttributes)
9389
9394
 
9390
9395
  | Properties | Type | Nullable | Description |
9391
9396
  | ---------- | ---- | -------- | ----------- |
9392
- | sizes | [[ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)] | no | |
9397
+ | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9398
+ | title | string | no | |
9393
9399
 
9394
9400
  ---
9395
9401
 
9396
9402
 
9397
9403
 
9398
9404
 
9399
- #### [ProductSetV2](#ProductSetV2)
9405
+ #### [ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)
9400
9406
 
9401
9407
  | Properties | Type | Nullable | Description |
9402
9408
  | ---------- | ---- | -------- | ----------- |
9403
- | quantity | number | no | |
9404
- | size_distribution | [ProductSetDistributionV2](#ProductSetDistributionV2) | no | |
9409
+ | size | string | no | |
9410
+ | pieces | number | no | |
9405
9411
 
9406
9412
  ---
9407
9413
 
9408
9414
 
9409
9415
 
9410
9416
 
9411
- #### [ProductStockPriceV2](#ProductStockPriceV2)
9417
+ #### [ProductSetDistributionV2](#ProductSetDistributionV2)
9412
9418
 
9413
9419
  | Properties | Type | Nullable | Description |
9414
9420
  | ---------- | ---- | -------- | ----------- |
9415
- | marked | number | no | |
9416
- | effective | number | no | |
9417
- | currency | string | no | |
9421
+ | sizes | [[ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)] | no | |
9418
9422
 
9419
9423
  ---
9420
9424
 
9421
9425
 
9422
9426
 
9423
9427
 
9424
- #### [StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)
9428
+ #### [ProductSetV2](#ProductSetV2)
9425
9429
 
9426
9430
  | Properties | Type | Nullable | Description |
9427
9431
  | ---------- | ---- | -------- | ----------- |
9432
+ | size_distribution | [ProductSetDistributionV2](#ProductSetDistributionV2) | no | |
9428
9433
  | quantity | number | no | |
9429
- | distance | number | no | |
9430
- | pincode | number | no | |
9431
- | tat | number | no | |
9432
9434
 
9433
9435
  ---
9434
9436
 
9435
9437
 
9436
9438
 
9437
9439
 
9438
- #### [ProductStockUnitPriceV2](#ProductStockUnitPriceV2)
9440
+ #### [ReturnConfigSchemaV2](#ReturnConfigSchemaV2)
9439
9441
 
9440
9442
  | Properties | Type | Nullable | Description |
9441
9443
  | ---------- | ---- | -------- | ----------- |
9444
+ | time | number | no | |
9445
+ | returnable | boolean | no | |
9442
9446
  | unit | string | no | |
9443
- | currency_code | string | no | |
9444
- | currency_symbol | string | no | |
9445
- | price | number | no | |
9446
9447
 
9447
9448
  ---
9448
9449
 
9449
9450
 
9450
9451
 
9451
9452
 
9452
- #### [ArticleAssignmentV2](#ArticleAssignmentV2)
9453
+ #### [MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)
9453
9454
 
9454
9455
  | Properties | Type | Nullable | Description |
9455
9456
  | ---------- | ---- | -------- | ----------- |
9456
- | level | string | no | |
9457
- | strategy | string | no | |
9457
+ | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9458
+ | title | string | no | |
9458
9459
 
9459
9460
  ---
9460
9461
 
9461
9462
 
9462
9463
 
9463
9464
 
9464
- #### [SellerV2](#SellerV2)
9465
+ #### [ProductStockUnitPriceV2](#ProductStockUnitPriceV2)
9465
9466
 
9466
9467
  | Properties | Type | Nullable | Description |
9467
9468
  | ---------- | ---- | -------- | ----------- |
9468
- | uid | number | no | |
9469
- | name | string | no | |
9470
- | count | number | no | |
9469
+ | price | number | no | |
9470
+ | currency_symbol | string | no | |
9471
+ | unit | string | no | |
9472
+ | currency_code | string | no | |
9471
9473
 
9472
9474
  ---
9473
9475
 
9474
9476
 
9475
9477
 
9476
9478
 
9477
- #### [DetailsSchemaV2](#DetailsSchemaV2)
9479
+ #### [ProductStockPriceV2](#ProductStockPriceV2)
9478
9480
 
9479
9481
  | Properties | Type | Nullable | Description |
9480
9482
  | ---------- | ---- | -------- | ----------- |
9481
- | key | string | no | |
9482
- | type | string | no | |
9483
- | value | string | no | |
9483
+ | currency | string | no | |
9484
+ | effective | number | no | |
9485
+ | marked | number | no | |
9484
9486
 
9485
9487
  ---
9486
9488
 
9487
9489
 
9488
9490
 
9489
9491
 
9490
- #### [SellerGroupAttributes](#SellerGroupAttributes)
9492
+ #### [SellerV2](#SellerV2)
9491
9493
 
9492
9494
  | Properties | Type | Nullable | Description |
9493
9495
  | ---------- | ---- | -------- | ----------- |
9494
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9495
- | title | string | no | |
9496
+ | uid | number | no | |
9497
+ | count | number | no | |
9498
+ | name | string | no | |
9496
9499
 
9497
9500
  ---
9498
9501
 
9499
9502
 
9500
9503
 
9501
9504
 
9502
- #### [MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)
9505
+ #### [StoreV2](#StoreV2)
9503
9506
 
9504
9507
  | Properties | Type | Nullable | Description |
9505
9508
  | ---------- | ---- | -------- | ----------- |
9506
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9507
- | title | string | no | |
9509
+ | uid | number | no | |
9510
+ | count | number | no | |
9511
+ | name | string | no | |
9508
9512
 
9509
9513
  ---
9510
9514
 
@@ -9515,27 +9519,27 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9515
9519
 
9516
9520
  | Properties | Type | Nullable | Description |
9517
9521
  | ---------- | ---- | -------- | ----------- |
9518
- | return_config | [ReturnConfigSchemaV2](#ReturnConfigSchemaV2) | no | |
9519
9522
  | article_id | string | no | |
9520
- | long_lat | [number] | no | |
9521
- | store | [StoreV2](#StoreV2) | no | |
9522
- | set | [ProductSetV2](#ProductSetV2) | no | |
9523
- | price | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9524
- | item_type | string | no | |
9525
9523
  | strategy_wise_listing | [[StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)] | no | |
9526
- | special_badge | string | no | |
9527
- | price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
9524
+ | is_gift | boolean | no | |
9525
+ | article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
9526
+ | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9527
+ | set | [ProductSetV2](#ProductSetV2) | no | |
9528
9528
  | quantity | number | no | |
9529
+ | is_cod | boolean | no | |
9530
+ | long_lat | [number] | no | |
9531
+ | return_config | [ReturnConfigSchemaV2](#ReturnConfigSchemaV2) | no | |
9532
+ | marketplace_attributes | [[MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)] | no | |
9529
9533
  | pincode | number | no | |
9530
- | article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
9534
+ | price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
9531
9535
  | seller_count | number | no | |
9532
- | is_cod | boolean | no | |
9533
- | seller | [SellerV2](#SellerV2) | no | |
9534
- | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9535
- | discount | string | no | |
9536
+ | special_badge | string | no | |
9537
+ | item_type | string | no | |
9538
+ | price | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9536
9539
  | price_per_piece | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9537
- | is_gift | boolean | no | |
9538
- | marketplace_attributes | [[MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)] | no | |
9540
+ | discount | string | no | |
9541
+ | seller | [SellerV2](#SellerV2) | no | |
9542
+ | store | [StoreV2](#StoreV2) | no | |
9539
9543
 
9540
9544
  ---
9541
9545
 
@@ -9546,9 +9550,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9546
9550
 
9547
9551
  | Properties | Type | Nullable | Description |
9548
9552
  | ---------- | ---- | -------- | ----------- |
9549
- | name | string | no | |
9550
- | is_selected | boolean | no | |
9551
9553
  | value | string | no | |
9554
+ | is_selected | boolean | no | |
9555
+ | name | string | no | |
9552
9556
 
9553
9557
  ---
9554
9558
 
@@ -9560,8 +9564,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9560
9564
  | Properties | Type | Nullable | Description |
9561
9565
  | ---------- | ---- | -------- | ----------- |
9562
9566
  | items | [[ProductSizePriceResponseV2](#ProductSizePriceResponseV2)] | no | |
9563
- | sort_on | [[ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)] | no | |
9564
9567
  | page | [Page](#Page) | yes | |
9568
+ | sort_on | [[ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)] | no | |
9565
9569
 
9566
9570
  ---
9567
9571