@gofynd/fdk-client-javascript 0.1.35 → 0.1.37

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 (118) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +272 -249
  3. package/documentation/application/CATALOG.md +417 -413
  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 +427 -101
  11. package/documentation/application/ORDER.md +292 -288
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +309 -286
  14. package/documentation/application/README.md +1 -1
  15. package/documentation/application/REWARDS.md +153 -160
  16. package/documentation/application/SHARE.md +4 -0
  17. package/documentation/application/THEME.md +4 -0
  18. package/documentation/application/USER.md +4 -0
  19. package/documentation/platform/ANALYTICS.md +4 -0
  20. package/documentation/platform/AUDITTRAIL.md +6 -2
  21. package/documentation/platform/BILLING.md +4 -0
  22. package/documentation/platform/CART.md +476 -459
  23. package/documentation/platform/CATALOG.md +4138 -2968
  24. package/documentation/platform/COMMON.md +4 -0
  25. package/documentation/platform/COMMUNICATION.md +4 -0
  26. package/documentation/platform/COMPANYPROFILE.md +258 -206
  27. package/documentation/platform/CONFIGURATION.md +4 -0
  28. package/documentation/platform/CONTENT.md +8 -21
  29. package/documentation/platform/DISCOUNT.md +4 -0
  30. package/documentation/platform/FILESTORAGE.md +85 -0
  31. package/documentation/platform/INVENTORY.md +4 -0
  32. package/documentation/platform/LEAD.md +6 -2
  33. package/documentation/platform/ORDER.md +6298 -1448
  34. package/documentation/platform/PARTNER.md +12 -8
  35. package/documentation/platform/PAYMENT.md +107 -103
  36. package/documentation/platform/README.md +2 -2
  37. package/documentation/platform/REWARDS.md +219 -152
  38. package/documentation/platform/SHARE.md +4 -0
  39. package/documentation/platform/THEME.md +4 -0
  40. package/documentation/platform/USER.md +4 -0
  41. package/documentation/platform/WEBHOOK.md +4 -0
  42. package/documentation/public/CONFIGURATION.md +4 -0
  43. package/documentation/public/INVENTORY.md +4 -0
  44. package/documentation/public/WEBHOOK.md +4 -0
  45. package/package.json +2 -2
  46. package/sdk/application/ApplicationAPIClient.js +3 -0
  47. package/sdk/application/ApplicationClient.d.ts +1 -0
  48. package/sdk/application/ApplicationClient.js +11 -1
  49. package/sdk/application/ApplicationConfig.d.ts +1 -0
  50. package/sdk/application/ApplicationConfig.js +1 -0
  51. package/sdk/application/ApplicationModels.d.ts +94 -85
  52. package/sdk/application/ApplicationModels.js +1909 -1792
  53. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  54. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  55. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  56. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  57. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  59. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  60. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  61. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  62. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  63. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  64. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  65. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  66. package/sdk/application/client/OrderApplicationClient.js +1 -1
  67. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  68. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  69. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  70. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  71. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  72. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  73. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  74. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  75. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  76. package/sdk/application/models/CatalogValidator.js +2 -2
  77. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  78. package/sdk/application/models/LogisticValidator.js +11 -6
  79. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  80. package/sdk/application/models/PaymentValidator.js +12 -0
  81. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  82. package/sdk/application/models/RewardsValidator.js +12 -12
  83. package/sdk/common/AxiosHelper.js +1 -1
  84. package/sdk/common/Constant.d.ts +9 -0
  85. package/sdk/common/Constant.js +11 -0
  86. package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
  87. package/sdk/platform/PlatformApplicationClient.js +4377 -3635
  88. package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
  89. package/sdk/platform/PlatformApplicationModels.js +5530 -4134
  90. package/sdk/platform/PlatformClient.d.ts +3495 -2780
  91. package/sdk/platform/PlatformClient.js +3985 -3108
  92. package/sdk/platform/PlatformModels.d.ts +354 -273
  93. package/sdk/platform/PlatformModels.js +5635 -4211
  94. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  95. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  96. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  97. package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
  98. package/sdk/platform/client/CatalogPlatformClient.js +473 -295
  99. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  100. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  101. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  102. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  103. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  104. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  105. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  106. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  107. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  108. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  109. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  110. package/sdk/platform/models/CatalogValidator.d.ts +26 -22
  111. package/sdk/platform/models/CatalogValidator.js +109 -72
  112. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  113. package/sdk/platform/models/OrderValidator.js +312 -51
  114. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  115. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  116. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  117. package/tests/common/schema/action-url.json +15 -0
  118. 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,25 +7885,26 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7881
7885
 
7882
7886
 
7883
7887
 
7884
- #### [Meta](#Meta)
7888
+ #### [Price](#Price)
7885
7889
 
7886
7890
  | Properties | Type | Nullable | Description |
7887
7891
  | ---------- | ---- | -------- | ----------- |
7888
- | source | string | no | |
7892
+ | currency_code | string | no | |
7893
+ | currency_symbol | string | no | |
7894
+ | max | number | no | |
7895
+ | min | number | no | |
7889
7896
 
7890
7897
  ---
7891
7898
 
7892
7899
 
7893
7900
 
7894
7901
 
7895
- #### [Media](#Media)
7902
+ #### [ProductListingPrice](#ProductListingPrice)
7896
7903
 
7897
7904
  | Properties | Type | Nullable | Description |
7898
7905
  | ---------- | ---- | -------- | ----------- |
7899
- | meta | [Meta](#Meta) | no | |
7900
- | alt | string | no | |
7901
- | type | string | no | |
7902
- | url | string | no | |
7906
+ | marked | [Price](#Price) | no | |
7907
+ | effective | [Price](#Price) | no | |
7903
7908
 
7904
7909
  ---
7905
7910
 
@@ -7910,9 +7915,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7910
7915
 
7911
7916
  | Properties | Type | Nullable | Description |
7912
7917
  | ---------- | ---- | -------- | ----------- |
7913
- | query | string | no | |
7914
- | params | string | no | |
7915
7918
  | type | string | no | |
7919
+ | params | string | no | |
7920
+ | query | string | no | |
7916
7921
 
7917
7922
  ---
7918
7923
 
@@ -7923,73 +7928,73 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
7923
7928
 
7924
7929
  | Properties | Type | Nullable | Description |
7925
7930
  | ---------- | ---- | -------- | ----------- |
7926
- | type | string | no | |
7927
7931
  | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7932
+ | type | string | no | |
7928
7933
 
7929
7934
  ---
7930
7935
 
7931
7936
 
7932
7937
 
7933
7938
 
7934
- #### [ProductBrand](#ProductBrand)
7939
+ #### [Meta](#Meta)
7935
7940
 
7936
7941
  | Properties | Type | Nullable | Description |
7937
7942
  | ---------- | ---- | -------- | ----------- |
7938
- | description | string | no | |
7939
- | action | [ProductListingAction](#ProductListingAction) | no | |
7940
- | uid | number | no | |
7941
- | logo | [Media](#Media) | no | |
7942
- | name | string | no | |
7943
+ | source | string | no | |
7943
7944
 
7944
7945
  ---
7945
7946
 
7946
7947
 
7947
7948
 
7948
7949
 
7949
- #### [Price](#Price)
7950
+ #### [Media](#Media)
7950
7951
 
7951
7952
  | Properties | Type | Nullable | Description |
7952
7953
  | ---------- | ---- | -------- | ----------- |
7953
- | max | number | no | |
7954
- | min | number | no | |
7955
- | currency_symbol | string | no | |
7956
- | currency_code | string | no | |
7954
+ | type | string | no | |
7955
+ | alt | string | no | |
7956
+ | meta | [Meta](#Meta) | no | |
7957
+ | url | string | no | |
7957
7958
 
7958
7959
  ---
7959
7960
 
7960
7961
 
7961
7962
 
7962
7963
 
7963
- #### [ProductListingPrice](#ProductListingPrice)
7964
+ #### [ProductBrand](#ProductBrand)
7964
7965
 
7965
7966
  | Properties | Type | Nullable | Description |
7966
7967
  | ---------- | ---- | -------- | ----------- |
7967
- | marked | [Price](#Price) | no | |
7968
- | effective | [Price](#Price) | no | |
7968
+ | action | [ProductListingAction](#ProductListingAction) | no | |
7969
+ | name | string | no | |
7970
+ | logo | [Media](#Media) | no | |
7971
+ | description | string | no | |
7972
+ | uid | number | no | |
7969
7973
 
7970
7974
  ---
7971
7975
 
7972
7976
 
7973
7977
 
7974
7978
 
7975
- #### [ApplicationItemSEO](#ApplicationItemSEO)
7979
+ #### [ProductDetailAttribute](#ProductDetailAttribute)
7976
7980
 
7977
7981
  | Properties | Type | Nullable | Description |
7978
7982
  | ---------- | ---- | -------- | ----------- |
7979
- | description | any | no | |
7980
- | title | any | no | |
7983
+ | type | string | no | |
7984
+ | key | string | no | |
7985
+ | value | string | no | |
7981
7986
 
7982
7987
  ---
7983
7988
 
7984
7989
 
7985
7990
 
7986
7991
 
7987
- #### [NetQuantity](#NetQuantity)
7992
+ #### [ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)
7988
7993
 
7989
7994
  | Properties | Type | Nullable | Description |
7990
7995
  | ---------- | ---- | -------- | ----------- |
7991
- | unit | any | no | |
7992
- | value | number | no | |
7996
+ | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
7997
+ | title | string | no | |
7993
7998
 
7994
7999
  ---
7995
8000
 
@@ -8008,38 +8013,37 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8008
8013
 
8009
8014
 
8010
8015
 
8011
- #### [ProductDetailAttribute](#ProductDetailAttribute)
8016
+ #### [ApplicationItemMOQ](#ApplicationItemMOQ)
8012
8017
 
8013
8018
  | Properties | Type | Nullable | Description |
8014
8019
  | ---------- | ---- | -------- | ----------- |
8015
- | key | string | no | |
8016
- | type | string | no | |
8017
- | value | string | no | |
8020
+ | increment_unit | number | no | |
8021
+ | minimum | number | no | |
8022
+ | maximum | number | no | |
8018
8023
 
8019
8024
  ---
8020
8025
 
8021
8026
 
8022
8027
 
8023
8028
 
8024
- #### [ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)
8029
+ #### [ApplicationItemSEO](#ApplicationItemSEO)
8025
8030
 
8026
8031
  | Properties | Type | Nullable | Description |
8027
8032
  | ---------- | ---- | -------- | ----------- |
8028
- | details | [[ProductDetailAttribute](#ProductDetailAttribute)] | no | |
8029
- | title | string | no | |
8033
+ | title | any | no | |
8034
+ | description | any | no | |
8030
8035
 
8031
8036
  ---
8032
8037
 
8033
8038
 
8034
8039
 
8035
8040
 
8036
- #### [ApplicationItemMOQ](#ApplicationItemMOQ)
8041
+ #### [NetQuantity](#NetQuantity)
8037
8042
 
8038
8043
  | Properties | Type | Nullable | Description |
8039
8044
  | ---------- | ---- | -------- | ----------- |
8040
- | maximum | number | no | |
8041
- | minimum | number | no | |
8042
- | increment_unit | number | no | |
8045
+ | unit | any | no | |
8046
+ | value | 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 | |
8057
+ | discount | string | no | |
8058
+ | teaser_tag | string | no | |
8056
8059
  | attributes | string | no | |
8057
- | has_variant | boolean | no | |
8058
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8059
- | image_nature | string | no | |
8060
8060
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8061
- | item_type | string | no | |
8062
- | tryouts | [string] | no | |
8061
+ | brand | [ProductBrand](#ProductBrand) | no | |
8062
+ | similars | [string] | no | |
8063
8063
  | short_description | string | no | |
8064
- | name | string | no | |
8065
- | item_code | string | no | |
8066
- | slug | string | yes | |
8067
- | is_dependent | boolean | no | |
8068
- | _custom_json | string | no | |
8064
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8065
+ | color | string | no | |
8066
+ | image_nature | string | no | |
8067
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8068
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8069
8069
  | rating | number | no | |
8070
- | type | string | no | |
8071
- | action | [ProductListingAction](#ProductListingAction) | no | |
8072
8070
  | uid | number | no | |
8071
+ | type | string | no | |
8072
+ | tryouts | [string] | no | |
8073
8073
  | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8074
+ | has_variant | boolean | no | |
8074
8075
  | tags | [string] | no | |
8076
+ | _custom_json | string | no | |
8075
8077
  | net_quantity | [NetQuantity](#NetQuantity) | no | |
8076
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8077
- | similars | [string] | no | |
8078
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8078
8079
  | highlights | [string] | no | |
8079
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8080
- | rating_count | number | no | |
8081
8080
  | product_online_date | string | no | |
8082
- | discount | string | no | |
8083
- | color | string | no | |
8084
- | teaser_tag | string | no | |
8085
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8081
+ | rating_count | number | no | |
8082
+ | name | string | no | |
8083
+ | description | string | no | |
8084
+ | medias | [[Media](#Media)] | no | |
8085
+ | slug | string | yes | |
8086
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8087
+ | is_dependent | boolean | no | |
8088
+ | item_type | string | no | |
8089
+ | item_code | string | no | |
8086
8090
 
8087
8091
  ---
8088
8092
 
@@ -8100,56 +8104,61 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8100
8104
 
8101
8105
 
8102
8106
 
8103
- #### [ProductSizeStores](#ProductSizeStores)
8107
+ #### [Dimension](#Dimension)
8104
8108
 
8105
8109
  | Properties | Type | Nullable | Description |
8106
8110
  | ---------- | ---- | -------- | ----------- |
8107
- | count | number | no | |
8111
+ | is_default | boolean | yes | |
8112
+ | unit | string | yes | |
8113
+ | width | number | yes | |
8114
+ | length | number | yes | |
8115
+ | height | number | yes | |
8108
8116
 
8109
8117
  ---
8110
8118
 
8111
8119
 
8112
8120
 
8113
8121
 
8114
- #### [Dimension](#Dimension)
8122
+ #### [Weight](#Weight)
8115
8123
 
8116
8124
  | Properties | Type | Nullable | Description |
8117
8125
  | ---------- | ---- | -------- | ----------- |
8118
- | height | number | yes | |
8119
- | length | number | yes | |
8120
8126
  | unit | string | yes | |
8121
- | width | number | yes | |
8122
8127
  | is_default | boolean | yes | |
8128
+ | shipping | number | yes | |
8123
8129
 
8124
8130
  ---
8125
8131
 
8126
8132
 
8127
8133
 
8128
8134
 
8129
- #### [Weight](#Weight)
8135
+ #### [ProductSize](#ProductSize)
8130
8136
 
8131
8137
  | Properties | Type | Nullable | Description |
8132
8138
  | ---------- | ---- | -------- | ----------- |
8133
- | shipping | number | yes | |
8134
- | is_default | boolean | yes | |
8135
- | unit | string | yes | |
8139
+ | seller_identifiers | [string] | no | |
8140
+ | is_available | boolean | no | |
8141
+ | dimension | [Dimension](#Dimension) | no | |
8142
+ | display | string | no | |
8143
+ | quantity | number | no | |
8144
+ | value | string | no | |
8145
+ | weight | [Weight](#Weight) | no | |
8136
8146
 
8137
8147
  ---
8138
8148
 
8139
8149
 
8140
8150
 
8141
8151
 
8142
- #### [ProductSize](#ProductSize)
8152
+ #### [SizeChartValues](#SizeChartValues)
8143
8153
 
8144
8154
  | Properties | Type | Nullable | Description |
8145
8155
  | ---------- | ---- | -------- | ----------- |
8146
- | is_available | boolean | no | |
8147
- | seller_identifiers | [string] | no | |
8148
- | value | string | no | |
8149
- | quantity | number | no | |
8150
- | dimension | [Dimension](#Dimension) | no | |
8151
- | weight | [Weight](#Weight) | no | |
8152
- | display | string | no | |
8156
+ | col_6 | string | no | |
8157
+ | col_1 | string | no | |
8158
+ | col_3 | string | no | |
8159
+ | col_5 | string | no | |
8160
+ | col_2 | string | no | |
8161
+ | col_4 | string | no | |
8153
8162
 
8154
8163
  ---
8155
8164
 
@@ -8172,45 +8181,40 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8172
8181
 
8173
8182
  | Properties | Type | Nullable | Description |
8174
8183
  | ---------- | ---- | -------- | ----------- |
8175
- | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8176
- | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8177
8184
  | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8178
- | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8179
8185
  | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8180
8186
  | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8187
+ | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8188
+ | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8189
+ | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8181
8190
 
8182
8191
  ---
8183
8192
 
8184
8193
 
8185
8194
 
8186
8195
 
8187
- #### [SizeChartValues](#SizeChartValues)
8196
+ #### [SizeChart](#SizeChart)
8188
8197
 
8189
8198
  | Properties | Type | Nullable | Description |
8190
8199
  | ---------- | ---- | -------- | ----------- |
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 | |
8200
+ | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8201
+ | title | string | no | |
8202
+ | unit | string | no | |
8203
+ | description | string | no | |
8204
+ | image | string | no | |
8205
+ | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8206
+ | size_tip | string | no | |
8197
8207
 
8198
8208
  ---
8199
8209
 
8200
8210
 
8201
8211
 
8202
8212
 
8203
- #### [SizeChart](#SizeChart)
8213
+ #### [ProductSizeStores](#ProductSizeStores)
8204
8214
 
8205
8215
  | Properties | Type | Nullable | Description |
8206
8216
  | ---------- | ---- | -------- | ----------- |
8207
- | description | string | no | |
8208
- | size_tip | string | no | |
8209
- | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8210
- | title | string | no | |
8211
- | image | string | no | |
8212
- | unit | string | no | |
8213
- | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8217
+ | count | number | no | |
8214
8218
 
8215
8219
  ---
8216
8220
 
@@ -8221,13 +8225,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8221
8225
 
8222
8226
  | Properties | Type | Nullable | Description |
8223
8227
  | ---------- | ---- | -------- | ----------- |
8224
- | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8225
- | multi_size | boolean | no | |
8226
- | price | [ProductListingPrice](#ProductListingPrice) | no | |
8227
- | discount | string | no | |
8228
- | sellable | boolean | no | |
8229
8228
  | sizes | [[ProductSize](#ProductSize)] | no | |
8229
+ | sellable | boolean | no | |
8230
+ | discount | string | no | |
8230
8231
  | size_chart | [SizeChart](#SizeChart) | no | |
8232
+ | price | [ProductListingPrice](#ProductListingPrice) | no | |
8233
+ | multi_size | boolean | no | |
8234
+ | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8231
8235
 
8232
8236
  ---
8233
8237
 
@@ -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 | |
8242
- | logo | string | no | |
8243
8245
  | display | string | no | |
8244
8246
  | key | string | no | |
8247
+ | logo | string | no | |
8248
+ | description | string | no | |
8245
8249
 
8246
8250
  ---
8247
8251
 
@@ -8277,9 +8281,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8277
8281
  | Properties | Type | Nullable | Description |
8278
8282
  | ---------- | ---- | -------- | ----------- |
8279
8283
  | subtitle | string | no | |
8280
- | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8281
- | items | [[ProductDetail](#ProductDetail)] | no | |
8282
8284
  | title | string | no | |
8285
+ | items | [[ProductDetail](#ProductDetail)] | no | |
8286
+ | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8283
8287
 
8284
8288
  ---
8285
8289
 
@@ -8303,13 +8307,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8303
8307
  | ---------- | ---- | -------- | ----------- |
8304
8308
  | color_name | string | no | |
8305
8309
  | is_available | boolean | no | |
8306
- | medias | [[Media](#Media)] | no | |
8307
8310
  | action | [ProductListingAction](#ProductListingAction) | no | |
8308
- | uid | number | no | |
8309
- | value | string | no | |
8310
- | color | string | no | |
8311
8311
  | name | string | no | |
8312
+ | color | string | no | |
8313
+ | medias | [[Media](#Media)] | no | |
8312
8314
  | slug | string | no | |
8315
+ | value | string | no | |
8316
+ | uid | number | 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
  | ---------- | ---- | -------- | ----------- |
8323
- | header | string | no | |
8324
- | display_type | string | no | |
8325
- | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8326
8327
  | key | string | no | |
8328
+ | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8329
+ | display_type | string | no | |
8330
+ | header | 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
+ #### [CompanyDetail](#CompanyDetail)
8345
8349
 
8346
8350
  | Properties | Type | Nullable | Description |
8347
8351
  | ---------- | ---- | -------- | ----------- |
8348
- | uid | number | no | |
8352
+ | id | number | no | |
8349
8353
  | name | string | no | |
8350
- | count | number | no | |
8351
8354
 
8352
8355
  ---
8353
8356
 
8354
8357
 
8355
8358
 
8356
8359
 
8357
- #### [CompanyDetail](#CompanyDetail)
8360
+ #### [ProductStockPrice](#ProductStockPrice)
8358
8361
 
8359
8362
  | Properties | Type | Nullable | Description |
8360
8363
  | ---------- | ---- | -------- | ----------- |
8361
- | name | string | no | |
8362
- | id | number | no | |
8364
+ | marked | number | no | |
8365
+ | effective | number | no | |
8366
+ | currency | string | no | |
8363
8367
 
8364
8368
  ---
8365
8369
 
8366
8370
 
8367
8371
 
8368
8372
 
8369
- #### [ProductStockPrice](#ProductStockPrice)
8373
+ #### [StoreDetail](#StoreDetail)
8370
8374
 
8371
8375
  | Properties | Type | Nullable | Description |
8372
8376
  | ---------- | ---- | -------- | ----------- |
8373
- | marked | number | no | |
8374
- | effective | number | no | |
8375
- | currency | string | no | |
8377
+ | id | number | no | |
8378
+ | name | string | no | |
8379
+ | code | string | no | |
8380
+ | city | string | no | |
8376
8381
 
8377
8382
  ---
8378
8383
 
8379
8384
 
8380
8385
 
8381
8386
 
8382
- #### [StoreDetail](#StoreDetail)
8387
+ #### [Seller](#Seller)
8383
8388
 
8384
8389
  | Properties | Type | Nullable | Description |
8385
8390
  | ---------- | ---- | -------- | ----------- |
8386
- | city | string | no | |
8387
- | code | string | no | |
8391
+ | count | number | no | |
8388
8392
  | name | string | no | |
8389
- | id | number | no | |
8393
+ | uid | number | 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 | |
8404
+ | item_id | number | no | |
8402
8405
  | company | [CompanyDetail](#CompanyDetail) | no | |
8403
8406
  | price | [ProductStockPrice](#ProductStockPrice) | no | |
8404
- | item_id | number | no | |
8405
- | uid | string | no | |
8406
- | store | [StoreDetail](#StoreDetail) | no | |
8407
- | quantity | number | no | |
8407
+ | size | string | no | |
8408
8408
  | identifier | string | no | |
8409
+ | quantity | number | no | |
8410
+ | store | [StoreDetail](#StoreDetail) | no | |
8411
+ | seller | [Seller](#Seller) | no | |
8412
+ | uid | string | 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 | |
8432
- | item_total | number | no | |
8433
8434
  | type | string | yes | |
8434
- | has_previous | boolean | no | |
8435
8435
  | has_next | boolean | no | |
8436
+ | size | number | no | |
8436
8437
  | current | number | no | |
8438
+ | has_previous | boolean | no | |
8439
+ | next_id | string | no | |
8440
+ | item_total | number | no | |
8437
8441
 
8438
8442
  ---
8439
8443
 
@@ -8444,8 +8448,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8444
8448
 
8445
8449
  | Properties | Type | Nullable | Description |
8446
8450
  | ---------- | ---- | -------- | ----------- |
8447
- | items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
8448
8451
  | page | [Page](#Page) | yes | |
8452
+ | items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
8449
8453
 
8450
8454
  ---
8451
8455
 
@@ -8456,18 +8460,18 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8456
8460
 
8457
8461
  | Properties | Type | Nullable | Description |
8458
8462
  | ---------- | ---- | -------- | ----------- |
8459
- | currency_code | string | no | |
8463
+ | min | number | no | |
8460
8464
  | query_format | string | no | |
8461
- | selected_max | number | no | |
8462
- | count | number | no | |
8463
- | max | number | no | |
8464
8465
  | display_format | string | no | |
8465
- | value | string | no | |
8466
+ | currency_code | string | no | |
8466
8467
  | currency_symbol | string | no | |
8467
8468
  | display | string | yes | |
8468
- | selected_min | number | no | |
8469
- | min | number | no | |
8469
+ | value | string | no | |
8470
8470
  | is_selected | boolean | yes | |
8471
+ | selected_max | number | no | |
8472
+ | max | number | no | |
8473
+ | selected_min | number | no | |
8474
+ | count | number | no | |
8471
8475
 
8472
8476
  ---
8473
8477
 
@@ -8478,10 +8482,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8478
8482
 
8479
8483
  | Properties | Type | Nullable | Description |
8480
8484
  | ---------- | ---- | -------- | ----------- |
8481
- | kind | string | no | |
8482
- | logo | string | no | |
8483
8485
  | display | string | yes | |
8486
+ | kind | string | no | |
8484
8487
  | name | string | yes | |
8488
+ | logo | string | no | |
8485
8489
 
8486
8490
  ---
8487
8491
 
@@ -8504,11 +8508,11 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8504
8508
 
8505
8509
  | Properties | Type | Nullable | Description |
8506
8510
  | ---------- | ---- | -------- | ----------- |
8507
- | header | string | no | |
8508
8511
  | total | number | no | |
8509
8512
  | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8510
- | display_type | string | no | |
8511
8513
  | key | string | no | |
8514
+ | display_type | string | no | |
8515
+ | header | string | 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 | |
8526
+ | discount | string | no | |
8527
+ | teaser_tag | string | no | |
8525
8528
  | attributes | string | no | |
8526
- | has_variant | boolean | no | |
8527
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8528
- | image_nature | string | no | |
8529
8529
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8530
- | item_type | string | no | |
8531
- | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8532
- | tryouts | [string] | no | |
8530
+ | brand | [ProductBrand](#ProductBrand) | no | |
8531
+ | similars | [string] | no | |
8533
8532
  | short_description | string | no | |
8534
- | name | string | no | |
8535
- | sizes | [string] | no | |
8536
- | item_code | string | no | |
8537
- | slug | string | yes | |
8538
- | is_dependent | boolean | no | |
8539
- | _custom_json | string | no | |
8533
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8534
+ | color | string | no | |
8535
+ | image_nature | string | no | |
8536
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8537
+ | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8540
8538
  | rating | number | no | |
8541
- | type | string | no | |
8542
- | action | [ProductListingAction](#ProductListingAction) | no | |
8543
8539
  | uid | number | no | |
8540
+ | type | string | no | |
8541
+ | sellable | boolean | no | |
8542
+ | tryouts | [string] | no | |
8544
8543
  | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8544
+ | has_variant | boolean | no | |
8545
8545
  | tags | [string] | no | |
8546
+ | _custom_json | string | no | |
8546
8547
  | net_quantity | [NetQuantity](#NetQuantity) | no | |
8547
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8548
- | sellable | boolean | no | |
8549
- | similars | [string] | no | |
8548
+ | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8549
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8550
8550
  | highlights | [string] | no | |
8551
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8552
- | identifiers | [string] | no | |
8553
- | rating_count | number | no | |
8554
8551
  | product_online_date | string | no | |
8555
- | discount | string | no | |
8556
- | color | string | no | |
8557
- | teaser_tag | string | no | |
8558
- | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8552
+ | sizes | [string] | no | |
8553
+ | rating_count | number | no | |
8554
+ | name | string | no | |
8555
+ | identifiers | [string] | no | |
8556
+ | description | string | no | |
8557
+ | medias | [[Media](#Media)] | no | |
8558
+ | slug | string | yes | |
8559
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8560
+ | is_dependent | boolean | no | |
8561
+ | item_type | string | no | |
8562
+ | item_code | string | no | |
8559
8563
 
8560
8564
  ---
8561
8565
 
@@ -8566,8 +8570,8 @@ 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
8573
  | is_selected | boolean | no | |
8574
+ | name | string | no | |
8571
8575
  | value | string | no | |
8572
8576
 
8573
8577
  ---
@@ -8579,10 +8583,10 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8579
8583
 
8580
8584
  | Properties | Type | Nullable | Description |
8581
8585
  | ---------- | ---- | -------- | ----------- |
8586
+ | page | [Page](#Page) | yes | |
8582
8587
  | filters | [[ProductFilters](#ProductFilters)] | no | |
8583
8588
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8584
8589
  | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8585
- | page | [Page](#Page) | yes | |
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
- | uid | number | no | |
8612
8612
  | discount | string | no | |
8613
- | logo | [Media](#Media) | no | |
8613
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8614
8614
  | name | string | no | |
8615
- | departments | [string] | no | |
8615
+ | logo | [Media](#Media) | no | |
8616
+ | description | string | no | |
8616
8617
  | slug | string | no | |
8618
+ | banners | [ImageUrls](#ImageUrls) | no | |
8619
+ | departments | [string] | no | |
8620
+ | uid | number | no | |
8617
8621
 
8618
8622
  ---
8619
8623
 
@@ -8624,8 +8628,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8624
8628
 
8625
8629
  | Properties | Type | Nullable | Description |
8626
8630
  | ---------- | ---- | -------- | ----------- |
8627
- | items | [[BrandItem](#BrandItem)] | no | |
8628
8631
  | page | [Page](#Page) | yes | |
8632
+ | items | [[BrandItem](#BrandItem)] | no | |
8629
8633
 
8630
8634
  ---
8631
8635
 
@@ -8636,23 +8640,23 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8636
8640
 
8637
8641
  | Properties | Type | Nullable | Description |
8638
8642
  | ---------- | ---- | -------- | ----------- |
8643
+ | name | string | no | |
8644
+ | logo | [Media](#Media) | no | |
8639
8645
  | description | string | no | |
8640
8646
  | banners | [ImageUrls](#ImageUrls) | no | |
8641
8647
  | uid | number | no | |
8642
- | logo | [Media](#Media) | no | |
8643
- | name | string | no | |
8644
8648
 
8645
8649
  ---
8646
8650
 
8647
8651
 
8648
8652
 
8649
8653
 
8650
- #### [CategoryBanner](#CategoryBanner)
8654
+ #### [DepartmentIdentifier](#DepartmentIdentifier)
8651
8655
 
8652
8656
  | Properties | Type | Nullable | Description |
8653
8657
  | ---------- | ---- | -------- | ----------- |
8654
- | portrait | [Media](#Media) | yes | |
8655
- | landscape | [Media](#Media) | yes | |
8658
+ | slug | string | no | |
8659
+ | uid | number | no | |
8656
8660
 
8657
8661
  ---
8658
8662
 
@@ -8663,13 +8667,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8663
8667
 
8664
8668
  | Properties | Type | Nullable | Description |
8665
8669
  | ---------- | ---- | -------- | ----------- |
8666
- | _custom_json | string | no | |
8667
- | banners | [ImageUrls](#ImageUrls) | no | |
8668
- | action | [ProductListingAction](#ProductListingAction) | no | |
8669
- | uid | number | no | |
8670
8670
  | childs | [string] | no | |
8671
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8671
8672
  | name | string | no | |
8673
+ | _custom_json | string | no | |
8672
8674
  | slug | string | no | |
8675
+ | banners | [ImageUrls](#ImageUrls) | no | |
8676
+ | uid | number | no | |
8673
8677
 
8674
8678
  ---
8675
8679
 
@@ -8680,13 +8684,13 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8680
8684
 
8681
8685
  | Properties | Type | Nullable | Description |
8682
8686
  | ---------- | ---- | -------- | ----------- |
8683
- | _custom_json | string | no | |
8684
- | banners | [ImageUrls](#ImageUrls) | no | |
8685
- | action | [ProductListingAction](#ProductListingAction) | no | |
8686
- | uid | number | no | |
8687
8687
  | childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
8688
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8688
8689
  | name | string | no | |
8690
+ | _custom_json | string | no | |
8689
8691
  | slug | string | no | |
8692
+ | banners | [ImageUrls](#ImageUrls) | no | |
8693
+ | uid | number | no | |
8690
8694
 
8691
8695
  ---
8692
8696
 
@@ -8697,53 +8701,53 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8697
8701
 
8698
8702
  | Properties | Type | Nullable | Description |
8699
8703
  | ---------- | ---- | -------- | ----------- |
8700
- | _custom_json | string | no | |
8701
- | banners | [ImageUrls](#ImageUrls) | no | |
8702
- | action | [ProductListingAction](#ProductListingAction) | no | |
8703
- | uid | number | no | |
8704
8704
  | childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
8705
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8705
8706
  | name | string | no | |
8707
+ | _custom_json | string | no | |
8706
8708
  | slug | string | no | |
8709
+ | banners | [ImageUrls](#ImageUrls) | no | |
8710
+ | uid | number | no | |
8707
8711
 
8708
8712
  ---
8709
8713
 
8710
8714
 
8711
8715
 
8712
8716
 
8713
- #### [CategoryItems](#CategoryItems)
8717
+ #### [CategoryBanner](#CategoryBanner)
8714
8718
 
8715
8719
  | Properties | Type | Nullable | Description |
8716
8720
  | ---------- | ---- | -------- | ----------- |
8717
- | banners | [CategoryBanner](#CategoryBanner) | yes | |
8718
- | action | [ProductListingAction](#ProductListingAction) | yes | |
8719
- | uid | number | yes | |
8720
- | childs | [[Child](#Child)] | no | |
8721
- | name | string | yes | |
8722
- | slug | string | yes | |
8721
+ | portrait | [Media](#Media) | yes | |
8722
+ | landscape | [Media](#Media) | yes | |
8723
8723
 
8724
8724
  ---
8725
8725
 
8726
8726
 
8727
8727
 
8728
8728
 
8729
- #### [DepartmentCategoryTree](#DepartmentCategoryTree)
8729
+ #### [CategoryItems](#CategoryItems)
8730
8730
 
8731
8731
  | Properties | Type | Nullable | Description |
8732
8732
  | ---------- | ---- | -------- | ----------- |
8733
- | department | string | yes | |
8734
- | items | [[CategoryItems](#CategoryItems)] | no | |
8733
+ | childs | [[Child](#Child)] | no | |
8734
+ | action | [ProductListingAction](#ProductListingAction) | yes | |
8735
+ | name | string | yes | |
8736
+ | slug | string | yes | |
8737
+ | banners | [CategoryBanner](#CategoryBanner) | yes | |
8738
+ | uid | number | yes | |
8735
8739
 
8736
8740
  ---
8737
8741
 
8738
8742
 
8739
8743
 
8740
8744
 
8741
- #### [DepartmentIdentifier](#DepartmentIdentifier)
8745
+ #### [DepartmentCategoryTree](#DepartmentCategoryTree)
8742
8746
 
8743
8747
  | Properties | Type | Nullable | Description |
8744
8748
  | ---------- | ---- | -------- | ----------- |
8745
- | uid | number | no | |
8746
- | slug | string | no | |
8749
+ | department | string | yes | |
8750
+ | items | [[CategoryItems](#CategoryItems)] | no | |
8747
8751
 
8748
8752
  ---
8749
8753
 
@@ -8754,8 +8758,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
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 | |
8770
- | logo | [Media](#Media) | no | |
8771
8773
  | name | string | no | |
8772
8774
  | banners | [ImageUrls](#ImageUrls) | no | |
8775
+ | logo | [Media](#Media) | no | |
8776
+ | uid | number | no | |
8773
8777
 
8774
8778
  ---
8775
8779
 
@@ -8780,9 +8784,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8780
8784
 
8781
8785
  | Properties | Type | Nullable | Description |
8782
8786
  | ---------- | ---- | -------- | ----------- |
8787
+ | page | [Page](#Page) | yes | |
8783
8788
  | message | string | no | |
8784
8789
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8785
- | page | [Page](#Page) | yes | |
8786
8790
 
8787
8791
  ---
8788
8792
 
@@ -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
- | uid | number | no | |
8798
- | logo | [Media](#Media) | no | |
8799
8800
  | name | string | no | |
8801
+ | logo | [Media](#Media) | no | |
8800
8802
  | slug | string | no | |
8803
+ | priority_order | number | no | |
8804
+ | uid | number | no | |
8801
8805
 
8802
8806
  ---
8803
8807
 
@@ -8819,11 +8823,11 @@ 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 | |
8826
8829
  | display | string | no | |
8830
+ | _custom_json | string | no | |
8827
8831
 
8828
8832
  ---
8829
8833
 
@@ -8845,9 +8849,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8845
8849
 
8846
8850
  | Properties | Type | Nullable | Description |
8847
8851
  | ---------- | ---- | -------- | ----------- |
8848
- | name | string | no | |
8849
- | is_selected | boolean | no | |
8850
8852
  | display | string | no | |
8853
+ | is_selected | boolean | no | |
8854
+ | name | string | no | |
8851
8855
 
8852
8856
  ---
8853
8857
 
@@ -8858,9 +8862,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8858
8862
 
8859
8863
  | Properties | Type | Nullable | Description |
8860
8864
  | ---------- | ---- | -------- | ----------- |
8861
- | name | string | no | |
8862
- | is_selected | boolean | no | |
8863
8865
  | display | string | no | |
8866
+ | is_selected | boolean | no | |
8867
+ | name | string | no | |
8864
8868
 
8865
8869
  ---
8866
8870
 
@@ -8883,8 +8887,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8883
8887
 
8884
8888
  | Properties | Type | Nullable | Description |
8885
8889
  | ---------- | ---- | -------- | ----------- |
8886
- | op | string | yes | |
8887
8890
  | attribute | string | yes | |
8891
+ | op | string | yes | |
8888
8892
  | value | [any] | yes | |
8889
8893
 
8890
8894
  ---
@@ -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
8903
  | allow_facets | boolean | no | |
8903
- | 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
8904
  | sort_on | string | no | |
8905
+ | uid | string | no | |
8906
+ | type | string | no | |
8907
+ | priority | number | no | |
8908
+ | logo | [Media](#Media) | no | |
8910
8909
  | allow_sort | boolean | no | |
8910
+ | query | [[CollectionQuery](#CollectionQuery)] | no | |
8911
8911
  | action | [ProductListingAction](#ProductListingAction) | no | |
8912
- | uid | string | no | |
8913
8912
  | cron | string | no | |
8914
- | badge | string | no | |
8915
- | visible_facets_keys | [string] | no | |
8916
- | _schedule | string | no | |
8913
+ | tag | [string] | no | |
8917
8914
  | banners | [ImageUrls](#ImageUrls) | no | |
8918
- | is_active | boolean | no | |
8919
8915
  | app_id | string | no | |
8916
+ | badge | string | no | |
8917
+ | meta | string | no | |
8918
+ | is_active | boolean | no | |
8919
+ | _schedule | string | no | |
8920
+ | name | string | no | |
8921
+ | description | string | no | |
8922
+ | slug | string | no | |
8923
+ | visible_facets_keys | [string] | no | |
8920
8924
 
8921
8925
  ---
8922
8926
 
@@ -8927,9 +8931,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8927
8931
 
8928
8932
  | Properties | Type | Nullable | Description |
8929
8933
  | ---------- | ---- | -------- | ----------- |
8934
+ | page | [Page](#Page) | yes | |
8930
8935
  | filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
8931
8936
  | items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
8932
- | page | [Page](#Page) | yes | |
8933
8937
 
8934
8938
  ---
8935
8939
 
@@ -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
8947
  | allow_facets | boolean | no | |
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 | |
8949
+ | type | string | no | |
8950
+ | priority | number | no | |
8951
+ | logo | [Media](#Media) | no | |
8954
8952
  | allow_sort | boolean | no | |
8953
+ | query | [[CollectionQuery](#CollectionQuery)] | no | |
8955
8954
  | cron | string | no | |
8956
- | badge | string | no | |
8957
- | visible_facets_keys | [string] | no | |
8958
- | _schedule | string | no | |
8955
+ | tag | [string] | no | |
8959
8956
  | banners | [ImageUrls](#ImageUrls) | no | |
8960
- | is_active | boolean | no | |
8961
8957
  | app_id | string | no | |
8958
+ | badge | string | no | |
8959
+ | meta | string | no | |
8960
+ | is_active | boolean | no | |
8961
+ | _schedule | string | no | |
8962
+ | name | string | no | |
8963
+ | description | string | no | |
8964
+ | slug | string | no | |
8965
+ | visible_facets_keys | [string] | no | |
8962
8966
 
8963
8967
  ---
8964
8968
 
@@ -8969,8 +8973,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8969
8973
 
8970
8974
  | Properties | Type | Nullable | Description |
8971
8975
  | ---------- | ---- | -------- | ----------- |
8972
- | items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
8973
8976
  | page | [Page](#Page) | yes | |
8977
+ | items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
8974
8978
 
8975
8979
  ---
8976
8980
 
@@ -8981,8 +8985,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
8981
8985
 
8982
8986
  | Properties | Type | Nullable | Description |
8983
8987
  | ---------- | ---- | -------- | ----------- |
8984
- | message | string | yes | |
8985
8988
  | id | string | yes | |
8989
+ | message | string | yes | |
8986
8990
 
8987
8991
  ---
8988
8992
 
@@ -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
  | ---------- | ---- | -------- | ----------- |
9043
- | store_email | string | no | |
9044
- | country | string | no | |
9045
9047
  | store_code | string | no | |
9046
- | uid | number | no | |
9047
- | city | string | no | |
9048
9048
  | state | string | no | |
9049
- | name | string | no | |
9050
- | pincode | number | no | |
9051
9049
  | address | string | no | |
9050
+ | name | string | no | |
9051
+ | store_email | string | no | |
9052
9052
  | lat_long | [LatLong](#LatLong) | no | |
9053
+ | city | string | no | |
9054
+ | country | string | no | |
9055
+ | pincode | number | no | |
9056
+ | uid | number | no | |
9053
9057
 
9054
9058
  ---
9055
9059
 
@@ -9060,8 +9064,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9060
9064
 
9061
9065
  | Properties | Type | Nullable | Description |
9062
9066
  | ---------- | ---- | -------- | ----------- |
9063
- | items | [[Store](#Store)] | yes | |
9064
9067
  | page | [Page](#Page) | yes | |
9068
+ | items | [[Store](#Store)] | yes | |
9065
9069
 
9066
9070
  ---
9067
9071
 
@@ -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
- | uid | number | no | |
9077
- | logo | string | no | |
9078
9079
  | name | string | no | |
9080
+ | logo | string | no | |
9079
9081
  | slug | string | no | |
9082
+ | priority_order | number | no | |
9083
+ | uid | number | no | |
9080
9084
 
9081
9085
  ---
9082
9086
 
@@ -9099,8 +9103,8 @@ 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 | |
9107
+ | name | string | no | |
9104
9108
  | email | string | no | |
9105
9109
 
9106
9110
  ---
@@ -9113,9 +9117,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9113
9117
  | Properties | Type | Nullable | Description |
9114
9118
  | ---------- | ---- | -------- | ----------- |
9115
9119
  | business_type | string | no | |
9116
- | uid | number | no | |
9117
- | name | string | no | |
9118
9120
  | company_type | string | no | |
9121
+ | name | string | no | |
9122
+ | uid | number | no | |
9119
9123
 
9120
9124
  ---
9121
9125
 
@@ -9126,14 +9130,14 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9126
9130
 
9127
9131
  | Properties | Type | Nullable | Description |
9128
9132
  | ---------- | ---- | -------- | ----------- |
9133
+ | longitude | number | no | |
9134
+ | address1 | string | no | |
9135
+ | state | string | no | |
9129
9136
  | latitude | number | no | |
9130
- | country | string | no | |
9131
9137
  | landmark | string | no | |
9132
9138
  | city | string | no | |
9133
- | longitude | number | no | |
9134
- | state | string | no | |
9139
+ | country | string | no | |
9135
9140
  | pincode | number | no | |
9136
- | address1 | string | no | |
9137
9141
  | address2 | string | no | |
9138
9142
 
9139
9143
  ---
@@ -9146,12 +9150,12 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9146
9150
  | Properties | Type | Nullable | Description |
9147
9151
  | ---------- | ---- | -------- | ----------- |
9148
9152
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9149
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9150
9153
  | company | [CompanyStore](#CompanyStore) | no | |
9151
- | uid | number | no | |
9154
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9152
9155
  | name | string | no | |
9153
9156
  | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9154
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9157
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9158
+ | uid | number | no | |
9155
9159
 
9156
9160
  ---
9157
9161
 
@@ -9162,9 +9166,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9162
9166
 
9163
9167
  | Properties | Type | Nullable | Description |
9164
9168
  | ---------- | ---- | -------- | ----------- |
9169
+ | page | [Page](#Page) | no | |
9165
9170
  | filters | [[StoreDepartments](#StoreDepartments)] | no | |
9166
9171
  | items | [[AppStore](#AppStore)] | no | |
9167
- | page | [Page](#Page) | no | |
9168
9172
 
9169
9173
  ---
9170
9174
 
@@ -9188,8 +9192,8 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9188
9192
  | Properties | Type | Nullable | Description |
9189
9193
  | ---------- | ---- | -------- | ----------- |
9190
9194
  | open | boolean | no | |
9191
- | weekday | string | no | |
9192
9195
  | closing | [Time](#Time) | no | |
9196
+ | weekday | string | no | |
9193
9197
  | opening | [Time](#Time) | no | |
9194
9198
 
9195
9199
  ---
@@ -9202,14 +9206,14 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9202
9206
  | Properties | Type | Nullable | Description |
9203
9207
  | ---------- | ---- | -------- | ----------- |
9204
9208
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9205
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9206
- | _custom_json | string | no | |
9207
9209
  | company | [CompanyStore](#CompanyStore) | no | |
9208
- | uid | number | no | |
9209
- | name | string | no | |
9210
- | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9211
9210
  | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9211
+ | name | string | no | |
9212
9212
  | timing | [[StoreTiming](#StoreTiming)] | no | |
9213
+ | _custom_json | string | no | |
9214
+ | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9215
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9216
+ | uid | number | no | |
9213
9217
 
9214
9218
  ---
9215
9219
 
@@ -9220,39 +9224,39 @@ 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 | |
9227
+ | contact | string | no | |
9224
9228
  | username | string | yes | |
9229
+ | user_id | string | yes | |
9225
9230
  | super_user | boolean | no | |
9226
- | contact | string | no | |
9227
9231
 
9228
9232
  ---
9229
9233
 
9230
9234
 
9231
9235
 
9232
9236
 
9233
- #### [ProductGroupPrice](#ProductGroupPrice)
9237
+ #### [Size](#Size)
9234
9238
 
9235
9239
  | Properties | Type | Nullable | Description |
9236
9240
  | ---------- | ---- | -------- | ----------- |
9237
- | min_effective | number | no | |
9238
- | currency | any | no | |
9239
- | min_marked | number | no | |
9240
- | max_effective | number | no | |
9241
- | max_marked | number | no | |
9241
+ | display | any | no | |
9242
+ | is_available | boolean | no | |
9243
+ | quantity | number | no | |
9244
+ | value | any | no | |
9242
9245
 
9243
9246
  ---
9244
9247
 
9245
9248
 
9246
9249
 
9247
9250
 
9248
- #### [Size](#Size)
9251
+ #### [ProductGroupPrice](#ProductGroupPrice)
9249
9252
 
9250
9253
  | Properties | Type | Nullable | Description |
9251
9254
  | ---------- | ---- | -------- | ----------- |
9252
- | quantity | number | no | |
9253
- | display | any | no | |
9254
- | is_available | boolean | no | |
9255
- | value | any | no | |
9255
+ | max_marked | number | no | |
9256
+ | max_effective | number | no | |
9257
+ | min_effective | number | no | |
9258
+ | min_marked | number | no | |
9259
+ | currency | any | no | |
9256
9260
 
9257
9261
  ---
9258
9262
 
@@ -9263,27 +9267,27 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9263
9267
 
9264
9268
  | Properties | Type | Nullable | Description |
9265
9269
  | ---------- | ---- | -------- | ----------- |
9266
- | description | any | no | |
9267
- | country_of_origin | any | no | |
9268
- | is_set | boolean | no | |
9269
- | media | [string] | no | |
9270
9270
  | attributes | string | no | |
9271
- | has_variant | boolean | no | |
9272
- | brand_uid | number | no | |
9273
- | image_nature | any | no | |
9274
9271
  | template_tag | any | no | |
9275
9272
  | images | [any] | no | |
9273
+ | is_set | boolean | no | |
9276
9274
  | short_description | any | no | |
9277
- | name | any | no | |
9278
- | item_code | any | no | |
9279
- | slug | any | no | |
9280
- | hsn_code | number | no | |
9275
+ | grouped_attributes | string | no | |
9276
+ | image_nature | any | no | |
9281
9277
  | rating | number | no | |
9278
+ | has_variant | boolean | no | |
9279
+ | media | [string] | no | |
9280
+ | brand_uid | number | no | |
9281
+ | hsn_code | number | no | |
9282
9282
  | highlights | [any] | no | |
9283
- | grouped_attributes | string | no | |
9283
+ | country_of_origin | any | no | |
9284
9284
  | rating_count | number | no | |
9285
- | out_of_stock | boolean | no | |
9285
+ | name | any | no | |
9286
9286
  | identifier | string | no | |
9287
+ | description | any | no | |
9288
+ | slug | any | no | |
9289
+ | out_of_stock | boolean | no | |
9290
+ | item_code | any | no | |
9287
9291
 
9288
9292
  ---
9289
9293
 
@@ -9294,14 +9298,14 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9294
9298
 
9295
9299
  | Properties | Type | Nullable | Description |
9296
9300
  | ---------- | ---- | -------- | ----------- |
9301
+ | sizes | [[Size](#Size)] | no | |
9302
+ | product_uid | number | yes | |
9303
+ | auto_add_to_cart | boolean | no | |
9297
9304
  | max_quantity | number | yes | |
9298
- | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9305
+ | min_quantity | number | no | |
9299
9306
  | allow_remove | boolean | no | |
9307
+ | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9300
9308
  | auto_select | boolean | no | |
9301
- | auto_add_to_cart | boolean | no | |
9302
- | sizes | [[Size](#Size)] | no | |
9303
- | min_quantity | number | no | |
9304
- | product_uid | number | yes | |
9305
9309
  | product_details | [ProductDetails](#ProductDetails) | no | |
9306
9310
 
9307
9311
  ---
@@ -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 | |
9319
- | same_store_assignment | boolean | no | |
9320
- | is_active | boolean | no | |
9321
- | page_visibility | [any] | no | |
9322
- | company_id | number | no | |
9323
- | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9324
- | logo | string | no | |
9325
9320
  | created_by | [UserDetail](#UserDetail) | no | |
9326
- | name | any | yes | |
9321
+ | choice | any | no | |
9322
+ | is_active | boolean | no | |
9323
+ | same_store_assignment | boolean | no | |
9327
9324
  | verified_on | string | no | |
9325
+ | verified_by | [UserDetail](#UserDetail) | no | |
9328
9326
  | modified_by | [UserDetail](#UserDetail) | no | |
9329
- | meta | string | no | |
9330
- | modified_on | string | yes | |
9331
- | choice | any | no | |
9327
+ | name | any | yes | |
9328
+ | logo | string | no | |
9329
+ | company_id | number | no | |
9330
+ | created_on | string | yes | |
9332
9331
  | _id | any | no | |
9332
+ | slug | any | no | |
9333
+ | page_visibility | [any] | no | |
9334
+ | modified_on | string | yes | |
9335
+ | meta | string | no | |
9336
+ | products | [[ProductInGroup](#ProductInGroup)] | 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
+ #### [ProductStockPriceV2](#ProductStockPriceV2)
9351
9355
 
9352
9356
  | Properties | Type | Nullable | Description |
9353
9357
  | ---------- | ---- | -------- | ----------- |
9354
- | time | number | no | |
9355
- | returnable | boolean | no | |
9356
- | unit | string | no | |
9358
+ | marked | number | no | |
9359
+ | effective | number | no | |
9360
+ | currency | string | no | |
9357
9361
 
9358
9362
  ---
9359
9363
 
9360
9364
 
9361
9365
 
9362
9366
 
9363
- #### [StoreV2](#StoreV2)
9367
+ #### [DetailsSchemaV2](#DetailsSchemaV2)
9364
9368
 
9365
9369
  | Properties | Type | Nullable | Description |
9366
9370
  | ---------- | ---- | -------- | ----------- |
9367
- | uid | number | no | |
9368
- | name | string | no | |
9369
- | count | number | no | |
9371
+ | type | string | no | |
9372
+ | key | string | no | |
9373
+ | value | string | no | |
9370
9374
 
9371
9375
  ---
9372
9376
 
9373
9377
 
9374
9378
 
9375
9379
 
9376
- #### [ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)
9380
+ #### [SellerGroupAttributes](#SellerGroupAttributes)
9377
9381
 
9378
9382
  | Properties | Type | Nullable | Description |
9379
9383
  | ---------- | ---- | -------- | ----------- |
9380
- | size | string | no | |
9381
- | pieces | number | no | |
9384
+ | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9385
+ | title | string | no | |
9382
9386
 
9383
9387
  ---
9384
9388
 
9385
9389
 
9386
9390
 
9387
9391
 
9388
- #### [ProductSetDistributionV2](#ProductSetDistributionV2)
9392
+ #### [MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)
9389
9393
 
9390
9394
  | Properties | Type | Nullable | Description |
9391
9395
  | ---------- | ---- | -------- | ----------- |
9392
- | sizes | [[ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)] | no | |
9396
+ | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9397
+ | title | string | no | |
9393
9398
 
9394
9399
  ---
9395
9400
 
9396
9401
 
9397
9402
 
9398
9403
 
9399
- #### [ProductSetV2](#ProductSetV2)
9404
+ #### [ProductStockUnitPriceV2](#ProductStockUnitPriceV2)
9400
9405
 
9401
9406
  | Properties | Type | Nullable | Description |
9402
9407
  | ---------- | ---- | -------- | ----------- |
9403
- | quantity | number | no | |
9404
- | size_distribution | [ProductSetDistributionV2](#ProductSetDistributionV2) | no | |
9408
+ | price | number | no | |
9409
+ | unit | string | no | |
9410
+ | currency_code | string | no | |
9411
+ | currency_symbol | string | no | |
9405
9412
 
9406
9413
  ---
9407
9414
 
9408
9415
 
9409
9416
 
9410
9417
 
9411
- #### [ProductStockPriceV2](#ProductStockPriceV2)
9418
+ #### [ReturnConfigSchemaV2](#ReturnConfigSchemaV2)
9412
9419
 
9413
9420
  | Properties | Type | Nullable | Description |
9414
9421
  | ---------- | ---- | -------- | ----------- |
9415
- | marked | number | no | |
9416
- | effective | number | no | |
9417
- | currency | string | no | |
9422
+ | unit | string | no | |
9423
+ | returnable | boolean | no | |
9424
+ | time | number | no | |
9418
9425
 
9419
9426
  ---
9420
9427
 
9421
9428
 
9422
9429
 
9423
9430
 
9424
- #### [StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)
9431
+ #### [StoreV2](#StoreV2)
9425
9432
 
9426
9433
  | Properties | Type | Nullable | Description |
9427
9434
  | ---------- | ---- | -------- | ----------- |
9428
- | quantity | number | no | |
9429
- | distance | number | no | |
9430
- | pincode | number | no | |
9431
- | tat | number | no | |
9435
+ | count | number | no | |
9436
+ | name | string | no | |
9437
+ | uid | number | no | |
9432
9438
 
9433
9439
  ---
9434
9440
 
9435
9441
 
9436
9442
 
9437
9443
 
9438
- #### [ProductStockUnitPriceV2](#ProductStockUnitPriceV2)
9444
+ #### [SellerV2](#SellerV2)
9439
9445
 
9440
9446
  | Properties | Type | Nullable | Description |
9441
9447
  | ---------- | ---- | -------- | ----------- |
9442
- | unit | string | no | |
9443
- | currency_code | string | no | |
9444
- | currency_symbol | string | no | |
9445
- | price | number | no | |
9448
+ | count | number | no | |
9449
+ | name | string | no | |
9450
+ | uid | number | no | |
9446
9451
 
9447
9452
  ---
9448
9453
 
9449
9454
 
9450
9455
 
9451
9456
 
9452
- #### [ArticleAssignmentV2](#ArticleAssignmentV2)
9457
+ #### [ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)
9453
9458
 
9454
9459
  | Properties | Type | Nullable | Description |
9455
9460
  | ---------- | ---- | -------- | ----------- |
9456
- | level | string | no | |
9457
- | strategy | string | no | |
9461
+ | size | string | no | |
9462
+ | pieces | number | no | |
9458
9463
 
9459
9464
  ---
9460
9465
 
9461
9466
 
9462
9467
 
9463
9468
 
9464
- #### [SellerV2](#SellerV2)
9469
+ #### [ProductSetDistributionV2](#ProductSetDistributionV2)
9465
9470
 
9466
9471
  | Properties | Type | Nullable | Description |
9467
9472
  | ---------- | ---- | -------- | ----------- |
9468
- | uid | number | no | |
9469
- | name | string | no | |
9470
- | count | number | no | |
9473
+ | sizes | [[ProductSetDistributionSizeV2](#ProductSetDistributionSizeV2)] | no | |
9471
9474
 
9472
9475
  ---
9473
9476
 
9474
9477
 
9475
9478
 
9476
9479
 
9477
- #### [DetailsSchemaV2](#DetailsSchemaV2)
9480
+ #### [ProductSetV2](#ProductSetV2)
9478
9481
 
9479
9482
  | Properties | Type | Nullable | Description |
9480
9483
  | ---------- | ---- | -------- | ----------- |
9481
- | key | string | no | |
9482
- | type | string | no | |
9483
- | value | string | no | |
9484
+ | size_distribution | [ProductSetDistributionV2](#ProductSetDistributionV2) | no | |
9485
+ | quantity | number | no | |
9484
9486
 
9485
9487
  ---
9486
9488
 
9487
9489
 
9488
9490
 
9489
9491
 
9490
- #### [SellerGroupAttributes](#SellerGroupAttributes)
9492
+ #### [ArticleAssignmentV2](#ArticleAssignmentV2)
9491
9493
 
9492
9494
  | Properties | Type | Nullable | Description |
9493
9495
  | ---------- | ---- | -------- | ----------- |
9494
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9495
- | title | string | no | |
9496
+ | strategy | string | no | |
9497
+ | level | string | no | |
9496
9498
 
9497
9499
  ---
9498
9500
 
9499
9501
 
9500
9502
 
9501
9503
 
9502
- #### [MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)
9504
+ #### [StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)
9503
9505
 
9504
9506
  | Properties | Type | Nullable | Description |
9505
9507
  | ---------- | ---- | -------- | ----------- |
9506
- | details | [[DetailsSchemaV2](#DetailsSchemaV2)] | no | |
9507
- | title | string | no | |
9508
+ | pincode | number | no | |
9509
+ | tat | number | no | |
9510
+ | quantity | number | no | |
9511
+ | distance | number | 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
- | article_id | string | no | |
9522
+ | discount | string | no | |
9523
+ | is_gift | boolean | no | |
9524
+ | price | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9525
+ | is_cod | boolean | no | |
9526
+ | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9527
+ | marketplace_attributes | [[MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)] | no | |
9520
9528
  | long_lat | [number] | no | |
9529
+ | price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
9530
+ | return_config | [ReturnConfigSchemaV2](#ReturnConfigSchemaV2) | no | |
9521
9531
  | store | [StoreV2](#StoreV2) | no | |
9532
+ | article_id | string | no | |
9533
+ | seller | [SellerV2](#SellerV2) | no | |
9534
+ | price_per_piece | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9535
+ | seller_count | number | no | |
9522
9536
  | set | [ProductSetV2](#ProductSetV2) | no | |
9523
- | price | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9524
- | item_type | string | no | |
9525
- | strategy_wise_listing | [[StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)] | no | |
9537
+ | article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
9526
9538
  | special_badge | string | no | |
9527
- | price_per_unit | [ProductStockUnitPriceV2](#ProductStockUnitPriceV2) | no | |
9528
9539
  | quantity | number | no | |
9529
9540
  | pincode | number | no | |
9530
- | article_assignment | [ArticleAssignmentV2](#ArticleAssignmentV2) | no | |
9531
- | 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
- | price_per_piece | [ProductStockPriceV2](#ProductStockPriceV2) | no | |
9537
- | is_gift | boolean | no | |
9538
- | marketplace_attributes | [[MarketPlaceSttributesSchemaV2](#MarketPlaceSttributesSchemaV2)] | no | |
9541
+ | item_type | string | no | |
9542
+ | strategy_wise_listing | [[StrategyWiseListingSchemaV2](#StrategyWiseListingSchemaV2)] | no | |
9539
9543
 
9540
9544
  ---
9541
9545
 
@@ -9546,8 +9550,8 @@ 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
9553
  | is_selected | boolean | no | |
9554
+ | name | string | no | |
9551
9555
  | value | string | no | |
9552
9556
 
9553
9557
  ---
@@ -9559,9 +9563,9 @@ Success. Returns a ProductSizeSellerV2 object. Check the example shown below or
9559
9563
 
9560
9564
  | Properties | Type | Nullable | Description |
9561
9565
  | ---------- | ---- | -------- | ----------- |
9566
+ | page | [Page](#Page) | yes | |
9562
9567
  | items | [[ProductSizePriceResponseV2](#ProductSizePriceResponseV2)] | no | |
9563
9568
  | sort_on | [[ProductSizeSellerFilterSchemaV2](#ProductSizeSellerFilterSchemaV2)] | no | |
9564
- | page | [Page](#Page) | yes | |
9565
9569
 
9566
9570
  ---
9567
9571