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

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 (229) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +1 -1
  4. package/sdk/application/Cart/CartApplicationClient.js +5 -3
  5. package/sdk/application/Cart/CartApplicationModel.d.ts +107 -1
  6. package/sdk/application/Cart/CartApplicationModel.js +74 -0
  7. package/sdk/application/Cart/CartApplicationValidator.d.ts +4 -0
  8. package/sdk/application/Cart/CartApplicationValidator.js +4 -0
  9. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +3 -6
  10. package/sdk/application/Catalog/CatalogApplicationClient.js +7 -20
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +2 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +2 -2
  13. package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -14
  14. package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -6
  15. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +183 -49
  16. package/sdk/application/Configuration/ConfigurationApplicationModel.js +173 -31
  17. package/sdk/application/Content/ContentApplicationClient.d.ts +36 -0
  18. package/sdk/application/Content/ContentApplicationClient.js +246 -0
  19. package/sdk/application/Content/ContentApplicationModel.d.ts +208 -1
  20. package/sdk/application/Content/ContentApplicationModel.js +252 -0
  21. package/sdk/application/Content/ContentApplicationValidator.d.ts +40 -1
  22. package/sdk/application/Content/ContentApplicationValidator.js +41 -0
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +67 -0
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +547 -0
  25. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +456 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +488 -0
  27. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +211 -1
  28. package/sdk/application/Logistic/LogisticApplicationValidator.js +131 -0
  29. package/sdk/application/Order/OrderApplicationClient.d.ts +3 -3
  30. package/sdk/application/Order/OrderApplicationClient.js +32 -8
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +6 -0
  32. package/sdk/application/Order/OrderApplicationModel.js +6 -0
  33. package/sdk/application/Order/OrderApplicationValidator.d.ts +20 -0
  34. package/sdk/application/Order/OrderApplicationValidator.js +8 -0
  35. package/sdk/application/Payment/PaymentApplicationClient.d.ts +46 -2
  36. package/sdk/application/Payment/PaymentApplicationClient.js +341 -10
  37. package/sdk/application/Payment/PaymentApplicationModel.d.ts +493 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.js +341 -70
  39. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +59 -14
  40. package/sdk/application/Payment/PaymentApplicationValidator.js +64 -10
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +34 -1
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +24 -0
  43. package/sdk/application/Theme/ThemeApplicationClient.d.ts +1 -1
  44. package/sdk/application/Theme/ThemeApplicationClient.js +7 -3
  45. package/sdk/application/Theme/ThemeApplicationModel.d.ts +222 -36
  46. package/sdk/application/Theme/ThemeApplicationModel.js +322 -26
  47. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +10 -0
  48. package/sdk/application/Theme/ThemeApplicationValidator.js +4 -0
  49. package/sdk/application/User/UserApplicationClient.d.ts +33 -0
  50. package/sdk/application/User/UserApplicationClient.js +239 -0
  51. package/sdk/application/User/UserApplicationModel.d.ts +28 -13
  52. package/sdk/application/User/UserApplicationModel.js +36 -12
  53. package/sdk/application/User/UserApplicationValidator.d.ts +34 -1
  54. package/sdk/application/User/UserApplicationValidator.js +36 -0
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +125 -0
  56. package/sdk/partner/Lead/LeadPartnerClient.js +785 -0
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +1127 -0
  58. package/sdk/partner/Lead/LeadPartnerModel.js +896 -0
  59. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +12 -0
  60. package/sdk/partner/Lead/LeadPartnerValidator.js +67 -0
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +155 -0
  62. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1195 -0
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +372 -0
  64. package/sdk/partner/Logistics/LogisticsPartnerModel.js +442 -0
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +16 -0
  66. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +123 -0
  67. package/sdk/partner/PartnerClient.d.ts +6 -0
  68. package/sdk/partner/PartnerClient.js +9 -0
  69. package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -0
  70. package/sdk/partner/Theme/ThemePartnerClient.js +80 -0
  71. package/sdk/partner/Theme/ThemePartnerModel.d.ts +100 -43
  72. package/sdk/partner/Theme/ThemePartnerModel.js +74 -30
  73. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +1 -0
  74. package/sdk/partner/Theme/ThemePartnerValidator.js +9 -0
  75. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +99 -0
  76. package/sdk/partner/Webhook/WebhookPartnerClient.js +753 -0
  77. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +566 -0
  78. package/sdk/partner/Webhook/WebhookPartnerModel.js +583 -0
  79. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +12 -0
  80. package/sdk/partner/Webhook/WebhookPartnerValidator.js +74 -0
  81. package/sdk/partner/index.d.ts +3 -0
  82. package/sdk/partner/index.js +6 -0
  83. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +2 -2
  84. package/sdk/platform/Billing/BillingPlatformClient.d.ts +11 -1
  85. package/sdk/platform/Billing/BillingPlatformClient.js +110 -3
  86. package/sdk/platform/Billing/BillingPlatformModel.d.ts +67 -1
  87. package/sdk/platform/Billing/BillingPlatformModel.js +78 -0
  88. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +43 -4
  89. package/sdk/platform/Billing/BillingPlatformValidator.js +29 -2
  90. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  91. package/sdk/platform/Cart/CartPlatformApplicationClient.js +7 -1
  92. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +4 -0
  93. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -0
  94. package/sdk/platform/Cart/CartPlatformModel.d.ts +100 -5
  95. package/sdk/platform/Cart/CartPlatformModel.js +71 -4
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +15 -11
  97. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +52 -21
  98. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -0
  99. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +11 -0
  100. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +26 -4
  101. package/sdk/platform/Catalog/CatalogPlatformClient.js +173 -7
  102. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +304 -1
  103. package/sdk/platform/Catalog/CatalogPlatformModel.js +335 -0
  104. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +31 -3
  105. package/sdk/platform/Catalog/CatalogPlatformValidator.js +27 -2
  106. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +138 -36
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +739 -57
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +128 -3
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +111 -1
  110. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +150 -1
  111. package/sdk/platform/Communication/CommunicationPlatformModel.js +172 -0
  112. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +8 -2
  113. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -4
  114. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +38 -9
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +42 -8
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +14 -0
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +6 -0
  118. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +8 -8
  119. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +4 -4
  120. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +371 -132
  121. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +288 -77
  122. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +2 -2
  123. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +2 -2
  124. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +391 -0
  125. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3630 -1059
  126. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +342 -1
  127. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +401 -0
  128. package/sdk/platform/Content/ContentPlatformClient.d.ts +277 -0
  129. package/sdk/platform/Content/ContentPlatformClient.js +2000 -0
  130. package/sdk/platform/Content/ContentPlatformModel.d.ts +1094 -1
  131. package/sdk/platform/Content/ContentPlatformModel.js +1356 -46
  132. package/sdk/platform/Content/ContentPlatformValidator.d.ts +238 -0
  133. package/sdk/platform/Content/ContentPlatformValidator.js +310 -0
  134. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +2 -2
  135. package/sdk/platform/Discount/DiscountPlatformClient.js +2 -2
  136. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +96 -13
  137. package/sdk/platform/Discount/DiscountPlatformModel.js +104 -12
  138. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +16 -6
  139. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +117 -8
  140. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +55 -4
  141. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +39 -2
  142. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +16 -5
  143. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +18 -4
  144. package/sdk/platform/Finance/FinancePlatformClient.d.ts +33 -0
  145. package/sdk/platform/Finance/FinancePlatformClient.js +240 -0
  146. package/sdk/platform/Finance/FinancePlatformModel.d.ts +151 -5
  147. package/sdk/platform/Finance/FinancePlatformModel.js +190 -4
  148. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +38 -1
  149. package/sdk/platform/Finance/FinancePlatformValidator.js +38 -0
  150. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +38 -28
  151. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +137 -56
  152. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +41 -29
  153. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +33 -21
  154. package/sdk/platform/Lead/LeadPlatformModel.d.ts +12 -3
  155. package/sdk/platform/Lead/LeadPlatformModel.js +16 -2
  156. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +23 -1
  157. package/sdk/platform/Order/OrderPlatformApplicationClient.js +178 -1
  158. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +39 -1
  159. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +32 -0
  160. package/sdk/platform/Order/OrderPlatformClient.d.ts +202 -31
  161. package/sdk/platform/Order/OrderPlatformClient.js +2010 -586
  162. package/sdk/platform/Order/OrderPlatformModel.d.ts +1032 -470
  163. package/sdk/platform/Order/OrderPlatformModel.js +1187 -534
  164. package/sdk/platform/Order/OrderPlatformValidator.d.ts +318 -35
  165. package/sdk/platform/Order/OrderPlatformValidator.js +292 -29
  166. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +119 -13
  167. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +749 -39
  168. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +143 -7
  169. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +133 -6
  170. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +1 -1
  171. package/sdk/platform/Payment/PaymentPlatformClient.js +1 -1
  172. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +996 -134
  173. package/sdk/platform/Payment/PaymentPlatformModel.js +721 -58
  174. package/sdk/platform/PlatformApplicationClient.d.ts +2 -2
  175. package/sdk/platform/PlatformApplicationClient.js +4 -4
  176. package/sdk/platform/PlatformClient.d.ts +4 -2
  177. package/sdk/platform/PlatformClient.js +8 -4
  178. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +142 -66
  179. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +645 -147
  180. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +131 -63
  181. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +126 -47
  182. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +217 -105
  183. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1136 -347
  184. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +912 -313
  185. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +1071 -355
  186. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +382 -133
  187. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +266 -102
  188. package/sdk/platform/Theme/ThemePlatformClient.d.ts +11 -1
  189. package/sdk/platform/Theme/ThemePlatformClient.js +87 -3
  190. package/sdk/platform/Theme/ThemePlatformModel.d.ts +333 -47
  191. package/sdk/platform/Theme/ThemePlatformModel.js +395 -35
  192. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +28 -4
  193. package/sdk/platform/Theme/ThemePlatformValidator.js +21 -2
  194. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +116 -1
  195. package/sdk/platform/User/UserPlatformApplicationClient.js +931 -85
  196. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +224 -7
  197. package/sdk/platform/User/UserPlatformApplicationValidator.js +173 -5
  198. package/sdk/platform/User/UserPlatformModel.d.ts +344 -7
  199. package/sdk/platform/User/UserPlatformModel.js +256 -5
  200. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +47 -39
  201. package/sdk/platform/Webhook/WebhookPlatformClient.js +63 -61
  202. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +264 -156
  203. package/sdk/platform/Webhook/WebhookPlatformModel.js +276 -153
  204. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +7 -10
  205. package/sdk/platform/Webhook/WebhookPlatformValidator.js +6 -6
  206. package/sdk/platform/index.d.ts +1 -1
  207. package/sdk/platform/index.js +2 -2
  208. package/sdk/public/Billing/BillingPublicClient.d.ts +23 -0
  209. package/sdk/public/Billing/BillingPublicClient.js +116 -0
  210. package/sdk/public/Billing/BillingPublicModel.d.ts +92 -0
  211. package/sdk/public/Billing/BillingPublicModel.js +96 -0
  212. package/sdk/public/Billing/BillingPublicValidator.d.ts +18 -0
  213. package/sdk/public/Billing/BillingPublicValidator.js +19 -0
  214. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  215. package/sdk/public/Content/ContentPublicClient.js +114 -0
  216. package/sdk/public/Content/ContentPublicModel.d.ts +53 -0
  217. package/sdk/public/Content/ContentPublicModel.js +60 -0
  218. package/sdk/public/Content/ContentPublicValidator.d.ts +18 -0
  219. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  220. package/sdk/public/PublicClient.d.ts +4 -0
  221. package/sdk/public/PublicClient.js +8 -0
  222. package/sdk/public/Webhook/WebhookPublicClient.d.ts +33 -0
  223. package/sdk/public/Webhook/WebhookPublicClient.js +242 -0
  224. package/sdk/public/Webhook/WebhookPublicModel.d.ts +147 -1
  225. package/sdk/public/Webhook/WebhookPublicModel.js +177 -1
  226. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +23 -1
  227. package/sdk/public/Webhook/WebhookPublicValidator.js +31 -0
  228. package/sdk/public/index.d.ts +2 -0
  229. package/sdk/public/index.js +4 -0
@@ -633,6 +633,12 @@ export = CatalogPlatformModel;
633
633
  * @property {number} item_id
634
634
  * @property {number} [priority]
635
635
  */
636
+ /**
637
+ * @typedef CollectionItemSchemaV2
638
+ * @property {string} action
639
+ * @property {number} item_id
640
+ * @property {number} [priority]
641
+ */
636
642
  /**
637
643
  * @typedef CollectionItemUpdate
638
644
  * @property {boolean} [allow_facets]
@@ -642,6 +648,15 @@ export = CatalogPlatformModel;
642
648
  * @property {string} [type]
643
649
  * @property {string[]} [visible_facets_keys]
644
650
  */
651
+ /**
652
+ * @typedef CollectionItemUpdateSchemaV2
653
+ * @property {boolean} [allow_facets]
654
+ * @property {boolean} [allow_sort]
655
+ * @property {CollectionItemSchemaV2[]} [items]
656
+ * @property {CollectionQuerySchemaV2[]} [query]
657
+ * @property {string} type
658
+ * @property {string[]} [visible_facets_keys]
659
+ */
645
660
  /**
646
661
  * @typedef CollectionListingFilter
647
662
  * @property {CollectionListingFilterTag[]} [tags]
@@ -666,6 +681,13 @@ export = CatalogPlatformModel;
666
681
  * collection query
667
682
  * @property {Object[]} value - The value of the attribute of the collection query
668
683
  */
684
+ /**
685
+ * @typedef CollectionQuerySchemaV2
686
+ * @property {string} attribute - The attribute of the collection query
687
+ * @property {string} op - The operation to be performed on the attribute of the
688
+ * collection query
689
+ * @property {Object[]} value - The value of the attribute of the collection query
690
+ */
669
691
  /**
670
692
  * @typedef CollectionSchedule
671
693
  * @property {string} [cron]
@@ -674,6 +696,10 @@ export = CatalogPlatformModel;
674
696
  * @property {NextSchedule[]} [next_schedule]
675
697
  * @property {string} [start]
676
698
  */
699
+ /**
700
+ * @typedef CommonResponseSchemaCollection
701
+ * @property {string} [message]
702
+ */
677
703
  /**
678
704
  * @typedef CompanyBrandDetail
679
705
  * @property {number} [brand_id]
@@ -836,6 +862,11 @@ export = CatalogPlatformModel;
836
862
  * @property {string} type
837
863
  * @property {string[]} [visible_facets_keys]
838
864
  */
865
+ /**
866
+ * @typedef CreatedBy
867
+ * @property {string} [user_id]
868
+ * @property {string} [username]
869
+ */
839
870
  /**
840
871
  * @typedef CreateSearchConfigurationRequest
841
872
  * @property {string} application_id - The application id where custom search
@@ -1069,6 +1100,11 @@ export = CatalogPlatformModel;
1069
1100
  * @property {number} [pincode]
1070
1101
  * @property {string} [state]
1071
1102
  */
1103
+ /**
1104
+ * @typedef GetAllMarketplaces
1105
+ * @property {Marketplaces[]} [items]
1106
+ * @property {Page} [page]
1107
+ */
1072
1108
  /**
1073
1109
  * @typedef GetAllSizes
1074
1110
  * @property {AllSizes[]} [all_sizes]
@@ -1136,6 +1172,34 @@ export = CatalogPlatformModel;
1136
1172
  * @property {string} [uid]
1137
1173
  * @property {string[]} [visible_facets_keys]
1138
1174
  */
1175
+ /**
1176
+ * @typedef GetCollectionDetailResponse
1177
+ * @property {Object} [_custom_json]
1178
+ * @property {Object} [_locale_language]
1179
+ * @property {CollectionSchedule} [_schedule]
1180
+ * @property {Object} [action]
1181
+ * @property {boolean} [allow_facets]
1182
+ * @property {boolean} [allow_sort]
1183
+ * @property {string} [app_id]
1184
+ * @property {CollectionBadge} [badge]
1185
+ * @property {ImageUrls} [banners]
1186
+ * @property {string} [description]
1187
+ * @property {boolean} [is_active]
1188
+ * @property {boolean} [is_visible]
1189
+ * @property {Media} [logo]
1190
+ * @property {Object} [meta]
1191
+ * @property {string} [name]
1192
+ * @property {number} [priority]
1193
+ * @property {boolean} [published]
1194
+ * @property {CollectionQuery[]} [query]
1195
+ * @property {SeoDetail} [seo]
1196
+ * @property {string} [slug]
1197
+ * @property {string} [sort_on]
1198
+ * @property {string[]} [tags]
1199
+ * @property {string} [type]
1200
+ * @property {string} [uid]
1201
+ * @property {string[]} [visible_facets_keys]
1202
+ */
1139
1203
  /**
1140
1204
  * @typedef GetCollectionItemsResponse
1141
1205
  * @property {ProductFilters[]} [filters]
@@ -1143,6 +1207,11 @@ export = CatalogPlatformModel;
1143
1207
  * @property {Page} [page]
1144
1208
  * @property {ProductSortOn[]} [sort_on]
1145
1209
  */
1210
+ /**
1211
+ * @typedef GetCollectionItemsResponseSchemaV2
1212
+ * @property {ProductDetailV2[]} [items]
1213
+ * @property {Page1} [page]
1214
+ */
1146
1215
  /**
1147
1216
  * @typedef GetCollectionListingResponse
1148
1217
  * @property {CollectionListingFilter} [filters]
@@ -1175,6 +1244,7 @@ export = CatalogPlatformModel;
1175
1244
  * @typedef GetConfigMetadataResponse
1176
1245
  * @property {Object[]} [condition]
1177
1246
  * @property {Object[]} data
1247
+ * @property {Page} [page]
1178
1248
  * @property {Object[]} [values]
1179
1249
  */
1180
1250
  /**
@@ -1319,6 +1389,12 @@ export = CatalogPlatformModel;
1319
1389
  * @property {number} [product_uid]
1320
1390
  * @property {Size[]} [sizes]
1321
1391
  */
1392
+ /**
1393
+ * @typedef GetQueryFiltersResponse
1394
+ * @property {ProductFilters[]} [filters]
1395
+ * @property {Object} operators
1396
+ * @property {ProductSortOn[]} [sort_on]
1397
+ */
1322
1398
  /**
1323
1399
  * @typedef GetSearchConfigurationResponse
1324
1400
  * @property {string} application_id - The application id where custom search
@@ -1849,6 +1925,21 @@ export = CatalogPlatformModel;
1849
1925
  * @property {boolean} [is_default]
1850
1926
  * @property {string} [name]
1851
1927
  */
1928
+ /**
1929
+ * @typedef Marketplaces
1930
+ * @property {string} [_id]
1931
+ * @property {string} [app_id]
1932
+ * @property {number[]} [brand_ids]
1933
+ * @property {number} [company_id]
1934
+ * @property {CreatedBy} [created_by]
1935
+ * @property {Object} [created_on]
1936
+ * @property {boolean} [enabled]
1937
+ * @property {CreatedBy} [modified_by]
1938
+ * @property {Object} [modified_on]
1939
+ * @property {string} [opt_level]
1940
+ * @property {string} [platforms]
1941
+ * @property {number[]} [store_ids]
1942
+ */
1852
1943
  /**
1853
1944
  * @typedef Media
1854
1945
  * @property {Object} [meta]
@@ -1982,6 +2073,18 @@ export = CatalogPlatformModel;
1982
2073
  * @property {number} [size]
1983
2074
  * @property {string} type
1984
2075
  */
2076
+ /**
2077
+ * @typedef Page1
2078
+ * @property {boolean} [ca]
2079
+ * @property {string} [department]
2080
+ * @property {number} [page_no]
2081
+ * @property {number} [page_size]
2082
+ * @property {string} [q]
2083
+ * @property {string} [sort]
2084
+ * @property {string} [sort_on]
2085
+ * @property {string} [type]
2086
+ * @property {string} [variant]
2087
+ */
1985
2088
  /**
1986
2089
  * @typedef PageResponse
1987
2090
  * @property {string} [current] - It is the current page of the page response schema.
@@ -2280,6 +2383,20 @@ export = CatalogPlatformModel;
2280
2383
  * @property {ProductDetailAttribute[]} [details]
2281
2384
  * @property {string} [title]
2282
2385
  */
2386
+ /**
2387
+ * @typedef ProductDetailV2
2388
+ * @property {ProductBrand} [brand]
2389
+ * @property {boolean} [is_excluded]
2390
+ * @property {boolean} [is_pinned]
2391
+ * @property {string} [item_code]
2392
+ * @property {string} [item_type]
2393
+ * @property {Media[]} [medias]
2394
+ * @property {string} [name]
2395
+ * @property {number} [priority]
2396
+ * @property {string} [short_description]
2397
+ * @property {string} slug
2398
+ * @property {number} [uid]
2399
+ */
2283
2400
  /**
2284
2401
  * @typedef ProductDownloadsResponse
2285
2402
  * @property {ProductTemplateExportResponse[]} [items] - The items of the job.
@@ -2727,6 +2844,7 @@ export = CatalogPlatformModel;
2727
2844
  /**
2728
2845
  * @typedef SEOData
2729
2846
  * @property {ApplicationItemSeoBreadcrumbs[]} [breadcrumbs]
2847
+ * @property {string} [canonical_url]
2730
2848
  * @property {string} [description]
2731
2849
  * @property {Metatags[]} [meta_tags]
2732
2850
  * @property {Sitemap} [sitemap]
@@ -2735,6 +2853,7 @@ export = CatalogPlatformModel;
2735
2853
  /**
2736
2854
  * @typedef SeoDetail
2737
2855
  * @property {ApplicationItemSeoBreadcrumbs[]} [breadcrumbs]
2856
+ * @property {string} [canonical_url]
2738
2857
  * @property {string} [description]
2739
2858
  * @property {Metatags[]} [meta_tags]
2740
2859
  * @property {Object} [sitemap]
@@ -2947,6 +3066,27 @@ export = CatalogPlatformModel;
2947
3066
  * @property {number[]} [items_not_updated]
2948
3067
  * @property {string} [message]
2949
3068
  */
3069
+ /**
3070
+ * @typedef UpdateMarketplaceOptinRequest
3071
+ * @property {number[]} [brand_ids]
3072
+ * @property {number} [company_id]
3073
+ * @property {boolean} [enabled]
3074
+ * @property {string} [opt_level]
3075
+ * @property {string} [platform]
3076
+ * @property {number[]} [store_ids]
3077
+ */
3078
+ /**
3079
+ * @typedef UpdateMarketplaceOptinResponse
3080
+ * @property {string} [app_id]
3081
+ * @property {number[]} [brand_ids]
3082
+ * @property {number} [company_id]
3083
+ * @property {CreatedBy} [created_by]
3084
+ * @property {boolean} [enabled]
3085
+ * @property {CreatedBy} [modified_by]
3086
+ * @property {string} [opt_level]
3087
+ * @property {string} [platform]
3088
+ * @property {number[]} [store_ids]
3089
+ */
2950
3090
  /**
2951
3091
  * @typedef UpdateSearchConfigurationRequest
2952
3092
  * @property {string} application_id - The application id where custom search
@@ -3124,7 +3264,7 @@ export = CatalogPlatformModel;
3124
3264
  declare class CatalogPlatformModel {
3125
3265
  }
3126
3266
  declare namespace CatalogPlatformModel {
3127
- export { Action, ActionPage, AllowSingleRequest, AllSizes, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponse, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMeta, ApplicationItemMOQ, ApplicationItemSEO, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, ApplicationProductListingResponse, ApplicationStoreJson, AppReturnConfigResponse, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutocompleteAction, AutoCompleteMedia, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponse, Brand, BrandItem, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, CategoryCreateResponse, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryRequestBody, CategoryResponse, CategoryUpdateResponse, Child, CollectionBadge, CollectionBanner, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, CreateSearchConfigurationRequest, CreateSearchConfigurationResponse, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteAppCategoryReturnConfig, DeleteResponse, DeleteSearchConfigurationResponse, Department, DepartmentCategoryTree, DepartmentCreateErrorResponse, DepartmentCreateResponse, DepartmentCreateUpdate, DepartmentErrorResponse, DepartmentIdentifier, DepartmentModel, DepartmentResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, FilerList, GenderDetail, GetAddressSerializer, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, GetConfigMetadataResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetSearchConfigurationResponse, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, GTIN, Guide, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HSNCodesResponse, HSNData, HSNDataInsertV2, HsnUpsert, Image, ImageUrls, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponse, InventoryExportQuantityFilter, InventoryExportRequest, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, InvSize, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, Metatags, MOQData, NetQuantity, NetQuantityResponse, NextSchedule, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptInPostRequest, OptinStoreDetails, OwnerAppItemResponse, Page, PageResponse, PageResponse1, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigBaseSerializer, ProductReturnConfigSerializer, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, ProductVariantsResponse, Properties, PTErrorResponse, Quantities, QuantitiesArticle, Quantity, QuantityBase, RawProduct, RawProductListingResponse, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, SearchableAttribute, SearchKeywordResult, SecondLevelChild, SellerPhoneNumber, SEOData, SeoDetail, SetSize, SingleCategoryResponse, SingleProductResponse, Sitemap, Size, SizeDistribution, SizeGuideResponse, SizePromotionThreshold, StoreAssignResponse, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplatesResponse, TemplatesValidationResponse, TemplateValidationData, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdatedResponse, UpdateSearchConfigurationRequest, UpdateSearchConfigurationResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, PageType };
3267
+ export { Action, ActionPage, AllowSingleRequest, AllSizes, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponse, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMeta, ApplicationItemMOQ, ApplicationItemSEO, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, ApplicationProductListingResponse, ApplicationStoreJson, AppReturnConfigResponse, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutocompleteAction, AutoCompleteMedia, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponse, Brand, BrandItem, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, CategoryCreateResponse, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryRequestBody, CategoryResponse, CategoryUpdateResponse, Child, CollectionBadge, CollectionBanner, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionItem, CollectionItemSchemaV2, CollectionItemUpdate, CollectionItemUpdateSchemaV2, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionQuerySchemaV2, CollectionSchedule, CommonResponseSchemaCollection, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, CreatedBy, CreateSearchConfigurationRequest, CreateSearchConfigurationResponse, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteAppCategoryReturnConfig, DeleteResponse, DeleteSearchConfigurationResponse, Department, DepartmentCategoryTree, DepartmentCreateErrorResponse, DepartmentCreateResponse, DepartmentCreateUpdate, DepartmentErrorResponse, DepartmentIdentifier, DepartmentModel, DepartmentResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, FilerList, GenderDetail, GetAddressSerializer, GetAllMarketplaces, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionDetailResponse, GetCollectionItemsResponse, GetCollectionItemsResponseSchemaV2, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, GetConfigMetadataResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetQueryFiltersResponse, GetSearchConfigurationResponse, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, GTIN, Guide, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HSNCodesResponse, HSNData, HSNDataInsertV2, HsnUpsert, Image, ImageUrls, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponse, InventoryExportQuantityFilter, InventoryExportRequest, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, InvSize, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, ManufacturerResponse, ManufacturerResponse1, Marketplaces, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, Metatags, MOQData, NetQuantity, NetQuantityResponse, NextSchedule, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptInPostRequest, OptinStoreDetails, OwnerAppItemResponse, Page, Page1, PageResponse, PageResponse1, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDetailV2, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigBaseSerializer, ProductReturnConfigSerializer, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, ProductVariantsResponse, Properties, PTErrorResponse, Quantities, QuantitiesArticle, Quantity, QuantityBase, RawProduct, RawProductListingResponse, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, SearchableAttribute, SearchKeywordResult, SecondLevelChild, SellerPhoneNumber, SEOData, SeoDetail, SetSize, SingleCategoryResponse, SingleProductResponse, Sitemap, Size, SizeDistribution, SizeGuideResponse, SizePromotionThreshold, StoreAssignResponse, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplatesResponse, TemplatesValidationResponse, TemplateValidationData, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdatedResponse, UpdateMarketplaceOptinRequest, UpdateMarketplaceOptinResponse, UpdateSearchConfigurationRequest, UpdateSearchConfigurationResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, PageType };
3128
3268
  }
3129
3269
  /** @returns {Action} */
3130
3270
  declare function Action(): Action;
@@ -4067,6 +4207,13 @@ type CollectionItem = {
4067
4207
  item_id: number;
4068
4208
  priority?: number;
4069
4209
  };
4210
+ /** @returns {CollectionItemSchemaV2} */
4211
+ declare function CollectionItemSchemaV2(): CollectionItemSchemaV2;
4212
+ type CollectionItemSchemaV2 = {
4213
+ action: string;
4214
+ item_id: number;
4215
+ priority?: number;
4216
+ };
4070
4217
  /** @returns {CollectionItemUpdate} */
4071
4218
  declare function CollectionItemUpdate(): CollectionItemUpdate;
4072
4219
  type CollectionItemUpdate = {
@@ -4077,6 +4224,16 @@ type CollectionItemUpdate = {
4077
4224
  type?: string;
4078
4225
  visible_facets_keys?: string[];
4079
4226
  };
4227
+ /** @returns {CollectionItemUpdateSchemaV2} */
4228
+ declare function CollectionItemUpdateSchemaV2(): CollectionItemUpdateSchemaV2;
4229
+ type CollectionItemUpdateSchemaV2 = {
4230
+ allow_facets?: boolean;
4231
+ allow_sort?: boolean;
4232
+ items?: CollectionItemSchemaV2[];
4233
+ query?: CollectionQuerySchemaV2[];
4234
+ type: string;
4235
+ visible_facets_keys?: string[];
4236
+ };
4080
4237
  /** @returns {CollectionListingFilter} */
4081
4238
  declare function CollectionListingFilter(): CollectionListingFilter;
4082
4239
  type CollectionListingFilter = {
@@ -4114,6 +4271,23 @@ type CollectionQuery = {
4114
4271
  */
4115
4272
  value: any[];
4116
4273
  };
4274
+ /** @returns {CollectionQuerySchemaV2} */
4275
+ declare function CollectionQuerySchemaV2(): CollectionQuerySchemaV2;
4276
+ type CollectionQuerySchemaV2 = {
4277
+ /**
4278
+ * - The attribute of the collection query
4279
+ */
4280
+ attribute: string;
4281
+ /**
4282
+ * - The operation to be performed on the attribute of the
4283
+ * collection query
4284
+ */
4285
+ op: string;
4286
+ /**
4287
+ * - The value of the attribute of the collection query
4288
+ */
4289
+ value: any[];
4290
+ };
4117
4291
  /** @returns {CollectionSchedule} */
4118
4292
  declare function CollectionSchedule(): CollectionSchedule;
4119
4293
  type CollectionSchedule = {
@@ -4123,6 +4297,11 @@ type CollectionSchedule = {
4123
4297
  next_schedule?: NextSchedule[];
4124
4298
  start?: string;
4125
4299
  };
4300
+ /** @returns {CommonResponseSchemaCollection} */
4301
+ declare function CommonResponseSchemaCollection(): CommonResponseSchemaCollection;
4302
+ type CommonResponseSchemaCollection = {
4303
+ message?: string;
4304
+ };
4126
4305
  /** @returns {CompanyBrandDetail} */
4127
4306
  declare function CompanyBrandDetail(): CompanyBrandDetail;
4128
4307
  type CompanyBrandDetail = {
@@ -4306,6 +4485,12 @@ type CreateCollection = {
4306
4485
  type: string;
4307
4486
  visible_facets_keys?: string[];
4308
4487
  };
4488
+ /** @returns {CreatedBy} */
4489
+ declare function CreatedBy(): CreatedBy;
4490
+ type CreatedBy = {
4491
+ user_id?: string;
4492
+ username?: string;
4493
+ };
4309
4494
  /** @returns {CreateSearchConfigurationRequest} */
4310
4495
  declare function CreateSearchConfigurationRequest(): CreateSearchConfigurationRequest;
4311
4496
  type CreateSearchConfigurationRequest = {
@@ -4668,6 +4853,12 @@ type GetAddressSerializer = {
4668
4853
  pincode?: number;
4669
4854
  state?: string;
4670
4855
  };
4856
+ /** @returns {GetAllMarketplaces} */
4857
+ declare function GetAllMarketplaces(): GetAllMarketplaces;
4858
+ type GetAllMarketplaces = {
4859
+ items?: Marketplaces[];
4860
+ page?: Page;
4861
+ };
4671
4862
  /** @returns {GetAllSizes} */
4672
4863
  declare function GetAllSizes(): GetAllSizes;
4673
4864
  type GetAllSizes = {
@@ -4744,6 +4935,35 @@ type GetCollectionDetailNest = {
4744
4935
  uid?: string;
4745
4936
  visible_facets_keys?: string[];
4746
4937
  };
4938
+ /** @returns {GetCollectionDetailResponse} */
4939
+ declare function GetCollectionDetailResponse(): GetCollectionDetailResponse;
4940
+ type GetCollectionDetailResponse = {
4941
+ _custom_json?: any;
4942
+ _locale_language?: any;
4943
+ _schedule?: CollectionSchedule;
4944
+ action?: any;
4945
+ allow_facets?: boolean;
4946
+ allow_sort?: boolean;
4947
+ app_id?: string;
4948
+ badge?: CollectionBadge;
4949
+ banners?: ImageUrls;
4950
+ description?: string;
4951
+ is_active?: boolean;
4952
+ is_visible?: boolean;
4953
+ logo?: Media;
4954
+ meta?: any;
4955
+ name?: string;
4956
+ priority?: number;
4957
+ published?: boolean;
4958
+ query?: CollectionQuery[];
4959
+ seo?: SeoDetail;
4960
+ slug?: string;
4961
+ sort_on?: string;
4962
+ tags?: string[];
4963
+ type?: string;
4964
+ uid?: string;
4965
+ visible_facets_keys?: string[];
4966
+ };
4747
4967
  /** @returns {GetCollectionItemsResponse} */
4748
4968
  declare function GetCollectionItemsResponse(): GetCollectionItemsResponse;
4749
4969
  type GetCollectionItemsResponse = {
@@ -4752,6 +4972,12 @@ type GetCollectionItemsResponse = {
4752
4972
  page?: Page;
4753
4973
  sort_on?: ProductSortOn[];
4754
4974
  };
4975
+ /** @returns {GetCollectionItemsResponseSchemaV2} */
4976
+ declare function GetCollectionItemsResponseSchemaV2(): GetCollectionItemsResponseSchemaV2;
4977
+ type GetCollectionItemsResponseSchemaV2 = {
4978
+ items?: ProductDetailV2[];
4979
+ page?: Page1;
4980
+ };
4755
4981
  /** @returns {GetCollectionListingResponse} */
4756
4982
  declare function GetCollectionListingResponse(): GetCollectionListingResponse;
4757
4983
  type GetCollectionListingResponse = {
@@ -4788,6 +5014,7 @@ declare function GetConfigMetadataResponse(): GetConfigMetadataResponse;
4788
5014
  type GetConfigMetadataResponse = {
4789
5015
  condition?: any[];
4790
5016
  data: any[];
5017
+ page?: Page;
4791
5018
  values?: any[];
4792
5019
  };
4793
5020
  /** @returns {GetConfigResponse} */
@@ -4942,6 +5169,13 @@ type GetProducts = {
4942
5169
  product_uid?: number;
4943
5170
  sizes?: Size[];
4944
5171
  };
5172
+ /** @returns {GetQueryFiltersResponse} */
5173
+ declare function GetQueryFiltersResponse(): GetQueryFiltersResponse;
5174
+ type GetQueryFiltersResponse = {
5175
+ filters?: ProductFilters[];
5176
+ operators: any;
5177
+ sort_on?: ProductSortOn[];
5178
+ };
4945
5179
  /** @returns {GetSearchConfigurationResponse} */
4946
5180
  declare function GetSearchConfigurationResponse(): GetSearchConfigurationResponse;
4947
5181
  type GetSearchConfigurationResponse = {
@@ -6026,6 +6260,22 @@ type ManufacturerResponse1 = {
6026
6260
  is_default?: boolean;
6027
6261
  name?: string;
6028
6262
  };
6263
+ /** @returns {Marketplaces} */
6264
+ declare function Marketplaces(): Marketplaces;
6265
+ type Marketplaces = {
6266
+ _id?: string;
6267
+ app_id?: string;
6268
+ brand_ids?: number[];
6269
+ company_id?: number;
6270
+ created_by?: CreatedBy;
6271
+ created_on?: any;
6272
+ enabled?: boolean;
6273
+ modified_by?: CreatedBy;
6274
+ modified_on?: any;
6275
+ opt_level?: string;
6276
+ platforms?: string;
6277
+ store_ids?: number[];
6278
+ };
6029
6279
  /** @returns {Media} */
6030
6280
  declare function Media(): Media;
6031
6281
  type Media = {
@@ -6202,6 +6452,19 @@ type Page = {
6202
6452
  size?: number;
6203
6453
  type: string;
6204
6454
  };
6455
+ /** @returns {Page1} */
6456
+ declare function Page1(): Page1;
6457
+ type Page1 = {
6458
+ ca?: boolean;
6459
+ department?: string;
6460
+ page_no?: number;
6461
+ page_size?: number;
6462
+ q?: string;
6463
+ sort?: string;
6464
+ sort_on?: string;
6465
+ type?: string;
6466
+ variant?: string;
6467
+ };
6205
6468
  /** @returns {PageResponse} */
6206
6469
  declare function PageResponse(): PageResponse;
6207
6470
  type PageResponse = {
@@ -6555,6 +6818,21 @@ type ProductDetailGroupedAttribute = {
6555
6818
  details?: ProductDetailAttribute[];
6556
6819
  title?: string;
6557
6820
  };
6821
+ /** @returns {ProductDetailV2} */
6822
+ declare function ProductDetailV2(): ProductDetailV2;
6823
+ type ProductDetailV2 = {
6824
+ brand?: ProductBrand;
6825
+ is_excluded?: boolean;
6826
+ is_pinned?: boolean;
6827
+ item_code?: string;
6828
+ item_type?: string;
6829
+ medias?: Media[];
6830
+ name?: string;
6831
+ priority?: number;
6832
+ short_description?: string;
6833
+ slug: string;
6834
+ uid?: number;
6835
+ };
6558
6836
  /** @returns {ProductDownloadsResponse} */
6559
6837
  declare function ProductDownloadsResponse(): ProductDownloadsResponse;
6560
6838
  type ProductDownloadsResponse = {
@@ -7128,6 +7406,7 @@ type SellerPhoneNumber = {
7128
7406
  declare function SEOData(): SEOData;
7129
7407
  type SEOData = {
7130
7408
  breadcrumbs?: ApplicationItemSeoBreadcrumbs[];
7409
+ canonical_url?: string;
7131
7410
  description?: string;
7132
7411
  meta_tags?: Metatags[];
7133
7412
  sitemap?: Sitemap;
@@ -7137,6 +7416,7 @@ type SEOData = {
7137
7416
  declare function SeoDetail(): SeoDetail;
7138
7417
  type SeoDetail = {
7139
7418
  breadcrumbs?: ApplicationItemSeoBreadcrumbs[];
7419
+ canonical_url?: string;
7140
7420
  description?: string;
7141
7421
  meta_tags?: Metatags[];
7142
7422
  sitemap?: any;
@@ -7378,6 +7658,29 @@ type UpdatedResponse = {
7378
7658
  items_not_updated?: number[];
7379
7659
  message?: string;
7380
7660
  };
7661
+ /** @returns {UpdateMarketplaceOptinRequest} */
7662
+ declare function UpdateMarketplaceOptinRequest(): UpdateMarketplaceOptinRequest;
7663
+ type UpdateMarketplaceOptinRequest = {
7664
+ brand_ids?: number[];
7665
+ company_id?: number;
7666
+ enabled?: boolean;
7667
+ opt_level?: string;
7668
+ platform?: string;
7669
+ store_ids?: number[];
7670
+ };
7671
+ /** @returns {UpdateMarketplaceOptinResponse} */
7672
+ declare function UpdateMarketplaceOptinResponse(): UpdateMarketplaceOptinResponse;
7673
+ type UpdateMarketplaceOptinResponse = {
7674
+ app_id?: string;
7675
+ brand_ids?: number[];
7676
+ company_id?: number;
7677
+ created_by?: CreatedBy;
7678
+ enabled?: boolean;
7679
+ modified_by?: CreatedBy;
7680
+ opt_level?: string;
7681
+ platform?: string;
7682
+ store_ids?: number[];
7683
+ };
7381
7684
  /** @returns {UpdateSearchConfigurationRequest} */
7382
7685
  declare function UpdateSearchConfigurationRequest(): UpdateSearchConfigurationRequest;
7383
7686
  type UpdateSearchConfigurationRequest = {