@gofynd/fdk-client-javascript 1.0.1 → 1.0.2

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 (134) hide show
  1. package/documentation/application/CART.md +251 -251
  2. package/documentation/application/CATALOG.md +414 -414
  3. package/documentation/application/CONTENT.md +15 -1
  4. package/documentation/application/ORDER.md +290 -290
  5. package/documentation/application/PAYMENT.md +255 -255
  6. package/documentation/application/POSCART.md +297 -297
  7. package/documentation/platform/CART.md +499 -499
  8. package/documentation/platform/CATALOG.md +3088 -2702
  9. package/documentation/platform/COMPANYPROFILE.md +201 -201
  10. package/documentation/platform/CONTENT.md +123 -1
  11. package/documentation/platform/ORDER.md +1233 -1158
  12. package/documentation/platform/PARTNER.md +7 -7
  13. package/documentation/platform/PAYMENT.md +83 -83
  14. package/package.json +1 -1
  15. package/sdk/application/ApplicationConfig.js +1 -1
  16. package/sdk/application/Cart/CartApplicationClient.js +619 -108
  17. package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
  18. package/sdk/application/Cart/CartApplicationModel.js +335 -335
  19. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
  20. package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
  21. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
  22. package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
  23. package/sdk/application/Common/CommonApplicationClient.js +48 -8
  24. package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
  27. package/sdk/application/Content/ContentApplicationClient.js +444 -76
  28. package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
  29. package/sdk/application/Content/ContentApplicationModel.js +11 -1
  30. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
  31. package/sdk/application/Lead/LeadApplicationClient.js +164 -30
  32. package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
  33. package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
  34. package/sdk/application/Order/OrderApplicationClient.js +287 -54
  35. package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
  36. package/sdk/application/Order/OrderApplicationModel.js +357 -357
  37. package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
  39. package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
  43. package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
  44. package/sdk/application/Share/ShareApplicationClient.js +157 -32
  45. package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
  46. package/sdk/application/User/UserApplicationClient.js +806 -148
  47. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
  48. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
  49. package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  52. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
  53. package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
  54. package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
  55. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
  56. package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
  57. package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
  58. package/sdk/platform/Cart/CartPlatformModel.js +617 -617
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
  61. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
  62. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
  63. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
  64. package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
  65. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
  66. package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
  67. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
  68. package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
  69. package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
  70. package/sdk/platform/Common/CommonPlatformClient.js +51 -8
  71. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
  72. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
  73. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  74. package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
  75. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
  76. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
  77. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
  78. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
  79. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
  80. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
  81. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  82. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
  83. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
  85. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
  87. package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
  88. package/sdk/platform/Content/ContentPlatformModel.js +43 -1
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
  93. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
  94. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
  95. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
  96. package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
  98. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
  99. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
  100. package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
  101. package/sdk/platform/OAuthClient.js +8 -8
  102. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
  103. package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
  104. package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
  105. package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
  106. package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
  107. package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
  108. package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
  109. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
  110. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
  111. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  112. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  113. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
  114. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
  115. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
  116. package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
  117. package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
  118. package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
  119. package/sdk/platform/PlatformApplicationClient.js +3420 -3212
  120. package/sdk/platform/PlatformClient.d.ts +2959 -2787
  121. package/sdk/platform/PlatformClient.js +3420 -3212
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
  123. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
  124. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
  125. package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
  126. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
  127. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
  128. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
  129. package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
  130. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
  131. package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
  132. package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
  133. package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
  134. package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
@@ -7888,50 +7888,50 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7888
7888
 
7889
7889
 
7890
7890
 
7891
- #### [ProductListingActionPage](#ProductListingActionPage)
7891
+ #### [Meta](#Meta)
7892
7892
 
7893
7893
  | Properties | Type | Nullable | Description |
7894
7894
  | ---------- | ---- | -------- | ----------- |
7895
- | type | string | no | |
7896
- | query | string | no | |
7897
- | params | string | no | |
7895
+ | source | string | no | |
7898
7896
 
7899
7897
  ---
7900
7898
 
7901
7899
 
7902
7900
 
7903
7901
 
7904
- #### [ProductListingAction](#ProductListingAction)
7902
+ #### [Media](#Media)
7905
7903
 
7906
7904
  | Properties | Type | Nullable | Description |
7907
7905
  | ---------- | ---- | -------- | ----------- |
7906
+ | meta | [Meta](#Meta) | no | |
7907
+ | url | string | no | |
7908
+ | alt | string | no | |
7908
7909
  | type | string | no | |
7909
- | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7910
7910
 
7911
7911
  ---
7912
7912
 
7913
7913
 
7914
7914
 
7915
7915
 
7916
- #### [Meta](#Meta)
7916
+ #### [ProductListingActionPage](#ProductListingActionPage)
7917
7917
 
7918
7918
  | Properties | Type | Nullable | Description |
7919
7919
  | ---------- | ---- | -------- | ----------- |
7920
- | source | string | no | |
7920
+ | query | string | no | |
7921
+ | type | string | no | |
7922
+ | params | string | no | |
7921
7923
 
7922
7924
  ---
7923
7925
 
7924
7926
 
7925
7927
 
7926
7928
 
7927
- #### [Media](#Media)
7929
+ #### [ProductListingAction](#ProductListingAction)
7928
7930
 
7929
7931
  | Properties | Type | Nullable | Description |
7930
7932
  | ---------- | ---- | -------- | ----------- |
7933
+ | page | [ProductListingActionPage](#ProductListingActionPage) | no | |
7931
7934
  | type | string | no | |
7932
- | meta | [Meta](#Meta) | no | |
7933
- | alt | string | no | |
7934
- | url | string | no | |
7935
7935
 
7936
7936
  ---
7937
7937
 
@@ -7942,23 +7942,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7942
7942
 
7943
7943
  | Properties | Type | Nullable | Description |
7944
7944
  | ---------- | ---- | -------- | ----------- |
7945
- | description | string | no | |
7945
+ | logo | [Media](#Media) | no | |
7946
7946
  | action | [ProductListingAction](#ProductListingAction) | no | |
7947
- | uid | number | no | |
7948
7947
  | name | string | no | |
7949
- | logo | [Media](#Media) | no | |
7950
-
7951
- ---
7952
-
7953
-
7954
-
7955
-
7956
- #### [NetQuantity](#NetQuantity)
7957
-
7958
- | Properties | Type | Nullable | Description |
7959
- | ---------- | ---- | -------- | ----------- |
7960
- | value | number | no | |
7961
- | unit | any | no | |
7948
+ | uid | number | no | |
7949
+ | description | string | no | |
7962
7950
 
7963
7951
  ---
7964
7952
 
@@ -7969,21 +7957,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7969
7957
 
7970
7958
  | Properties | Type | Nullable | Description |
7971
7959
  | ---------- | ---- | -------- | ----------- |
7972
- | l1 | [ProductBrand](#ProductBrand) | no | |
7973
7960
  | l2 | [ProductBrand](#ProductBrand) | no | |
7974
7961
  | l3 | [ProductBrand](#ProductBrand) | no | |
7975
-
7976
- ---
7977
-
7978
-
7979
-
7980
-
7981
- #### [ApplicationItemSEO](#ApplicationItemSEO)
7982
-
7983
- | Properties | Type | Nullable | Description |
7984
- | ---------- | ---- | -------- | ----------- |
7985
- | description | any | no | |
7986
- | title | any | no | |
7962
+ | l1 | [ProductBrand](#ProductBrand) | no | |
7987
7963
 
7988
7964
  ---
7989
7965
 
@@ -7994,8 +7970,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
7994
7970
 
7995
7971
  | Properties | Type | Nullable | Description |
7996
7972
  | ---------- | ---- | -------- | ----------- |
7997
- | type | string | no | |
7998
7973
  | key | string | no | |
7974
+ | type | string | no | |
7999
7975
  | value | string | no | |
8000
7976
 
8001
7977
  ---
@@ -8019,10 +7995,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8019
7995
 
8020
7996
  | Properties | Type | Nullable | Description |
8021
7997
  | ---------- | ---- | -------- | ----------- |
8022
- | min | number | no | |
7998
+ | currency_symbol | string | no | |
8023
7999
  | max | number | no | |
8024
8000
  | currency_code | string | no | |
8025
- | currency_symbol | string | no | |
8001
+ | min | number | no | |
8026
8002
 
8027
8003
  ---
8028
8004
 
@@ -8045,8 +8021,20 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8045
8021
 
8046
8022
  | Properties | Type | Nullable | Description |
8047
8023
  | ---------- | ---- | -------- | ----------- |
8048
- | value | string | yes | |
8049
8024
  | key | string | yes | |
8025
+ | value | string | yes | |
8026
+
8027
+ ---
8028
+
8029
+
8030
+
8031
+
8032
+ #### [ApplicationItemSEO](#ApplicationItemSEO)
8033
+
8034
+ | Properties | Type | Nullable | Description |
8035
+ | ---------- | ---- | -------- | ----------- |
8036
+ | title | any | no | |
8037
+ | description | any | no | |
8050
8038
 
8051
8039
  ---
8052
8040
 
@@ -8058,8 +8046,20 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8058
8046
  | Properties | Type | Nullable | Description |
8059
8047
  | ---------- | ---- | -------- | ----------- |
8060
8048
  | increment_unit | number | no | |
8061
- | maximum | number | no | |
8062
8049
  | minimum | number | no | |
8050
+ | maximum | number | no | |
8051
+
8052
+ ---
8053
+
8054
+
8055
+
8056
+
8057
+ #### [NetQuantity](#NetQuantity)
8058
+
8059
+ | Properties | Type | Nullable | Description |
8060
+ | ---------- | ---- | -------- | ----------- |
8061
+ | unit | any | no | |
8062
+ | value | number | no | |
8063
8063
 
8064
8064
  ---
8065
8065
 
@@ -8070,40 +8070,40 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8070
8070
 
8071
8071
  | Properties | Type | Nullable | Description |
8072
8072
  | ---------- | ---- | -------- | ----------- |
8073
- | attributes | string | no | |
8074
- | brand | [ProductBrand](#ProductBrand) | no | |
8075
- | highlights | [string] | no | |
8076
- | teaser_tag | string | no | |
8077
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8078
- | similars | [string] | no | |
8079
- | action | [ProductListingAction](#ProductListingAction) | no | |
8080
8073
  | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8074
+ | type | string | no | |
8075
+ | attributes | string | no | |
8076
+ | uid | number | no | |
8081
8077
  | color | string | no | |
8082
- | is_dependent | boolean | no | |
8083
- | slug | string | yes | |
8084
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8078
+ | similars | [string] | no | |
8079
+ | short_description | string | no | |
8080
+ | medias | [[Media](#Media)] | no | |
8085
8081
  | has_variant | boolean | no | |
8086
- | item_code | string | no | |
8082
+ | item_type | string | no | |
8087
8083
  | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8088
- | medias | [[Media](#Media)] | no | |
8089
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8090
- | tags | [string] | no | |
8091
8084
  | rating | number | no | |
8092
- | type | string | no | |
8093
- | rating_count | number | no | |
8094
- | description | string | no | |
8095
- | discount | string | no | |
8096
- | short_description | string | no | |
8097
- | _custom_json | string | no | |
8098
- | uid | number | no | |
8085
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8086
+ | is_dependent | boolean | no | |
8099
8087
  | image_nature | string | no | |
8088
+ | name | string | no | |
8100
8089
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8101
8090
  | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8091
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8092
+ | description | string | no | |
8093
+ | brand | [ProductBrand](#ProductBrand) | no | |
8094
+ | rating_count | number | no | |
8095
+ | _custom_json | string | no | |
8102
8096
  | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8103
- | item_type | string | no | |
8104
- | name | string | no | |
8105
- | tryouts | [string] | no | |
8097
+ | highlights | [string] | no | |
8098
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8106
8099
  | product_online_date | string | no | |
8100
+ | tryouts | [string] | no | |
8101
+ | item_code | string | no | |
8102
+ | discount | string | no | |
8103
+ | teaser_tag | string | no | |
8104
+ | tags | [string] | no | |
8105
+ | slug | string | yes | |
8106
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8107
8107
 
8108
8108
  ---
8109
8109
 
@@ -8121,117 +8121,117 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8121
8121
 
8122
8122
 
8123
8123
 
8124
- #### [Dimension](#Dimension)
8124
+ #### [ColumnHeader](#ColumnHeader)
8125
8125
 
8126
8126
  | Properties | Type | Nullable | Description |
8127
8127
  | ---------- | ---- | -------- | ----------- |
8128
- | length | number | yes | |
8129
- | unit | string | yes | |
8130
- | height | number | yes | |
8131
- | width | number | yes | |
8132
- | is_default | boolean | yes | |
8128
+ | convertable | boolean | no | |
8129
+ | value | string | no | |
8133
8130
 
8134
8131
  ---
8135
8132
 
8136
8133
 
8137
8134
 
8138
8135
 
8139
- #### [Weight](#Weight)
8136
+ #### [ColumnHeaders](#ColumnHeaders)
8140
8137
 
8141
8138
  | Properties | Type | Nullable | Description |
8142
8139
  | ---------- | ---- | -------- | ----------- |
8143
- | unit | string | yes | |
8144
- | shipping | number | yes | |
8145
- | is_default | boolean | yes | |
8140
+ | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8141
+ | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8142
+ | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8143
+ | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8144
+ | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8145
+ | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8146
8146
 
8147
8147
  ---
8148
8148
 
8149
8149
 
8150
8150
 
8151
8151
 
8152
- #### [ProductSize](#ProductSize)
8152
+ #### [SizeChartValues](#SizeChartValues)
8153
8153
 
8154
8154
  | Properties | Type | Nullable | Description |
8155
8155
  | ---------- | ---- | -------- | ----------- |
8156
- | quantity | number | no | |
8157
- | dimension | [Dimension](#Dimension) | no | |
8158
- | value | string | no | |
8159
- | display | string | no | |
8160
- | is_available | boolean | no | |
8161
- | seller_identifiers | [string] | no | |
8162
- | weight | [Weight](#Weight) | no | |
8156
+ | col_1 | string | no | |
8157
+ | col_2 | string | no | |
8158
+ | col_6 | string | no | |
8159
+ | col_4 | string | no | |
8160
+ | col_3 | string | no | |
8161
+ | col_5 | string | no | |
8163
8162
 
8164
8163
  ---
8165
8164
 
8166
8165
 
8167
8166
 
8168
8167
 
8169
- #### [ProductSizeStores](#ProductSizeStores)
8168
+ #### [SizeChart](#SizeChart)
8170
8169
 
8171
8170
  | Properties | Type | Nullable | Description |
8172
8171
  | ---------- | ---- | -------- | ----------- |
8173
- | count | number | no | |
8172
+ | unit | string | no | |
8173
+ | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8174
+ | title | string | no | |
8175
+ | image | string | no | |
8176
+ | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8177
+ | description | string | no | |
8178
+ | size_tip | string | no | |
8174
8179
 
8175
8180
  ---
8176
8181
 
8177
8182
 
8178
8183
 
8179
8184
 
8180
- #### [ColumnHeader](#ColumnHeader)
8185
+ #### [Weight](#Weight)
8181
8186
 
8182
8187
  | Properties | Type | Nullable | Description |
8183
8188
  | ---------- | ---- | -------- | ----------- |
8184
- | value | string | no | |
8185
- | convertable | boolean | no | |
8189
+ | shipping | number | yes | |
8190
+ | unit | string | yes | |
8191
+ | is_default | boolean | yes | |
8186
8192
 
8187
8193
  ---
8188
8194
 
8189
8195
 
8190
8196
 
8191
8197
 
8192
- #### [ColumnHeaders](#ColumnHeaders)
8198
+ #### [Dimension](#Dimension)
8193
8199
 
8194
8200
  | Properties | Type | Nullable | Description |
8195
8201
  | ---------- | ---- | -------- | ----------- |
8196
- | col_3 | [ColumnHeader](#ColumnHeader) | no | |
8197
- | col_6 | [ColumnHeader](#ColumnHeader) | no | |
8198
- | col_5 | [ColumnHeader](#ColumnHeader) | no | |
8199
- | col_1 | [ColumnHeader](#ColumnHeader) | no | |
8200
- | col_2 | [ColumnHeader](#ColumnHeader) | no | |
8201
- | col_4 | [ColumnHeader](#ColumnHeader) | no | |
8202
+ | width | number | yes | |
8203
+ | is_default | boolean | yes | |
8204
+ | length | number | yes | |
8205
+ | unit | string | yes | |
8206
+ | height | number | yes | |
8202
8207
 
8203
8208
  ---
8204
8209
 
8205
8210
 
8206
8211
 
8207
8212
 
8208
- #### [SizeChartValues](#SizeChartValues)
8213
+ #### [ProductSize](#ProductSize)
8209
8214
 
8210
8215
  | Properties | Type | Nullable | Description |
8211
8216
  | ---------- | ---- | -------- | ----------- |
8212
- | col_3 | string | no | |
8213
- | col_6 | string | no | |
8214
- | col_5 | string | no | |
8215
- | col_1 | string | no | |
8216
- | col_2 | string | no | |
8217
- | col_4 | string | no | |
8217
+ | weight | [Weight](#Weight) | no | |
8218
+ | is_available | boolean | no | |
8219
+ | display | string | no | |
8220
+ | value | string | no | |
8221
+ | seller_identifiers | [string] | no | |
8222
+ | dimension | [Dimension](#Dimension) | no | |
8223
+ | quantity | number | no | |
8218
8224
 
8219
8225
  ---
8220
8226
 
8221
8227
 
8222
8228
 
8223
8229
 
8224
- #### [SizeChart](#SizeChart)
8230
+ #### [ProductSizeStores](#ProductSizeStores)
8225
8231
 
8226
8232
  | Properties | Type | Nullable | Description |
8227
8233
  | ---------- | ---- | -------- | ----------- |
8228
- | image | string | no | |
8229
- | unit | string | no | |
8230
- | headers | [ColumnHeaders](#ColumnHeaders) | no | |
8231
- | description | string | no | |
8232
- | size_tip | string | no | |
8233
- | sizes | [[SizeChartValues](#SizeChartValues)] | no | |
8234
- | title | string | no | |
8234
+ | count | number | no | |
8235
8235
 
8236
8236
  ---
8237
8237
 
@@ -8242,13 +8242,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8242
8242
 
8243
8243
  | Properties | Type | Nullable | Description |
8244
8244
  | ---------- | ---- | -------- | ----------- |
8245
- | discount | string | no | |
8246
- | multi_size | boolean | no | |
8245
+ | size_chart | [SizeChart](#SizeChart) | no | |
8247
8246
  | sellable | boolean | no | |
8248
- | sizes | [[ProductSize](#ProductSize)] | no | |
8249
8247
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8248
+ | multi_size | boolean | no | |
8249
+ | discount | string | no | |
8250
+ | sizes | [[ProductSize](#ProductSize)] | no | |
8250
8251
  | stores | [ProductSizeStores](#ProductSizeStores) | no | |
8251
- | size_chart | [SizeChart](#SizeChart) | no | |
8252
8252
 
8253
8253
  ---
8254
8254
 
@@ -8259,10 +8259,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8259
8259
 
8260
8260
  | Properties | Type | Nullable | Description |
8261
8261
  | ---------- | ---- | -------- | ----------- |
8262
- | display | string | no | |
8263
- | key | string | no | |
8264
8262
  | logo | string | no | |
8263
+ | key | string | no | |
8265
8264
  | description | string | no | |
8265
+ | display | string | no | |
8266
8266
 
8267
8267
  ---
8268
8268
 
@@ -8285,8 +8285,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8285
8285
 
8286
8286
  | Properties | Type | Nullable | Description |
8287
8287
  | ---------- | ---- | -------- | ----------- |
8288
- | items | [[ProductDetail](#ProductDetail)] | no | |
8289
8288
  | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8289
+ | items | [[ProductDetail](#ProductDetail)] | no | |
8290
8290
 
8291
8291
  ---
8292
8292
 
@@ -8297,10 +8297,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8297
8297
 
8298
8298
  | Properties | Type | Nullable | Description |
8299
8299
  | ---------- | ---- | -------- | ----------- |
8300
+ | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8301
+ | title | string | no | |
8300
8302
  | subtitle | string | no | |
8301
8303
  | items | [[ProductDetail](#ProductDetail)] | no | |
8302
- | title | string | no | |
8303
- | attributes_metadata | [[AttributeMetadata](#AttributeMetadata)] | no | |
8304
8304
 
8305
8305
  ---
8306
8306
 
@@ -8322,15 +8322,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8322
8322
 
8323
8323
  | Properties | Type | Nullable | Description |
8324
8324
  | ---------- | ---- | -------- | ----------- |
8325
- | color_name | string | no | |
8326
- | action | [ProductListingAction](#ProductListingAction) | no | |
8327
- | uid | number | no | |
8328
- | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8329
- | color | string | no | |
8330
8325
  | medias | [[Media](#Media)] | no | |
8326
+ | is_available | boolean | no | |
8331
8327
  | value | string | no | |
8332
8328
  | name | string | no | |
8333
- | is_available | boolean | no | |
8329
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8330
+ | color_name | string | no | |
8331
+ | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8332
+ | color | string | no | |
8333
+ | uid | number | no | |
8334
8334
  | slug | string | no | |
8335
8335
 
8336
8336
  ---
@@ -8343,9 +8343,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8343
8343
  | Properties | Type | Nullable | Description |
8344
8344
  | ---------- | ---- | -------- | ----------- |
8345
8345
  | key | string | no | |
8346
- | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8347
- | header | string | no | |
8348
8346
  | display_type | string | no | |
8347
+ | header | string | no | |
8348
+ | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8349
8349
 
8350
8350
  ---
8351
8351
 
@@ -8363,27 +8363,25 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8363
8363
 
8364
8364
 
8365
8365
 
8366
- #### [ProductStockPrice](#ProductStockPrice)
8366
+ #### [CompanyDetail](#CompanyDetail)
8367
8367
 
8368
8368
  | Properties | Type | Nullable | Description |
8369
8369
  | ---------- | ---- | -------- | ----------- |
8370
- | marked | number | no | |
8371
- | currency | string | no | |
8372
- | effective | number | no | |
8370
+ | id | number | no | |
8371
+ | name | string | no | |
8373
8372
 
8374
8373
  ---
8375
8374
 
8376
8375
 
8377
8376
 
8378
8377
 
8379
- #### [StoreDetail](#StoreDetail)
8378
+ #### [ProductStockPrice](#ProductStockPrice)
8380
8379
 
8381
8380
  | Properties | Type | Nullable | Description |
8382
8381
  | ---------- | ---- | -------- | ----------- |
8383
- | id | number | no | |
8384
- | name | string | no | |
8385
- | code | string | no | |
8386
- | city | string | no | |
8382
+ | currency | string | no | |
8383
+ | marked | number | no | |
8384
+ | effective | number | no | |
8387
8385
 
8388
8386
  ---
8389
8387
 
@@ -8394,20 +8392,22 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8394
8392
 
8395
8393
  | Properties | Type | Nullable | Description |
8396
8394
  | ---------- | ---- | -------- | ----------- |
8397
- | name | string | no | |
8398
8395
  | uid | number | no | |
8399
8396
  | count | number | no | |
8397
+ | name | string | no | |
8400
8398
 
8401
8399
  ---
8402
8400
 
8403
8401
 
8404
8402
 
8405
8403
 
8406
- #### [CompanyDetail](#CompanyDetail)
8404
+ #### [StoreDetail](#StoreDetail)
8407
8405
 
8408
8406
  | Properties | Type | Nullable | Description |
8409
8407
  | ---------- | ---- | -------- | ----------- |
8410
8408
  | id | number | no | |
8409
+ | code | string | no | |
8410
+ | city | string | no | |
8411
8411
  | name | string | no | |
8412
8412
 
8413
8413
  ---
@@ -8419,15 +8419,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8419
8419
 
8420
8420
  | Properties | Type | Nullable | Description |
8421
8421
  | ---------- | ---- | -------- | ----------- |
8422
- | quantity | number | no | |
8423
8422
  | size | string | no | |
8424
- | uid | string | no | |
8423
+ | company | [CompanyDetail](#CompanyDetail) | no | |
8425
8424
  | price | [ProductStockPrice](#ProductStockPrice) | no | |
8426
- | identifier | string | no | |
8427
- | store | [StoreDetail](#StoreDetail) | no | |
8428
8425
  | seller | [Seller](#Seller) | no | |
8426
+ | store | [StoreDetail](#StoreDetail) | no | |
8427
+ | uid | string | no | |
8429
8428
  | item_id | number | no | |
8430
- | company | [CompanyDetail](#CompanyDetail) | no | |
8429
+ | quantity | number | no | |
8430
+ | identifier | string | no | |
8431
8431
 
8432
8432
  ---
8433
8433
 
@@ -8449,13 +8449,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8449
8449
 
8450
8450
  | Properties | Type | Nullable | Description |
8451
8451
  | ---------- | ---- | -------- | ----------- |
8452
- | has_previous | boolean | no | |
8453
8452
  | size | number | no | |
8454
- | current | number | no | |
8453
+ | has_previous | boolean | no | |
8455
8454
  | item_total | number | no | |
8455
+ | next_id | string | no | |
8456
8456
  | type | string | yes | |
8457
+ | current | number | no | |
8457
8458
  | has_next | boolean | no | |
8458
- | next_id | string | no | |
8459
8459
 
8460
8460
  ---
8461
8461
 
@@ -8466,8 +8466,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8466
8466
 
8467
8467
  | Properties | Type | Nullable | Description |
8468
8468
  | ---------- | ---- | -------- | ----------- |
8469
- | items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
8470
8469
  | page | [Page](#Page) | yes | |
8470
+ | items | [[ProductStockStatusItem](#ProductStockStatusItem)] | no | |
8471
8471
 
8472
8472
  ---
8473
8473
 
@@ -8478,45 +8478,45 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8478
8478
 
8479
8479
  | Properties | Type | Nullable | Description |
8480
8480
  | ---------- | ---- | -------- | ----------- |
8481
+ | is_selected | boolean | no | |
8481
8482
  | value | string | no | |
8482
8483
  | name | string | no | |
8483
- | is_selected | boolean | no | |
8484
8484
 
8485
8485
  ---
8486
8486
 
8487
8487
 
8488
8488
 
8489
8489
 
8490
- #### [ProductFiltersKey](#ProductFiltersKey)
8490
+ #### [ProductFiltersValue](#ProductFiltersValue)
8491
8491
 
8492
8492
  | Properties | Type | Nullable | Description |
8493
8493
  | ---------- | ---- | -------- | ----------- |
8494
- | name | string | yes | |
8494
+ | selected_min | number | no | |
8495
+ | selected_max | number | no | |
8496
+ | currency_code | string | no | |
8497
+ | max | number | no | |
8498
+ | min | number | no | |
8495
8499
  | display | string | yes | |
8496
- | logo | string | no | |
8497
- | kind | string | no | |
8500
+ | value | string | no | |
8501
+ | count | number | no | |
8502
+ | currency_symbol | string | no | |
8503
+ | is_selected | boolean | yes | |
8504
+ | query_format | string | no | |
8505
+ | display_format | string | no | |
8498
8506
 
8499
8507
  ---
8500
8508
 
8501
8509
 
8502
8510
 
8503
8511
 
8504
- #### [ProductFiltersValue](#ProductFiltersValue)
8512
+ #### [ProductFiltersKey](#ProductFiltersKey)
8505
8513
 
8506
8514
  | Properties | Type | Nullable | Description |
8507
8515
  | ---------- | ---- | -------- | ----------- |
8508
- | is_selected | boolean | yes | |
8509
- | query_format | string | no | |
8510
- | count | number | no | |
8511
- | selected_min | number | no | |
8512
- | currency_symbol | string | no | |
8513
- | selected_max | number | no | |
8514
- | display_format | string | no | |
8515
- | value | string | no | |
8516
+ | kind | string | no | |
8517
+ | name | string | yes | |
8518
+ | logo | string | no | |
8516
8519
  | display | string | yes | |
8517
- | min | number | no | |
8518
- | max | number | no | |
8519
- | currency_code | string | no | |
8520
8520
 
8521
8521
  ---
8522
8522
 
@@ -8527,8 +8527,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8527
8527
 
8528
8528
  | Properties | Type | Nullable | Description |
8529
8529
  | ---------- | ---- | -------- | ----------- |
8530
- | key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
8531
8530
  | values | [[ProductFiltersValue](#ProductFiltersValue)] | yes | |
8531
+ | key | [ProductFiltersKey](#ProductFiltersKey) | yes | |
8532
8532
 
8533
8533
  ---
8534
8534
 
@@ -8539,11 +8539,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8539
8539
 
8540
8540
  | Properties | Type | Nullable | Description |
8541
8541
  | ---------- | ---- | -------- | ----------- |
8542
+ | key | string | no | |
8543
+ | display_type | string | no | |
8542
8544
  | total | number | no | |
8543
- | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8544
8545
  | header | string | no | |
8545
- | display_type | string | no | |
8546
- | key | string | no | |
8546
+ | items | [[ProductVariantItemResponse](#ProductVariantItemResponse)] | no | |
8547
8547
 
8548
8548
  ---
8549
8549
 
@@ -8554,44 +8554,44 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8554
8554
 
8555
8555
  | Properties | Type | Nullable | Description |
8556
8556
  | ---------- | ---- | -------- | ----------- |
8557
- | attributes | string | no | |
8558
- | brand | [ProductBrand](#ProductBrand) | no | |
8559
- | highlights | [string] | no | |
8560
- | teaser_tag | string | no | |
8561
- | net_quantity | [NetQuantity](#NetQuantity) | no | |
8562
- | similars | [string] | no | |
8563
- | action | [ProductListingAction](#ProductListingAction) | no | |
8557
+ | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8564
8558
  | category_map | [ProductCategoryMap](#ProductCategoryMap) | no | |
8559
+ | type | string | no | |
8560
+ | attributes | string | no | |
8561
+ | uid | number | no | |
8565
8562
  | color | string | no | |
8566
- | is_dependent | boolean | no | |
8567
- | slug | string | yes | |
8568
- | variants | [[ProductVariantListingResponse](#ProductVariantListingResponse)] | no | |
8569
- | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8570
- | has_variant | boolean | no | |
8571
- | sellable | boolean | no | |
8572
- | item_code | string | no | |
8573
- | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8563
+ | similars | [string] | no | |
8564
+ | short_description | string | no | |
8574
8565
  | medias | [[Media](#Media)] | no | |
8575
- | categories | [[ProductBrand](#ProductBrand)] | no | |
8566
+ | has_variant | boolean | no | |
8567
+ | item_type | string | no | |
8576
8568
  | identifiers | [string] | no | |
8577
- | tags | [string] | no | |
8569
+ | grouped_attributes | [[ProductDetailGroupedAttribute](#ProductDetailGroupedAttribute)] | no | |
8578
8570
  | rating | number | no | |
8579
- | type | string | no | |
8580
- | rating_count | number | no | |
8581
- | description | string | no | |
8582
- | discount | string | no | |
8583
- | short_description | string | no | |
8584
- | _custom_json | string | no | |
8585
- | uid | number | no | |
8571
+ | categories | [[ProductBrand](#ProductBrand)] | no | |
8572
+ | is_dependent | boolean | no | |
8586
8573
  | image_nature | string | no | |
8574
+ | name | string | no | |
8575
+ | sellable | boolean | no | |
8587
8576
  | price | [ProductListingPrice](#ProductListingPrice) | no | |
8588
8577
  | _custom_meta | [[CustomMetaFields](#CustomMetaFields)] | no | |
8589
- | sizes | [string] | no | |
8578
+ | seo | [ApplicationItemSEO](#ApplicationItemSEO) | no | |
8579
+ | description | string | no | |
8580
+ | brand | [ProductBrand](#ProductBrand) | no | |
8581
+ | rating_count | number | no | |
8582
+ | _custom_json | string | no | |
8590
8583
  | moq | [ApplicationItemMOQ](#ApplicationItemMOQ) | no | |
8591
- | item_type | string | no | |
8592
- | name | string | no | |
8593
- | tryouts | [string] | no | |
8584
+ | highlights | [string] | no | |
8585
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8594
8586
  | product_online_date | string | no | |
8587
+ | tryouts | [string] | no | |
8588
+ | item_code | string | no | |
8589
+ | discount | string | no | |
8590
+ | teaser_tag | string | no | |
8591
+ | sizes | [string] | no | |
8592
+ | tags | [string] | no | |
8593
+ | slug | string | yes | |
8594
+ | net_quantity | [NetQuantity](#NetQuantity) | no | |
8595
8595
 
8596
8596
  ---
8597
8597
 
@@ -8602,10 +8602,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8602
8602
 
8603
8603
  | Properties | Type | Nullable | Description |
8604
8604
  | ---------- | ---- | -------- | ----------- |
8605
+ | page | [Page](#Page) | yes | |
8605
8606
  | sort_on | [[ProductSortOn](#ProductSortOn)] | no | |
8606
8607
  | filters | [[ProductFilters](#ProductFilters)] | no | |
8607
8608
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8608
- | page | [Page](#Page) | yes | |
8609
8609
 
8610
8610
  ---
8611
8611
 
@@ -8616,8 +8616,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8616
8616
 
8617
8617
  | Properties | Type | Nullable | Description |
8618
8618
  | ---------- | ---- | -------- | ----------- |
8619
- | landscape | [Media](#Media) | no | |
8620
8619
  | portrait | [Media](#Media) | no | |
8620
+ | landscape | [Media](#Media) | no | |
8621
8621
 
8622
8622
  ---
8623
8623
 
@@ -8628,14 +8628,14 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8628
8628
 
8629
8629
  | Properties | Type | Nullable | Description |
8630
8630
  | ---------- | ---- | -------- | ----------- |
8631
- | description | string | no | |
8632
- | discount | string | no | |
8633
- | departments | [string] | no | |
8631
+ | logo | [Media](#Media) | no | |
8634
8632
  | action | [ProductListingAction](#ProductListingAction) | no | |
8635
- | uid | number | no | |
8636
- | banners | [ImageUrls](#ImageUrls) | no | |
8637
8633
  | name | string | no | |
8638
- | logo | [Media](#Media) | no | |
8634
+ | banners | [ImageUrls](#ImageUrls) | no | |
8635
+ | discount | string | no | |
8636
+ | uid | number | no | |
8637
+ | description | string | no | |
8638
+ | departments | [string] | no | |
8639
8639
  | slug | string | no | |
8640
8640
 
8641
8641
  ---
@@ -8647,8 +8647,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8647
8647
 
8648
8648
  | Properties | Type | Nullable | Description |
8649
8649
  | ---------- | ---- | -------- | ----------- |
8650
- | items | [[BrandItem](#BrandItem)] | no | |
8651
8650
  | page | [Page](#Page) | yes | |
8651
+ | items | [[BrandItem](#BrandItem)] | no | |
8652
8652
 
8653
8653
  ---
8654
8654
 
@@ -8659,12 +8659,12 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8659
8659
 
8660
8660
  | Properties | Type | Nullable | Description |
8661
8661
  | ---------- | ---- | -------- | ----------- |
8662
- | description | string | no | |
8663
- | _custom_json | string | no | |
8662
+ | logo | [Media](#Media) | no | |
8663
+ | name | string | no | |
8664
8664
  | banners | [ImageUrls](#ImageUrls) | no | |
8665
8665
  | uid | number | no | |
8666
- | name | string | no | |
8667
- | logo | [Media](#Media) | no | |
8666
+ | description | string | no | |
8667
+ | _custom_json | string | no | |
8668
8668
 
8669
8669
  ---
8670
8670
 
@@ -8675,8 +8675,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8675
8675
 
8676
8676
  | Properties | Type | Nullable | Description |
8677
8677
  | ---------- | ---- | -------- | ----------- |
8678
- | uid | number | no | |
8679
8678
  | slug | string | no | |
8679
+ | uid | number | no | |
8680
8680
 
8681
8681
  ---
8682
8682
 
@@ -8687,13 +8687,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8687
8687
 
8688
8688
  | Properties | Type | Nullable | Description |
8689
8689
  | ---------- | ---- | -------- | ----------- |
8690
+ | name | string | no | |
8691
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8690
8692
  | childs | [string] | no | |
8691
- | _custom_json | string | no | |
8692
- | uid | number | no | |
8693
8693
  | banners | [ImageUrls](#ImageUrls) | no | |
8694
- | action | [ProductListingAction](#ProductListingAction) | no | |
8695
- | name | string | no | |
8694
+ | uid | number | no | |
8696
8695
  | slug | string | no | |
8696
+ | _custom_json | string | no | |
8697
8697
 
8698
8698
  ---
8699
8699
 
@@ -8704,13 +8704,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8704
8704
 
8705
8705
  | Properties | Type | Nullable | Description |
8706
8706
  | ---------- | ---- | -------- | ----------- |
8707
+ | name | string | no | |
8708
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8707
8709
  | childs | [[ThirdLevelChild](#ThirdLevelChild)] | no | |
8708
- | _custom_json | string | no | |
8709
- | uid | number | no | |
8710
8710
  | banners | [ImageUrls](#ImageUrls) | no | |
8711
- | action | [ProductListingAction](#ProductListingAction) | no | |
8712
- | name | string | no | |
8711
+ | uid | number | no | |
8713
8712
  | slug | string | no | |
8713
+ | _custom_json | string | no | |
8714
8714
 
8715
8715
  ---
8716
8716
 
@@ -8721,13 +8721,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8721
8721
 
8722
8722
  | Properties | Type | Nullable | Description |
8723
8723
  | ---------- | ---- | -------- | ----------- |
8724
+ | name | string | no | |
8725
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8724
8726
  | childs | [[SecondLevelChild](#SecondLevelChild)] | no | |
8725
- | _custom_json | string | no | |
8726
- | uid | number | no | |
8727
8727
  | banners | [ImageUrls](#ImageUrls) | no | |
8728
- | action | [ProductListingAction](#ProductListingAction) | no | |
8729
- | name | string | no | |
8728
+ | uid | number | no | |
8730
8729
  | slug | string | no | |
8730
+ | _custom_json | string | no | |
8731
8731
 
8732
8732
  ---
8733
8733
 
@@ -8738,8 +8738,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8738
8738
 
8739
8739
  | Properties | Type | Nullable | Description |
8740
8740
  | ---------- | ---- | -------- | ----------- |
8741
- | landscape | [Media](#Media) | yes | |
8742
8741
  | portrait | [Media](#Media) | yes | |
8742
+ | landscape | [Media](#Media) | yes | |
8743
8743
 
8744
8744
  ---
8745
8745
 
@@ -8750,11 +8750,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8750
8750
 
8751
8751
  | Properties | Type | Nullable | Description |
8752
8752
  | ---------- | ---- | -------- | ----------- |
8753
- | childs | [[Child](#Child)] | no | |
8754
8753
  | action | [ProductListingAction](#ProductListingAction) | yes | |
8755
- | uid | number | yes | |
8756
- | banners | [CategoryBanner](#CategoryBanner) | yes | |
8757
8754
  | name | string | yes | |
8755
+ | childs | [[Child](#Child)] | no | |
8756
+ | banners | [CategoryBanner](#CategoryBanner) | yes | |
8757
+ | uid | number | yes | |
8758
8758
  | slug | string | yes | |
8759
8759
 
8760
8760
  ---
@@ -8766,8 +8766,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8766
8766
 
8767
8767
  | Properties | Type | Nullable | Description |
8768
8768
  | ---------- | ---- | -------- | ----------- |
8769
- | items | [[CategoryItems](#CategoryItems)] | no | |
8770
8769
  | department | string | yes | |
8770
+ | items | [[CategoryItems](#CategoryItems)] | no | |
8771
8771
 
8772
8772
  ---
8773
8773
 
@@ -8790,11 +8790,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8790
8790
 
8791
8791
  | Properties | Type | Nullable | Description |
8792
8792
  | ---------- | ---- | -------- | ----------- |
8793
- | _custom_json | string | no | |
8793
+ | logo | [Media](#Media) | no | |
8794
+ | name | string | no | |
8794
8795
  | banners | [ImageUrls](#ImageUrls) | no | |
8795
8796
  | uid | number | no | |
8796
- | name | string | no | |
8797
- | logo | [Media](#Media) | no | |
8797
+ | _custom_json | string | no | |
8798
8798
 
8799
8799
  ---
8800
8800
 
@@ -8805,9 +8805,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8805
8805
 
8806
8806
  | Properties | Type | Nullable | Description |
8807
8807
  | ---------- | ---- | -------- | ----------- |
8808
+ | page | [Page](#Page) | yes | |
8808
8809
  | message | string | no | |
8809
8810
  | items | [[ProductListingDetail](#ProductListingDetail)] | no | |
8810
- | page | [Page](#Page) | yes | |
8811
8811
 
8812
8812
  ---
8813
8813
 
@@ -8818,10 +8818,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8818
8818
 
8819
8819
  | Properties | Type | Nullable | Description |
8820
8820
  | ---------- | ---- | -------- | ----------- |
8821
+ | logo | [Media](#Media) | no | |
8822
+ | name | string | no | |
8821
8823
  | priority_order | number | no | |
8822
8824
  | uid | number | no | |
8823
- | name | string | no | |
8824
- | logo | [Media](#Media) | no | |
8825
8825
  | slug | string | no | |
8826
8826
 
8827
8827
  ---
@@ -8844,11 +8844,11 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8844
8844
 
8845
8845
  | Properties | Type | Nullable | Description |
8846
8846
  | ---------- | ---- | -------- | ----------- |
8847
+ | logo | [Media](#Media) | no | |
8848
+ | display | string | no | |
8847
8849
  | action | [ProductListingAction](#ProductListingAction) | no | |
8848
- | _custom_json | string | no | |
8849
8850
  | type | string | no | |
8850
- | display | string | no | |
8851
- | logo | [Media](#Media) | no | |
8851
+ | _custom_json | string | no | |
8852
8852
 
8853
8853
  ---
8854
8854
 
@@ -8866,26 +8866,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8866
8866
 
8867
8867
 
8868
8868
 
8869
- #### [CollectionListingFilterType](#CollectionListingFilterType)
8869
+ #### [CollectionListingFilterTag](#CollectionListingFilterTag)
8870
8870
 
8871
8871
  | Properties | Type | Nullable | Description |
8872
8872
  | ---------- | ---- | -------- | ----------- |
8873
- | name | string | no | |
8874
- | is_selected | boolean | no | |
8875
8873
  | display | string | no | |
8874
+ | is_selected | boolean | no | |
8875
+ | name | string | no | |
8876
8876
 
8877
8877
  ---
8878
8878
 
8879
8879
 
8880
8880
 
8881
8881
 
8882
- #### [CollectionListingFilterTag](#CollectionListingFilterTag)
8882
+ #### [CollectionListingFilterType](#CollectionListingFilterType)
8883
8883
 
8884
8884
  | Properties | Type | Nullable | Description |
8885
8885
  | ---------- | ---- | -------- | ----------- |
8886
- | name | string | no | |
8887
- | is_selected | boolean | no | |
8888
8886
  | display | string | no | |
8887
+ | is_selected | boolean | no | |
8888
+ | name | string | no | |
8889
8889
 
8890
8890
  ---
8891
8891
 
@@ -8896,8 +8896,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8896
8896
 
8897
8897
  | Properties | Type | Nullable | Description |
8898
8898
  | ---------- | ---- | -------- | ----------- |
8899
- | type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
8900
8899
  | tags | [[CollectionListingFilterTag](#CollectionListingFilterTag)] | no | |
8900
+ | type | [[CollectionListingFilterType](#CollectionListingFilterType)] | no | |
8901
8901
 
8902
8902
  ---
8903
8903
 
@@ -8908,9 +8908,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8908
8908
 
8909
8909
  | Properties | Type | Nullable | Description |
8910
8910
  | ---------- | ---- | -------- | ----------- |
8911
- | value | [any] | yes | |
8912
- | op | string | yes | |
8913
8911
  | attribute | string | yes | |
8912
+ | op | string | yes | |
8913
+ | value | [any] | yes | |
8914
8914
 
8915
8915
  ---
8916
8916
 
@@ -8921,28 +8921,28 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8921
8921
 
8922
8922
  | Properties | Type | Nullable | Description |
8923
8923
  | ---------- | ---- | -------- | ----------- |
8924
- | action | [ProductListingAction](#ProductListingAction) | no | |
8925
- | banners | [ImageUrls](#ImageUrls) | no | |
8926
- | slug | string | no | |
8927
- | sort_on | string | no | |
8928
- | visible_facets_keys | [string] | no | |
8929
- | cron | string | no | |
8930
8924
  | query | [[CollectionQuery](#CollectionQuery)] | no | |
8931
- | meta | string | no | |
8932
- | is_active | boolean | no | |
8933
- | app_id | string | no | |
8934
- | type | string | no | |
8935
8925
  | allow_facets | boolean | no | |
8936
- | _schedule | string | no | |
8937
- | tag | [string] | no | |
8938
8926
  | logo | [Media](#Media) | no | |
8939
- | description | string | no | |
8940
- | allow_sort | boolean | no | |
8941
- | priority | number | no | |
8942
- | _custom_json | string | no | |
8927
+ | cron | string | no | |
8928
+ | type | string | no | |
8943
8929
  | uid | string | no | |
8930
+ | meta | string | no | |
8931
+ | visible_facets_keys | [string] | no | |
8944
8932
  | badge | string | no | |
8933
+ | sort_on | string | no | |
8934
+ | banners | [ImageUrls](#ImageUrls) | no | |
8935
+ | is_active | boolean | no | |
8936
+ | tag | [string] | no | |
8945
8937
  | name | string | no | |
8938
+ | description | string | no | |
8939
+ | _custom_json | string | no | |
8940
+ | _schedule | string | no | |
8941
+ | action | [ProductListingAction](#ProductListingAction) | no | |
8942
+ | app_id | string | no | |
8943
+ | priority | number | no | |
8944
+ | allow_sort | boolean | no | |
8945
+ | slug | string | no | |
8946
8946
 
8947
8947
  ---
8948
8948
 
@@ -8953,9 +8953,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8953
8953
 
8954
8954
  | Properties | Type | Nullable | Description |
8955
8955
  | ---------- | ---- | -------- | ----------- |
8956
+ | page | [Page](#Page) | yes | |
8956
8957
  | filters | [CollectionListingFilter](#CollectionListingFilter) | no | |
8957
8958
  | items | [[GetCollectionDetailNest](#GetCollectionDetailNest)] | no | |
8958
- | page | [Page](#Page) | yes | |
8959
8959
 
8960
8960
  ---
8961
8961
 
@@ -8966,26 +8966,26 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8966
8966
 
8967
8967
  | Properties | Type | Nullable | Description |
8968
8968
  | ---------- | ---- | -------- | ----------- |
8969
- | banners | [ImageUrls](#ImageUrls) | no | |
8970
- | slug | string | no | |
8971
- | sort_on | string | no | |
8972
- | visible_facets_keys | [string] | no | |
8973
- | cron | string | no | |
8974
8969
  | query | [[CollectionQuery](#CollectionQuery)] | no | |
8970
+ | allow_facets | boolean | no | |
8971
+ | logo | [Media](#Media) | no | |
8972
+ | cron | string | no | |
8973
+ | type | string | no | |
8975
8974
  | meta | string | no | |
8975
+ | visible_facets_keys | [string] | no | |
8976
+ | badge | string | no | |
8977
+ | sort_on | string | no | |
8978
+ | banners | [ImageUrls](#ImageUrls) | no | |
8976
8979
  | is_active | boolean | no | |
8977
- | app_id | string | no | |
8978
- | type | string | no | |
8979
- | allow_facets | boolean | no | |
8980
- | _schedule | string | no | |
8981
8980
  | tag | [string] | no | |
8982
- | logo | [Media](#Media) | no | |
8981
+ | name | string | no | |
8983
8982
  | description | string | no | |
8984
- | allow_sort | boolean | no | |
8985
- | priority | number | no | |
8986
8983
  | _custom_json | string | no | |
8987
- | badge | string | no | |
8988
- | name | string | no | |
8984
+ | _schedule | string | no | |
8985
+ | app_id | string | no | |
8986
+ | priority | number | no | |
8987
+ | allow_sort | boolean | no | |
8988
+ | slug | string | no | |
8989
8989
 
8990
8990
  ---
8991
8991
 
@@ -8996,8 +8996,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
8996
8996
 
8997
8997
  | Properties | Type | Nullable | Description |
8998
8998
  | ---------- | ---- | -------- | ----------- |
8999
- | items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
9000
8999
  | page | [Page](#Page) | yes | |
9000
+ | items | [[ProductListingDetail](#ProductListingDetail)] | yes | |
9001
9001
 
9002
9002
  ---
9003
9003
 
@@ -9031,9 +9031,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9031
9031
 
9032
9032
  | Properties | Type | Nullable | Description |
9033
9033
  | ---------- | ---- | -------- | ----------- |
9034
+ | products | [number] | no | |
9034
9035
  | collections | [number] | no | |
9035
9036
  | brands | [number] | no | |
9036
- | products | [number] | no | |
9037
9037
 
9038
9038
  ---
9039
9039
 
@@ -9055,8 +9055,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9055
9055
 
9056
9056
  | Properties | Type | Nullable | Description |
9057
9057
  | ---------- | ---- | -------- | ----------- |
9058
- | type | string | no | |
9059
9058
  | coordinates | [number] | no | |
9059
+ | type | string | no | |
9060
9060
 
9061
9061
  ---
9062
9062
 
@@ -9067,16 +9067,16 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9067
9067
 
9068
9068
  | Properties | Type | Nullable | Description |
9069
9069
  | ---------- | ---- | -------- | ----------- |
9070
- | store_code | string | no | |
9070
+ | pincode | number | no | |
9071
+ | lat_long | [LatLong](#LatLong) | no | |
9071
9072
  | address | string | no | |
9072
- | state | string | no | |
9073
- | uid | number | no | |
9074
- | city | string | no | |
9075
9073
  | name | string | no | |
9076
9074
  | store_email | string | no | |
9075
+ | state | string | no | |
9076
+ | uid | number | no | |
9077
9077
  | country | string | no | |
9078
- | pincode | number | no | |
9079
- | lat_long | [LatLong](#LatLong) | no | |
9078
+ | store_code | string | no | |
9079
+ | city | string | no | |
9080
9080
 
9081
9081
  ---
9082
9082
 
@@ -9087,8 +9087,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9087
9087
 
9088
9088
  | Properties | Type | Nullable | Description |
9089
9089
  | ---------- | ---- | -------- | ----------- |
9090
- | items | [[Store](#Store)] | yes | |
9091
9090
  | page | [Page](#Page) | yes | |
9091
+ | items | [[Store](#Store)] | yes | |
9092
9092
 
9093
9093
  ---
9094
9094
 
@@ -9099,10 +9099,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9099
9099
 
9100
9100
  | Properties | Type | Nullable | Description |
9101
9101
  | ---------- | ---- | -------- | ----------- |
9102
+ | logo | string | no | |
9103
+ | name | string | no | |
9102
9104
  | priority_order | number | no | |
9103
9105
  | uid | number | no | |
9104
- | name | string | no | |
9105
- | logo | string | no | |
9106
9106
  | slug | string | no | |
9107
9107
 
9108
9108
  ---
@@ -9110,12 +9110,14 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9110
9110
 
9111
9111
 
9112
9112
 
9113
- #### [SellerPhoneNumber](#SellerPhoneNumber)
9113
+ #### [CompanyStore](#CompanyStore)
9114
9114
 
9115
9115
  | Properties | Type | Nullable | Description |
9116
9116
  | ---------- | ---- | -------- | ----------- |
9117
- | country_code | number | yes | |
9118
- | number | string | yes | |
9117
+ | business_type | string | no | |
9118
+ | company_type | string | no | |
9119
+ | uid | number | no | |
9120
+ | name | string | no | |
9119
9121
 
9120
9122
  ---
9121
9123
 
@@ -9126,29 +9128,27 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9126
9128
 
9127
9129
  | Properties | Type | Nullable | Description |
9128
9130
  | ---------- | ---- | -------- | ----------- |
9129
- | address1 | string | no | |
9130
9131
  | pincode | number | no | |
9132
+ | landmark | string | no | |
9133
+ | address1 | string | no | |
9131
9134
  | longitude | number | no | |
9132
9135
  | state | string | no | |
9133
- | city | string | no | |
9134
- | country | string | no | |
9135
- | landmark | string | no | |
9136
9136
  | latitude | number | no | |
9137
9137
  | address2 | string | no | |
9138
+ | country | string | no | |
9139
+ | city | string | no | |
9138
9140
 
9139
9141
  ---
9140
9142
 
9141
9143
 
9142
9144
 
9143
9145
 
9144
- #### [CompanyStore](#CompanyStore)
9146
+ #### [SellerPhoneNumber](#SellerPhoneNumber)
9145
9147
 
9146
9148
  | Properties | Type | Nullable | Description |
9147
9149
  | ---------- | ---- | -------- | ----------- |
9148
- | name | string | no | |
9149
- | uid | number | no | |
9150
- | company_type | string | no | |
9151
- | business_type | string | no | |
9150
+ | country_code | number | yes | |
9151
+ | number | string | yes | |
9152
9152
 
9153
9153
  ---
9154
9154
 
@@ -9159,9 +9159,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9159
9159
 
9160
9160
  | Properties | Type | Nullable | Description |
9161
9161
  | ---------- | ---- | -------- | ----------- |
9162
- | name | string | no | |
9163
- | email | string | no | |
9164
9162
  | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | no | |
9163
+ | email | string | no | |
9164
+ | name | string | no | |
9165
9165
 
9166
9166
  ---
9167
9167
 
@@ -9172,13 +9172,13 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9172
9172
 
9173
9173
  | Properties | Type | Nullable | Description |
9174
9174
  | ---------- | ---- | -------- | ----------- |
9175
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9176
- | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9177
- | uid | number | no | |
9178
- | name | string | no | |
9179
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9180
9175
  | company | [CompanyStore](#CompanyStore) | no | |
9176
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9177
+ | name | string | no | |
9181
9178
  | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9179
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9180
+ | uid | number | no | |
9181
+ | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9182
9182
 
9183
9183
  ---
9184
9184
 
@@ -9189,9 +9189,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9189
9189
 
9190
9190
  | Properties | Type | Nullable | Description |
9191
9191
  | ---------- | ---- | -------- | ----------- |
9192
+ | page | [Page](#Page) | no | |
9192
9193
  | filters | [[StoreDepartments](#StoreDepartments)] | no | |
9193
9194
  | items | [[AppStore](#AppStore)] | no | |
9194
- | page | [Page](#Page) | no | |
9195
9195
 
9196
9196
  ---
9197
9197
 
@@ -9214,10 +9214,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9214
9214
 
9215
9215
  | Properties | Type | Nullable | Description |
9216
9216
  | ---------- | ---- | -------- | ----------- |
9217
+ | closing | [Time](#Time) | no | |
9217
9218
  | weekday | string | no | |
9218
9219
  | open | boolean | no | |
9219
9220
  | opening | [Time](#Time) | no | |
9220
- | closing | [Time](#Time) | no | |
9221
9221
 
9222
9222
  ---
9223
9223
 
@@ -9228,15 +9228,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9228
9228
 
9229
9229
  | Properties | Type | Nullable | Description |
9230
9230
  | ---------- | ---- | -------- | ----------- |
9231
+ | company | [CompanyStore](#CompanyStore) | no | |
9232
+ | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9233
+ | name | string | no | |
9234
+ | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9231
9235
  | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
9236
+ | timing | [[StoreTiming](#StoreTiming)] | no | |
9237
+ | uid | number | no | |
9232
9238
  | departments | [[StoreDepartments](#StoreDepartments)] | no | |
9233
9239
  | _custom_json | string | no | |
9234
- | uid | number | no | |
9235
- | timing | [[StoreTiming](#StoreTiming)] | no | |
9236
- | name | string | no | |
9237
- | address | [StoreAddressSerializer](#StoreAddressSerializer) | no | |
9238
- | company | [CompanyStore](#CompanyStore) | no | |
9239
- | manager | [StoreManagerSerializer](#StoreManagerSerializer) | no | |
9240
9240
 
9241
9241
  ---
9242
9242
 
@@ -9249,39 +9249,23 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9249
9249
  | ---------- | ---- | -------- | ----------- |
9250
9250
  | super_user | boolean | no | |
9251
9251
  | user_id | string | yes | |
9252
- | contact | string | no | |
9253
9252
  | username | string | yes | |
9253
+ | contact | string | no | |
9254
9254
 
9255
9255
  ---
9256
9256
 
9257
9257
 
9258
9258
 
9259
9259
 
9260
- #### [ProductDetails](#ProductDetails)
9260
+ #### [ProductGroupPrice](#ProductGroupPrice)
9261
9261
 
9262
9262
  | Properties | Type | Nullable | Description |
9263
9263
  | ---------- | ---- | -------- | ----------- |
9264
- | attributes | string | no | |
9265
- | is_set | boolean | no | |
9266
- | highlights | [any] | no | |
9267
- | identifier | string | no | |
9268
- | slug | any | no | |
9269
- | images | [any] | no | |
9270
- | hsn_code | number | no | |
9271
- | has_variant | boolean | no | |
9272
- | brand_uid | number | no | |
9273
- | grouped_attributes | string | no | |
9274
- | item_code | any | no | |
9275
- | template_tag | any | no | |
9276
- | rating | number | no | |
9277
- | country_of_origin | any | no | |
9278
- | rating_count | number | no | |
9279
- | media | [string] | no | |
9280
- | description | any | no | |
9281
- | out_of_stock | boolean | no | |
9282
- | short_description | any | no | |
9283
- | image_nature | any | no | |
9284
- | name | any | no | |
9264
+ | currency | any | no | |
9265
+ | max_marked | number | no | |
9266
+ | max_effective | number | no | |
9267
+ | min_marked | number | no | |
9268
+ | min_effective | number | no | |
9285
9269
 
9286
9270
  ---
9287
9271
 
@@ -9292,25 +9276,41 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9292
9276
 
9293
9277
  | Properties | Type | Nullable | Description |
9294
9278
  | ---------- | ---- | -------- | ----------- |
9279
+ | quantity | number | no | |
9280
+ | is_available | boolean | no | |
9295
9281
  | value | any | no | |
9296
9282
  | display | any | no | |
9297
- | is_available | boolean | no | |
9298
- | quantity | number | no | |
9299
9283
 
9300
9284
  ---
9301
9285
 
9302
9286
 
9303
9287
 
9304
9288
 
9305
- #### [ProductGroupPrice](#ProductGroupPrice)
9289
+ #### [ProductDetails](#ProductDetails)
9306
9290
 
9307
9291
  | Properties | Type | Nullable | Description |
9308
9292
  | ---------- | ---- | -------- | ----------- |
9309
- | min_marked | number | no | |
9310
- | min_effective | number | no | |
9311
- | max_marked | number | no | |
9312
- | currency | any | no | |
9313
- | max_effective | number | no | |
9293
+ | attributes | string | no | |
9294
+ | country_of_origin | any | no | |
9295
+ | template_tag | any | no | |
9296
+ | short_description | any | no | |
9297
+ | has_variant | boolean | no | |
9298
+ | media | [string] | no | |
9299
+ | brand_uid | number | no | |
9300
+ | grouped_attributes | string | no | |
9301
+ | rating | number | no | |
9302
+ | image_nature | any | no | |
9303
+ | name | any | no | |
9304
+ | is_set | boolean | no | |
9305
+ | description | any | no | |
9306
+ | rating_count | number | no | |
9307
+ | out_of_stock | boolean | no | |
9308
+ | highlights | [any] | no | |
9309
+ | item_code | any | no | |
9310
+ | images | [any] | no | |
9311
+ | slug | any | no | |
9312
+ | hsn_code | number | no | |
9313
+ | identifier | string | no | |
9314
9314
 
9315
9315
  ---
9316
9316
 
@@ -9321,15 +9321,15 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9321
9321
 
9322
9322
  | Properties | Type | Nullable | Description |
9323
9323
  | ---------- | ---- | -------- | ----------- |
9324
- | max_quantity | number | yes | |
9325
- | product_details | [ProductDetails](#ProductDetails) | no | |
9326
- | sizes | [[Size](#Size)] | no | |
9327
- | min_quantity | number | no | |
9328
9324
  | price | [ProductGroupPrice](#ProductGroupPrice) | no | |
9325
+ | auto_add_to_cart | boolean | no | |
9329
9326
  | allow_remove | boolean | no | |
9327
+ | sizes | [[Size](#Size)] | no | |
9330
9328
  | product_uid | number | yes | |
9331
9329
  | auto_select | boolean | no | |
9332
- | auto_add_to_cart | boolean | no | |
9330
+ | max_quantity | number | yes | |
9331
+ | product_details | [ProductDetails](#ProductDetails) | no | |
9332
+ | min_quantity | number | no | |
9333
9333
 
9334
9334
  ---
9335
9335
 
@@ -9340,23 +9340,23 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9340
9340
 
9341
9341
  | Properties | Type | Nullable | Description |
9342
9342
  | ---------- | ---- | -------- | ----------- |
9343
+ | _id | any | no | |
9343
9344
  | choice | any | no | |
9344
- | meta | string | no | |
9345
9345
  | verified_by | [UserDetail](#UserDetail) | no | |
9346
- | is_active | boolean | no | |
9347
- | same_store_assignment | boolean | no | |
9348
- | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9349
- | created_on | string | yes | |
9350
- | _id | any | no | |
9351
- | modified_by | [UserDetail](#UserDetail) | no | |
9352
9346
  | created_by | [UserDetail](#UserDetail) | no | |
9353
- | company_id | number | no | |
9354
9347
  | modified_on | string | yes | |
9348
+ | logo | string | no | |
9349
+ | is_active | boolean | no | |
9350
+ | modified_by | [UserDetail](#UserDetail) | no | |
9355
9351
  | name | any | yes | |
9352
+ | same_store_assignment | boolean | no | |
9356
9353
  | page_visibility | [any] | no | |
9357
- | logo | string | no | |
9354
+ | products | [[ProductInGroup](#ProductInGroup)] | yes | |
9355
+ | created_on | string | yes | |
9356
+ | meta | string | no | |
9358
9357
  | slug | any | no | |
9359
9358
  | verified_on | string | no | |
9359
+ | company_id | number | no | |
9360
9360
 
9361
9361
  ---
9362
9362
 
@@ -9374,77 +9374,78 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9374
9374
 
9375
9375
 
9376
9376
 
9377
- #### [StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)
9377
+ #### [SellerV3](#SellerV3)
9378
9378
 
9379
9379
  | Properties | Type | Nullable | Description |
9380
9380
  | ---------- | ---- | -------- | ----------- |
9381
- | tat | number | no | |
9382
- | distance | number | no | |
9383
- | pincode | number | no | |
9384
- | quantity | number | no | |
9381
+ | uid | number | no | |
9382
+ | count | number | no | |
9383
+ | name | string | no | |
9385
9384
 
9386
9385
  ---
9387
9386
 
9388
9387
 
9389
9388
 
9390
9389
 
9391
- #### [ArticleAssignmentV3](#ArticleAssignmentV3)
9390
+ #### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
9392
9391
 
9393
9392
  | Properties | Type | Nullable | Description |
9394
9393
  | ---------- | ---- | -------- | ----------- |
9395
- | strategy | string | no | |
9396
- | level | string | no | |
9394
+ | returnable | boolean | no | |
9395
+ | unit | string | no | |
9396
+ | time | number | no | |
9397
9397
 
9398
9398
  ---
9399
9399
 
9400
9400
 
9401
9401
 
9402
9402
 
9403
- #### [ReturnConfigSchemaV3](#ReturnConfigSchemaV3)
9403
+ #### [ProductStockPriceV3](#ProductStockPriceV3)
9404
9404
 
9405
9405
  | Properties | Type | Nullable | Description |
9406
9406
  | ---------- | ---- | -------- | ----------- |
9407
- | time | number | no | |
9408
- | unit | string | no | |
9409
- | returnable | boolean | no | |
9407
+ | currency | string | no | |
9408
+ | marked | number | no | |
9409
+ | effective | number | no | |
9410
9410
 
9411
9411
  ---
9412
9412
 
9413
9413
 
9414
9414
 
9415
9415
 
9416
- #### [DetailsSchemaV3](#DetailsSchemaV3)
9416
+ #### [StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)
9417
9417
 
9418
9418
  | Properties | Type | Nullable | Description |
9419
9419
  | ---------- | ---- | -------- | ----------- |
9420
- | type | string | no | |
9421
- | key | string | no | |
9422
- | value | string | no | |
9420
+ | pincode | number | no | |
9421
+ | distance | number | no | |
9422
+ | tat | number | no | |
9423
+ | quantity | number | no | |
9423
9424
 
9424
9425
  ---
9425
9426
 
9426
9427
 
9427
9428
 
9428
9429
 
9429
- #### [SellerGroupAttributes](#SellerGroupAttributes)
9430
+ #### [DetailsSchemaV3](#DetailsSchemaV3)
9430
9431
 
9431
9432
  | Properties | Type | Nullable | Description |
9432
9433
  | ---------- | ---- | -------- | ----------- |
9433
- | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9434
- | title | string | no | |
9434
+ | key | string | no | |
9435
+ | type | string | no | |
9436
+ | value | string | no | |
9435
9437
 
9436
9438
  ---
9437
9439
 
9438
9440
 
9439
9441
 
9440
9442
 
9441
- #### [StoreV3](#StoreV3)
9443
+ #### [SellerGroupAttributes](#SellerGroupAttributes)
9442
9444
 
9443
9445
  | Properties | Type | Nullable | Description |
9444
9446
  | ---------- | ---- | -------- | ----------- |
9445
- | name | string | no | |
9446
- | uid | number | no | |
9447
- | count | number | no | |
9447
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9448
+ | title | string | no | |
9448
9449
 
9449
9450
  ---
9450
9451
 
@@ -9455,10 +9456,10 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9455
9456
 
9456
9457
  | Properties | Type | Nullable | Description |
9457
9458
  | ---------- | ---- | -------- | ----------- |
9459
+ | price | number | no | |
9460
+ | currency_symbol | string | no | |
9458
9461
  | unit | string | no | |
9459
9462
  | currency_code | string | no | |
9460
- | currency_symbol | string | no | |
9461
- | price | number | no | |
9462
9463
 
9463
9464
  ---
9464
9465
 
@@ -9469,8 +9470,8 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9469
9470
 
9470
9471
  | Properties | Type | Nullable | Description |
9471
9472
  | ---------- | ---- | -------- | ----------- |
9472
- | size | string | no | |
9473
9473
  | pieces | number | no | |
9474
+ | size | string | no | |
9474
9475
 
9475
9476
  ---
9476
9477
 
@@ -9500,38 +9501,37 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9500
9501
 
9501
9502
 
9502
9503
 
9503
- #### [ProductStockPriceV3](#ProductStockPriceV3)
9504
+ #### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
9504
9505
 
9505
9506
  | Properties | Type | Nullable | Description |
9506
9507
  | ---------- | ---- | -------- | ----------- |
9507
- | marked | number | no | |
9508
- | currency | string | no | |
9509
- | effective | number | no | |
9508
+ | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9509
+ | title | string | no | |
9510
9510
 
9511
9511
  ---
9512
9512
 
9513
9513
 
9514
9514
 
9515
9515
 
9516
- #### [SellerV3](#SellerV3)
9516
+ #### [StoreV3](#StoreV3)
9517
9517
 
9518
9518
  | Properties | Type | Nullable | Description |
9519
9519
  | ---------- | ---- | -------- | ----------- |
9520
- | name | string | no | |
9521
9520
  | uid | number | no | |
9522
9521
  | count | number | no | |
9522
+ | name | string | no | |
9523
9523
 
9524
9524
  ---
9525
9525
 
9526
9526
 
9527
9527
 
9528
9528
 
9529
- #### [MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)
9529
+ #### [ArticleAssignmentV3](#ArticleAssignmentV3)
9530
9530
 
9531
9531
  | Properties | Type | Nullable | Description |
9532
9532
  | ---------- | ---- | -------- | ----------- |
9533
- | details | [[DetailsSchemaV3](#DetailsSchemaV3)] | no | |
9534
- | title | string | no | |
9533
+ | strategy | string | no | |
9534
+ | level | string | no | |
9535
9535
 
9536
9536
  ---
9537
9537
 
@@ -9542,27 +9542,27 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9542
9542
 
9543
9543
  | Properties | Type | Nullable | Description |
9544
9544
  | ---------- | ---- | -------- | ----------- |
9545
- | strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
9546
- | is_gift | boolean | no | |
9547
- | article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
9545
+ | seller | [SellerV3](#SellerV3) | no | |
9546
+ | seller_count | number | no | |
9548
9547
  | return_config | [ReturnConfigSchemaV3](#ReturnConfigSchemaV3) | no | |
9548
+ | pincode | number | no | |
9549
+ | price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9550
+ | item_type | string | no | |
9551
+ | is_cod | boolean | no | |
9552
+ | strategy_wise_listing | [[StrategyWiseListingSchemaV3](#StrategyWiseListingSchemaV3)] | no | |
9549
9553
  | grouped_attributes | [[SellerGroupAttributes](#SellerGroupAttributes)] | no | |
9550
- | store | [StoreV3](#StoreV3) | no | |
9554
+ | quantity | number | no | |
9551
9555
  | article_id | string | no | |
9552
9556
  | price_per_unit | [ProductStockUnitPriceV3](#ProductStockUnitPriceV3) | no | |
9553
9557
  | set | [ProductSetV3](#ProductSetV3) | no | |
9554
- | is_cod | boolean | no | |
9555
- | seller_count | number | no | |
9558
+ | price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9556
9559
  | special_badge | string | no | |
9557
- | quantity | number | no | |
9560
+ | is_gift | boolean | no | |
9561
+ | marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
9562
+ | store | [StoreV3](#StoreV3) | no | |
9558
9563
  | discount | string | no | |
9559
- | price_per_piece | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9560
- | price | [ProductStockPriceV3](#ProductStockPriceV3) | no | |
9561
- | item_type | string | no | |
9562
- | seller | [SellerV3](#SellerV3) | no | |
9564
+ | article_assignment | [ArticleAssignmentV3](#ArticleAssignmentV3) | no | |
9563
9565
  | long_lat | [number] | no | |
9564
- | pincode | number | no | |
9565
- | marketplace_attributes | [[MarketPlaceSttributesSchemaV3](#MarketPlaceSttributesSchemaV3)] | no | |
9566
9566
 
9567
9567
  ---
9568
9568
 
@@ -9573,9 +9573,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9573
9573
 
9574
9574
  | Properties | Type | Nullable | Description |
9575
9575
  | ---------- | ---- | -------- | ----------- |
9576
+ | is_selected | boolean | no | |
9576
9577
  | value | string | no | |
9577
9578
  | name | string | no | |
9578
- | is_selected | boolean | no | |
9579
9579
 
9580
9580
  ---
9581
9581
 
@@ -9586,9 +9586,9 @@ Success. Returns a ProductSizeSellerV3 object. Check the example shown below or
9586
9586
 
9587
9587
  | Properties | Type | Nullable | Description |
9588
9588
  | ---------- | ---- | -------- | ----------- |
9589
+ | page | [Page](#Page) | yes | |
9589
9590
  | sort_on | [[ProductSizeSellerFilterSchemaV3](#ProductSizeSellerFilterSchemaV3)] | no | |
9590
9591
  | items | [[ProductSizePriceResponseV3](#ProductSizePriceResponseV3)] | no | |
9591
- | page | [Page](#Page) | yes | |
9592
9592
 
9593
9593
  ---
9594
9594