@gofynd/fdk-client-javascript 1.4.12 → 1.4.14

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 (297) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
  6. package/sdk/application/Cart/CartApplicationClient.js +130 -53
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
  8. package/sdk/application/Cart/CartApplicationModel.js +380 -159
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
  10. package/sdk/application/Cart/CartApplicationValidator.js +34 -18
  11. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
  15. package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
  16. package/sdk/application/Common/CommonApplicationClient.js +6 -5
  17. package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
  18. package/sdk/application/Common/CommonApplicationModel.js +6 -6
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
  21. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
  22. package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
  23. package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
  24. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
  25. package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
  26. package/sdk/application/Content/ContentApplicationClient.js +54 -75
  27. package/sdk/application/Content/ContentApplicationModel.d.ts +96 -39
  28. package/sdk/application/Content/ContentApplicationModel.js +88 -34
  29. package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
  30. package/sdk/application/Content/ContentApplicationValidator.js +15 -10
  31. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
  32. package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
  33. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
  34. package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
  35. package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
  36. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
  37. package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
  38. package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
  39. package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
  40. package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
  41. package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
  42. package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
  43. package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
  44. package/sdk/application/Lead/LeadApplicationClient.js +2 -3
  45. package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
  46. package/sdk/application/Lead/LeadApplicationModel.js +19 -19
  47. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
  48. package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
  49. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
  50. package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
  51. package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
  52. package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
  53. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
  54. package/sdk/application/Order/OrderApplicationClient.js +96 -13
  55. package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
  56. package/sdk/application/Order/OrderApplicationModel.js +278 -73
  57. package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
  58. package/sdk/application/Order/OrderApplicationValidator.js +15 -2
  59. package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
  60. package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
  61. package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
  62. package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
  63. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
  64. package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
  65. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
  66. package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
  67. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
  68. package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
  69. package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
  70. package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
  71. package/sdk/application/Share/ShareApplicationModel.js +1 -1
  72. package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
  73. package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
  74. package/sdk/application/Theme/ThemeApplicationModel.d.ts +51 -19
  75. package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
  76. package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
  77. package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
  78. package/sdk/application/User/UserApplicationClient.d.ts +10 -10
  79. package/sdk/application/User/UserApplicationClient.js +10 -10
  80. package/sdk/application/User/UserApplicationModel.d.ts +17 -17
  81. package/sdk/application/User/UserApplicationModel.js +16 -16
  82. package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
  83. package/sdk/application/User/UserApplicationValidator.js +2 -2
  84. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  85. package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
  86. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
  87. package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
  88. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
  89. package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
  90. package/sdk/application/index.d.ts +1 -0
  91. package/sdk/application/index.js +2 -0
  92. package/sdk/common/Clickstream.js +12 -0
  93. package/sdk/common/Constant.d.ts +5 -0
  94. package/sdk/common/Constant.js +5 -0
  95. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
  96. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
  97. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
  98. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
  99. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
  100. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
  101. package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
  102. package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
  103. package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
  104. package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
  105. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
  106. package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
  107. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
  108. package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
  109. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
  110. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
  111. package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
  112. package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
  113. package/sdk/partner/Theme/ThemePartnerModel.d.ts +99 -39
  114. package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
  115. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  116. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
  117. package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
  118. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
  119. package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
  120. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
  121. package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
  122. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
  123. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
  124. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
  125. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
  127. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
  128. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
  129. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
  130. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  131. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  132. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  133. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  134. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  135. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  136. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  137. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  138. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
  139. package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
  140. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
  141. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
  142. package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
  143. package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
  144. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +192 -164
  145. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
  146. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
  147. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
  148. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
  149. package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
  150. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
  151. package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
  152. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
  153. package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
  154. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
  155. package/sdk/platform/Common/CommonPlatformClient.js +3 -2
  156. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  157. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  158. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
  159. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
  160. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
  161. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
  162. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
  163. package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
  164. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
  165. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
  166. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
  167. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
  168. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  169. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  170. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
  171. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
  172. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
  173. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
  174. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
  175. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
  176. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
  177. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
  178. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  179. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  180. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
  181. package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
  182. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
  183. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
  184. package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
  185. package/sdk/platform/Content/ContentPlatformClient.js +523 -336
  186. package/sdk/platform/Content/ContentPlatformModel.d.ts +1244 -397
  187. package/sdk/platform/Content/ContentPlatformModel.js +526 -392
  188. package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
  189. package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
  190. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
  191. package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
  192. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
  193. package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
  194. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  195. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  196. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
  197. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
  198. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
  199. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
  200. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
  201. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
  202. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
  203. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
  204. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  205. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  206. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
  207. package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
  208. package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
  209. package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
  210. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
  211. package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
  212. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
  213. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
  214. package/sdk/platform/Order/OrderPlatformClient.d.ts +138 -101
  215. package/sdk/platform/Order/OrderPlatformClient.js +267 -203
  216. package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
  217. package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
  218. package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
  219. package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
  220. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
  221. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
  222. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  223. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  224. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
  225. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
  226. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
  227. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
  228. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  229. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  230. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
  231. package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
  232. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  233. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  234. package/sdk/platform/PlatformClient.d.ts +0 -2
  235. package/sdk/platform/PlatformClient.js +0 -4
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  237. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  238. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  239. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  240. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
  241. package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
  242. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
  243. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
  244. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
  245. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
  246. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
  247. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
  248. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
  249. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
  250. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
  251. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
  252. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
  253. package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
  254. package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
  255. package/sdk/platform/Share/SharePlatformModel.js +27 -4
  256. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
  257. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
  258. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
  259. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
  260. package/sdk/platform/Theme/ThemePlatformModel.d.ts +40 -13
  261. package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
  262. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
  263. package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
  264. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
  265. package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
  266. package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
  267. package/sdk/platform/User/UserPlatformModel.js +23 -23
  268. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
  269. package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
  270. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
  271. package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
  272. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  273. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  274. package/sdk/platform/index.d.ts +0 -1
  275. package/sdk/platform/index.js +0 -2
  276. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
  277. package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
  278. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
  279. package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
  280. package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
  281. package/sdk/public/Content/ContentPublicClient.js +791 -5
  282. package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
  283. package/sdk/public/Content/ContentPublicModel.js +649 -3
  284. package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
  285. package/sdk/public/Content/ContentPublicValidator.js +88 -2
  286. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  287. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  288. package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
  289. package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
  290. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  291. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  292. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  293. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  294. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  295. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  296. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  297. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
@@ -45,13 +45,14 @@ declare class Catalog {
45
45
  * @param {CatalogPlatformApplicationValidator.CreateCollectionParam} arg - Arg object
46
46
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
47
47
  * @param {import("../PlatformAPIClient").Options} - Options
48
- * @returns {Promise<CatalogPlatformModel.CollectionCreateResponse>} -
49
- * Success response
48
+ * @returns {Promise<CatalogPlatformModel.CollectionCreateResponseSchema>}
49
+ * - Success response
50
+ *
50
51
  * @name createCollection
51
52
  * @summary: Create a collection
52
53
  * @description: Create a collection for a sales channel linked to a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCollection/).
53
54
  */
54
- createCollection({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCollectionParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CollectionCreateResponse>;
55
+ createCollection({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCollectionParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CollectionCreateResponseSchema>;
55
56
  /**
56
57
  * @param {CatalogPlatformApplicationValidator.CreateConfigurationByTypeParam} arg
57
58
  * - Arg object
@@ -84,14 +85,14 @@ declare class Catalog {
84
85
  *
85
86
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
86
87
  * @param {import("../PlatformAPIClient").Options} - Options
87
- * @returns {Promise<CatalogPlatformModel.CreateAutocompleteWordsResponse>}
88
+ * @returns {Promise<CatalogPlatformModel.CreateAutocompleteWordsResponseSchema>}
88
89
  * - Success response
89
90
  *
90
91
  * @name createCustomAutocompleteRule
91
92
  * @summary: Create autocomplete configurations
92
93
  * @description: Create custom autocomplete keyword configurations for a specific sales channel to map any endpoint with these keywords. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createCustomAutocompleteRule/).
93
94
  */
94
- createCustomAutocompleteRule({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCustomAutocompleteRuleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateAutocompleteWordsResponse>;
95
+ createCustomAutocompleteRule({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateCustomAutocompleteRuleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateAutocompleteWordsResponseSchema>;
95
96
  /**
96
97
  * @param {CatalogPlatformApplicationValidator.CreateCustomKeywordParam} arg
97
98
  * - Arg object
@@ -134,38 +135,38 @@ declare class Catalog {
134
135
  *
135
136
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
136
137
  * @param {import("../PlatformAPIClient").Options} - Options
137
- * @returns {Promise<CatalogPlatformModel.CreateSearchConfigurationResponse>}
138
+ * @returns {Promise<CatalogPlatformModel.CreateSearchConfigurationResponseSchema>}
138
139
  * - Success response
139
140
  *
140
141
  * @name createSearchConfiguration
141
142
  * @summary: Create search configuration
142
143
  * @description: Create search configuration for the catalog for a specific company and sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/createSearchConfiguration/).
143
144
  */
144
- createSearchConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateSearchConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateSearchConfigurationResponse>;
145
+ createSearchConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.CreateSearchConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CreateSearchConfigurationResponseSchema>;
145
146
  /**
146
147
  * @param {CatalogPlatformApplicationValidator.DeleteAppCategoryReturnConfigurationParam} arg
147
148
  * - Arg object
148
149
  *
149
150
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
150
151
  * @param {import("../PlatformAPIClient").Options} - Options
151
- * @returns {Promise<CatalogPlatformModel.SuccessResponse>} - Success response
152
+ * @returns {Promise<CatalogPlatformModel.SuccessResponseSchema>} - Success response
152
153
  * @name deleteAppCategoryReturnConfiguration
153
154
  * @summary: Delete product return configuration
154
155
  * @description: Delete Category level sales channel Return Configuration setttings - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteAppCategoryReturnConfiguration/).
155
156
  */
156
- deleteAppCategoryReturnConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteAppCategoryReturnConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse>;
157
+ deleteAppCategoryReturnConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteAppCategoryReturnConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponseSchema>;
157
158
  /**
158
159
  * @param {CatalogPlatformApplicationValidator.DeleteAutocompleteKeywordParam} arg
159
160
  * - Arg object
160
161
  *
161
162
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
162
163
  * @param {import("../PlatformAPIClient").Options} - Options
163
- * @returns {Promise<CatalogPlatformModel.DeleteResponse>} - Success response
164
+ * @returns {Promise<CatalogPlatformModel.DeleteResponseSchema>} - Success response
164
165
  * @name deleteAutocompleteKeyword
165
166
  * @summary: Delete autocomplete keyword
166
167
  * @description: Delete custom autocomplete keyword configurations for a specific sales channel by its id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteAutocompleteKeyword/).
167
168
  */
168
- deleteAutocompleteKeyword({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponse>;
169
+ deleteAutocompleteKeyword({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponseSchema>;
169
170
  /**
170
171
  * @param {CatalogPlatformApplicationValidator.DeleteCollectionParam} arg - Arg object
171
172
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -184,63 +185,66 @@ declare class Catalog {
184
185
  *
185
186
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
186
187
  * @param {import("../PlatformAPIClient").Options} - Options
187
- * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
188
+ * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>} -
189
+ * Success response
188
190
  * @name deleteGroupConfiguration
189
191
  * @summary: Delete group configuration
190
192
  * @description: Delete group configurations by its slug for a specific config_type for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteGroupConfiguration/).
191
193
  */
192
- deleteGroupConfiguration({ configType, groupSlug, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteGroupConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
194
+ deleteGroupConfiguration({ configType, groupSlug, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteGroupConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>;
193
195
  /**
194
196
  * @param {CatalogPlatformApplicationValidator.DeleteListingConfigurationParam} arg
195
197
  * - Arg object
196
198
  *
197
199
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
198
200
  * @param {import("../PlatformAPIClient").Options} - Options
199
- * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
201
+ * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>} -
202
+ * Success response
200
203
  * @name deleteListingConfiguration
201
204
  * @summary: Delete listing configuration
202
205
  * @description: Remove a specific product listing configuration by its config_id for a specific config_type for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteListingConfiguration/).
203
206
  */
204
- deleteListingConfiguration({ configType, configId, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteListingConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
207
+ deleteListingConfiguration({ configType, configId, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteListingConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>;
205
208
  /**
206
209
  * @param {CatalogPlatformApplicationValidator.DeleteSearchConfigurationParam} arg
207
210
  * - Arg object
208
211
  *
209
212
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
210
213
  * @param {import("../PlatformAPIClient").Options} - Options
211
- * @returns {Promise<CatalogPlatformModel.DeleteSearchConfigurationResponse>}
214
+ * @returns {Promise<CatalogPlatformModel.DeleteSearchConfigurationResponseSchema>}
212
215
  * - Success response
213
216
  *
214
217
  * @name deleteSearchConfiguration
215
218
  * @summary: Delete search configuration
216
219
  * @description: Delete Search Configuration for a specific sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteSearchConfiguration/).
217
220
  */
218
- deleteSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteSearchConfigurationResponse>;
221
+ deleteSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteSearchConfigurationResponseSchema>;
219
222
  /**
220
223
  * @param {CatalogPlatformApplicationValidator.DeleteSearchKeywordsParam} arg
221
224
  * - Arg object
222
225
  *
223
226
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
224
227
  * @param {import("../PlatformAPIClient").Options} - Options
225
- * @returns {Promise<CatalogPlatformModel.DeleteResponse>} - Success response
228
+ * @returns {Promise<CatalogPlatformModel.DeleteResponseSchema>} - Success response
226
229
  * @name deleteSearchKeywords
227
230
  * @summary: Delete search keywords
228
231
  * @description: Delete a search keywords by its id for a specific company and sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/deleteSearchKeywords/).
229
232
  */
230
- deleteSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponse>;
233
+ deleteSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.DeleteSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.DeleteResponseSchema>;
231
234
  /**
232
235
  * @param {CatalogPlatformApplicationValidator.GetAllCollectionsParam} arg
233
236
  * - Arg object
234
237
  *
235
238
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
236
239
  * @param {import("../PlatformAPIClient").Options} - Options
237
- * @returns {Promise<CatalogPlatformModel.GetCollectionListingResponse>} -
238
- * Success response
240
+ * @returns {Promise<CatalogPlatformModel.GetCollectionListingResponseSchema>}
241
+ * - Success response
242
+ *
239
243
  * @name getAllCollections
240
244
  * @summary: List collections
241
245
  * @description: Retrieve all collections based on criteria such as collection name, schedule status, and active status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAllCollections/).
242
246
  */
243
- getAllCollections({ q, scheduleStatus, type, tags, isActive, pageNo, pageSize, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAllCollectionsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionListingResponse>;
247
+ getAllCollections({ q, scheduleStatus, type, tags, isActive, pageNo, pageSize, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAllCollectionsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionListingResponseSchema>;
244
248
  /**
245
249
  * @param {Object} arg - Arg object.
246
250
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -256,7 +260,7 @@ declare class Catalog {
256
260
  * @param {boolean} [arg.isActive] - Get collections filtered by active status.
257
261
  * @param {number} [arg.pageSize] - Number of items to retrieve in each
258
262
  * page. Default is 12.
259
- * @returns {Paginator<CatalogPlatformModel.GetCollectionListingResponse>}
263
+ * @returns {Paginator<CatalogPlatformModel.GetCollectionListingResponseSchema>}
260
264
  * @summary: List collections
261
265
  * @description: Retrieve all collections based on criteria such as collection name, schedule status, and active status.
262
266
  */
@@ -269,53 +273,55 @@ declare class Catalog {
269
273
  tags?: string[];
270
274
  isActive?: boolean;
271
275
  pageSize?: number;
272
- }): Paginator<CatalogPlatformModel.GetCollectionListingResponse>;
276
+ }): Paginator<CatalogPlatformModel.GetCollectionListingResponseSchema>;
273
277
  /**
274
278
  * @param {CatalogPlatformApplicationValidator.GetAllSearchKeywordParam} arg
275
279
  * - Arg object
276
280
  *
277
281
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
278
282
  * @param {import("../PlatformAPIClient").Options} - Options
279
- * @returns {Promise<CatalogPlatformModel.GetSearchWordsResponse>} - Success response
283
+ * @returns {Promise<CatalogPlatformModel.GetSearchWordsResponseSchema>} -
284
+ * Success response
280
285
  * @name getAllSearchKeyword
281
286
  * @summary: List search keywords
282
287
  * @description: Get all custom search keywords for a specific company and sales channel allows you to map certain conditions with the keywords to give you ultimate results. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAllSearchKeyword/).
283
288
  */
284
- getAllSearchKeyword({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsResponse>;
289
+ getAllSearchKeyword({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsResponseSchema>;
285
290
  /**
286
291
  * @param {CatalogPlatformApplicationValidator.GetAppCategoryReturnConfigParam} arg
287
292
  * - Arg object
288
293
  *
289
294
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
290
295
  * @param {import("../PlatformAPIClient").Options} - Options
291
- * @returns {Promise<CatalogPlatformModel.BaseAppCategoryReturnConfigResponse>}
296
+ * @returns {Promise<CatalogPlatformModel.BaseAppCategoryReturnConfigResponseSchema>}
292
297
  * - Success response
293
298
  *
294
299
  * @name getAppCategoryReturnConfig
295
300
  * @summary: Get category return configuration
296
301
  * @description: Get all category level configuration level set for an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppCategoryReturnConfig/).
297
302
  */
298
- getAppCategoryReturnConfig({ q, pageNo, pageSize, requestHeaders }?: CatalogPlatformApplicationValidator.GetAppCategoryReturnConfigParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BaseAppCategoryReturnConfigResponse>;
303
+ getAppCategoryReturnConfig({ q, pageNo, pageSize, requestHeaders }?: CatalogPlatformApplicationValidator.GetAppCategoryReturnConfigParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BaseAppCategoryReturnConfigResponseSchema>;
299
304
  /**
300
305
  * @param {CatalogPlatformApplicationValidator.GetAppInventoryParam} arg - Arg object
301
306
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
302
307
  * @param {import("../PlatformAPIClient").Options} - Options
303
- * @returns {Promise<CatalogPlatformModel.InventoryStockResponse>} - Success response
308
+ * @returns {Promise<CatalogPlatformModel.InventoryStockResponseSchema>} -
309
+ * Success response
304
310
  * @name getAppInventory
305
311
  * @summary: List sales channel inventory
306
312
  * @description: Retrieve inventory data related to the sales channel. this can be used to get the Inventory status of products with the filters of timestamp, store_ids, brand_ids, item_id, Items, Pagination. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppInventory/).
307
313
  */
308
- getAppInventory({ itemIds, storeIds, brandIds, sellerIdentifiers, timestamp, pageSize, pageId, qtyGt, qtyLt, qtyType, fromDate, toDate, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppInventoryParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.InventoryStockResponse>;
314
+ getAppInventory({ itemIds, storeIds, brandIds, sellerIdentifiers, timestamp, pageSize, pageId, qtyGt, qtyLt, qtyType, fromDate, toDate, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppInventoryParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.InventoryStockResponseSchema>;
309
315
  /**
310
316
  * @param {CatalogPlatformApplicationValidator.GetAppLocationsParam} arg - Arg object
311
317
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
312
318
  * @param {import("../PlatformAPIClient").Options} - Options
313
- * @returns {Promise<CatalogPlatformModel.LocationListSerializer>} - Success response
319
+ * @returns {Promise<CatalogPlatformModel.LocationListSchema>} - Success response
314
320
  * @name getAppLocations
315
321
  * @summary: List sales channels
316
322
  * @description: Retrieve all stores associated with an sales channel, with support for searching by store name and filtering by store type and status (verified/unverified) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppLocations/).
317
323
  */
318
- getAppLocations({ storeType, uid, q, stage, pageNo, pageSize, tags, storeTypes, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppLocationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.LocationListSerializer>;
324
+ getAppLocations({ storeType, uid, q, stage, pageNo, pageSize, tags, storeTypes, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppLocationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.LocationListSchema>;
319
325
  /**
320
326
  * @param {Object} arg - Arg object.
321
327
  * @param {string} arg.companyId - Id of the company whose locations are to fetched
@@ -332,7 +338,7 @@ declare class Catalog {
332
338
  * page. Default is 20.
333
339
  * @param {string[]} [arg.tags] - Get locations filtered by tags.
334
340
  * @param {string[]} [arg.storeTypes] - Get locations filtered by store types.
335
- * @returns {Paginator<CatalogPlatformModel.LocationListSerializer>}
341
+ * @returns {Paginator<CatalogPlatformModel.LocationListSchema>}
336
342
  * @summary: List sales channels
337
343
  * @description: Retrieve all stores associated with an sales channel, with support for searching by store name and filtering by store type and status (verified/unverified)
338
344
  */
@@ -346,28 +352,30 @@ declare class Catalog {
346
352
  pageSize?: number;
347
353
  tags?: string[];
348
354
  storeTypes?: string[];
349
- }): Paginator<CatalogPlatformModel.LocationListSerializer>;
355
+ }): Paginator<CatalogPlatformModel.LocationListSchema>;
350
356
  /**
351
357
  * @param {CatalogPlatformApplicationValidator.GetAppProductParam} arg - Arg object
352
358
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
353
359
  * @param {import("../PlatformAPIClient").Options} - Options
354
- * @returns {Promise<CatalogPlatformModel.OwnerAppItemResponse>} - Success response
360
+ * @returns {Promise<CatalogPlatformModel.OwnerAppItemResponseSchema>} -
361
+ * Success response
355
362
  * @name getAppProduct
356
363
  * @summary: Get sales channel product
357
364
  * @description: Retrieve sales channel product details by its item_id and depending upon filters sent in request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppProduct/).
358
365
  */
359
- getAppProduct({ itemId, requestHeaders }?: CatalogPlatformApplicationValidator.GetAppProductParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.OwnerAppItemResponse>;
366
+ getAppProduct({ itemId, requestHeaders }?: CatalogPlatformApplicationValidator.GetAppProductParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.OwnerAppItemResponseSchema>;
360
367
  /**
361
368
  * @param {CatalogPlatformApplicationValidator.GetAppProductsParam} arg - Arg object
362
369
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
363
370
  * @param {import("../PlatformAPIClient").Options} - Options
364
- * @returns {Promise<CatalogPlatformModel.RawProductListingResponse>} -
365
- * Success response
371
+ * @returns {Promise<CatalogPlatformModel.RawProductListingResponseSchema>}
372
+ * - Success response
373
+ *
366
374
  * @name getAppProducts
367
375
  * @summary: List sales channel products
368
376
  * @description: Retrieve products specific to the sales channel, with filtering options available for brand, category, department, tags, item IDs, product name, and pagination support - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppProducts/).
369
377
  */
370
- getAppProducts({ brandIds, categoryIds, departmentIds, tags, itemIds, pageNo, pageSize, q, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.RawProductListingResponse>;
378
+ getAppProducts({ brandIds, categoryIds, departmentIds, tags, itemIds, pageNo, pageSize, q, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.RawProductListingResponseSchema>;
371
379
  /**
372
380
  * @param {Object} arg - Arg object.
373
381
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -384,7 +392,7 @@ declare class Catalog {
384
392
  * @param {number} [arg.pageSize] - Number of items to retrieve in each
385
393
  * page. Default is 10.
386
394
  * @param {string} [arg.q] - Search with Item Code, Name, Slug or Identifier.
387
- * @returns {Paginator<CatalogPlatformModel.RawProductListingResponse>}
395
+ * @returns {Paginator<CatalogPlatformModel.RawProductListingResponseSchema>}
388
396
  * @summary: List sales channel products
389
397
  * @description: Retrieve products specific to the sales channel, with filtering options available for brand, category, department, tags, item IDs, product name, and pagination support
390
398
  */
@@ -398,87 +406,33 @@ declare class Catalog {
398
406
  itemIds?: number[];
399
407
  pageSize?: number;
400
408
  q?: string;
401
- }): Paginator<CatalogPlatformModel.RawProductListingResponse>;
409
+ }): Paginator<CatalogPlatformModel.RawProductListingResponseSchema>;
402
410
  /**
403
411
  * @param {CatalogPlatformApplicationValidator.GetAppReturnConfigurationParam} arg
404
412
  * - Arg object
405
413
  *
406
414
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
407
415
  * @param {import("../PlatformAPIClient").Options} - Options
408
- * @returns {Promise<CatalogPlatformModel.AppReturnConfigResponse>} - Success response
416
+ * @returns {Promise<CatalogPlatformModel.AppReturnConfigResponseSchema>} -
417
+ * Success response
409
418
  * @name getAppReturnConfiguration
410
419
  * @summary: get product-return configuration
411
420
  * @description: Get Product Return configuration set at an sales channel level - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppReturnConfiguration/).
412
421
  */
413
- getAppReturnConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppReturnConfigResponse>;
414
- /**
415
- * @param {CatalogPlatformApplicationValidator.GetAppicationProductsParam} arg
416
- * - Arg object
417
- *
418
- * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
419
- * @param {import("../PlatformAPIClient").Options} - Options
420
- * @returns {Promise<CatalogPlatformModel.ApplicationProductListingResponse>}
421
- * - Success response
422
- *
423
- * @name getAppicationProducts
424
- * @summary: List sales channel products
425
- * @description: Retrieve products associated with the sales channel. List all the products associated with a brand, collection or category in a requested sort order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAppicationProducts/).
426
- */
427
- getAppicationProducts({ q, f, c, filters, isDependent, sortOn, pageId, pageSize, pageNo, pageType, itemIds, requestHeaders, }?: CatalogPlatformApplicationValidator.GetAppicationProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationProductListingResponse>;
428
- /**
429
- * @param {Object} arg - Arg object.
430
- * @param {string} arg.companyId - A `company_id` is a unique identifier for
431
- * a particular seller account.
432
- * @param {string} arg.applicationId - A `application_id` is a unique
433
- * identifier for a particular sale channel.
434
- * @param {string} [arg.q] - The search query. This can be a partial or
435
- * complete name of a either a product, brand or category
436
- * @param {string} [arg.f] - The search filter parameters. All the parameter
437
- * filtered from filter parameters will be passed in **f** parameter in
438
- * this format. **?f=brand:voi-jeans||and:::category:t-shirts||shirts**
439
- * @param {string} [arg.c] - The search filter parameters for collection
440
- * items. All the parameter filtered from filter parameters will be passed
441
- * in **c** parameter in this format.
442
- * **?c=brand:in:voi-jeans|and:::category:nin:t-shirts|shirts**
443
- * @param {boolean} [arg.filters] - Pass `filters` parameter to fetch the
444
- * filter details. This flag is used to fetch all filters
445
- * @param {boolean} [arg.isDependent] - This query parameter is used to get
446
- * the dependent products in the listing.
447
- * @param {string} [arg.sortOn] - The order to sort the list of products on.
448
- * The supported sort parameters are popularity, price, redemption and
449
- * discount in either ascending or descending order. See the supported
450
- * values below.
451
- * @param {number} [arg.pageSize] - Number of items to retrieve in each
452
- * page. Default is 12.
453
- * @param {number[]} [arg.itemIds] - Item Ids of product
454
- * @returns {Paginator<CatalogPlatformModel.ApplicationProductListingResponse>}
455
- * @summary: List sales channel products
456
- * @description: Retrieve products associated with the sales channel. List all the products associated with a brand, collection or category in a requested sort order.
457
- */
458
- getAppicationProductsPaginator({ companyId, applicationId, q, f, c, filters, isDependent, sortOn, pageSize, itemIds, }?: {
459
- companyId: string;
460
- applicationId: string;
461
- q?: string;
462
- f?: string;
463
- c?: string;
464
- filters?: boolean;
465
- isDependent?: boolean;
466
- sortOn?: string;
467
- pageSize?: number;
468
- itemIds?: number[];
469
- }): Paginator<CatalogPlatformModel.ApplicationProductListingResponse>;
422
+ getAppReturnConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.AppReturnConfigResponseSchema>;
470
423
  /**
471
424
  * @param {CatalogPlatformApplicationValidator.GetApplicationBrandListingParam} arg
472
425
  * - Arg object
473
426
  *
474
427
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
475
428
  * @param {import("../PlatformAPIClient").Options} - Options
476
- * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
429
+ * @returns {Promise<CatalogPlatformModel.ApplicationBrandListingSchema>} -
430
+ * Success response
477
431
  * @name getApplicationBrandListing
478
432
  * @summary: List sales channel brands
479
433
  * @description: Retrieve brand listings related to the sales channel. A brand is the name under which a product is being sold - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrandListing/).
480
434
  */
481
- getApplicationBrandListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
435
+ getApplicationBrandListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationBrandListingSchema>;
482
436
  /**
483
437
  * @param {Object} arg - Arg object.
484
438
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -489,7 +443,7 @@ declare class Catalog {
489
443
  * page. Default is 12.
490
444
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
491
445
  * to search brands by brand name.
492
- * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
446
+ * @returns {Paginator<CatalogPlatformModel.ApplicationBrandListingSchema>}
493
447
  * @summary: List sales channel brands
494
448
  * @description: Retrieve brand listings related to the sales channel. A brand is the name under which a product is being sold
495
449
  */
@@ -498,19 +452,20 @@ declare class Catalog {
498
452
  applicationId: string;
499
453
  pageSize?: number;
500
454
  q?: string;
501
- }): Paginator<CatalogPlatformModel.BrandListingResponse>;
455
+ }): Paginator<CatalogPlatformModel.ApplicationBrandListingSchema>;
502
456
  /**
503
457
  * @param {CatalogPlatformApplicationValidator.GetApplicationBrandsParam} arg
504
458
  * - Arg object
505
459
  *
506
460
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
507
461
  * @param {import("../PlatformAPIClient").Options} - Options
508
- * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
462
+ * @returns {Promise<CatalogPlatformModel.BrandListingResponseSchema>} -
463
+ * Success response
509
464
  * @name getApplicationBrands
510
465
  * @summary: List brands
511
466
  * @description: List all the brands, and have search capabilities on brand uid, name etc - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationBrands/).
512
467
  */
513
- getApplicationBrands({ department, pageNo, pageSize, q, brandId, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
468
+ getApplicationBrands({ department, pageNo, pageSize, q, brandId, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationBrandsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponseSchema>;
514
469
  /**
515
470
  * @param {Object} arg - Arg object.
516
471
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -527,7 +482,7 @@ declare class Catalog {
527
482
  * to search brands by brand name.
528
483
  * @param {number[]} [arg.brandId] - Helps to sort the brands list on the
529
484
  * basis of uid list.
530
- * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
485
+ * @returns {Paginator<CatalogPlatformModel.BrandListingResponseSchema>}
531
486
  * @summary: List brands
532
487
  * @description: List all the brands, and have search capabilities on brand uid, name etc
533
488
  */
@@ -538,19 +493,21 @@ declare class Catalog {
538
493
  pageSize?: number;
539
494
  q?: string;
540
495
  brandId?: number[];
541
- }): Paginator<CatalogPlatformModel.BrandListingResponse>;
496
+ }): Paginator<CatalogPlatformModel.BrandListingResponseSchema>;
542
497
  /**
543
498
  * @param {CatalogPlatformApplicationValidator.GetApplicationCategoryListingParam} arg
544
499
  * - Arg object
545
500
  *
546
501
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
547
502
  * @param {import("../PlatformAPIClient").Options} - Options
548
- * @returns {Promise<CatalogPlatformModel.BrandListingResponse>} - Success response
503
+ * @returns {Promise<CatalogPlatformModel.ApplicationCategoryListingSchema>}
504
+ * - Success response
505
+ *
549
506
  * @name getApplicationCategoryListing
550
507
  * @summary: List sales channel categories
551
508
  * @description: Retrieve category listings related to the sales channel , with the ability to filter results based on department ,category names etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationCategoryListing/).
552
509
  */
553
- getApplicationCategoryListing({ departmentId, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationCategoryListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.BrandListingResponse>;
510
+ getApplicationCategoryListing({ departmentId, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationCategoryListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationCategoryListingSchema>;
554
511
  /**
555
512
  * @param {Object} arg - Arg object.
556
513
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -563,7 +520,7 @@ declare class Catalog {
563
520
  * page. Default is 12.
564
521
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
565
522
  * to search brands by brand name.
566
- * @returns {Paginator<CatalogPlatformModel.BrandListingResponse>}
523
+ * @returns {Paginator<CatalogPlatformModel.ApplicationCategoryListingSchema>}
567
524
  * @summary: List sales channel categories
568
525
  * @description: Retrieve category listings related to the sales channel , with the ability to filter results based on department ,category names etc.
569
526
  */
@@ -573,21 +530,21 @@ declare class Catalog {
573
530
  departmentId?: number;
574
531
  pageSize?: number;
575
532
  q?: string;
576
- }): Paginator<CatalogPlatformModel.BrandListingResponse>;
533
+ }): Paginator<CatalogPlatformModel.ApplicationCategoryListingSchema>;
577
534
  /**
578
535
  * @param {CatalogPlatformApplicationValidator.GetApplicationDepartmentListingParam} arg
579
536
  * - Arg object
580
537
  *
581
538
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
582
539
  * @param {import("../PlatformAPIClient").Options} - Options
583
- * @returns {Promise<CatalogPlatformModel.ApplicationDepartmentListingResponse>}
540
+ * @returns {Promise<CatalogPlatformModel.ApplicationDepartmentListingResponseSchema>}
584
541
  * - Success response
585
542
  *
586
543
  * @name getApplicationDepartmentListing
587
544
  * @summary: List sales channel departments
588
545
  * @description: Retrieve department listings related to the sales channel. Departments are used to categorize similar products, and you can filter the results based on department names - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationDepartmentListing/).
589
546
  */
590
- getApplicationDepartmentListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationDepartmentListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationDepartmentListingResponse>;
547
+ getApplicationDepartmentListing({ pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationDepartmentListingParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationDepartmentListingResponseSchema>;
591
548
  /**
592
549
  * @param {Object} arg - Arg object.
593
550
  * @param {string} arg.companyId - A `company_id` is a unique identifier for
@@ -598,7 +555,7 @@ declare class Catalog {
598
555
  * page. Default is 12.
599
556
  * @param {string} [arg.q] - Search query with brand name.Use this parameter
600
557
  * to search department by name.
601
- * @returns {Paginator<CatalogPlatformModel.ApplicationDepartmentListingResponse>}
558
+ * @returns {Paginator<CatalogPlatformModel.ApplicationDepartmentListingResponseSchema>}
602
559
  * @summary: List sales channel departments
603
560
  * @description: Retrieve department listings related to the sales channel. Departments are used to categorize similar products, and you can filter the results based on department names
604
561
  */
@@ -607,60 +564,120 @@ declare class Catalog {
607
564
  applicationId: string;
608
565
  pageSize?: number;
609
566
  q?: string;
610
- }): Paginator<CatalogPlatformModel.ApplicationDepartmentListingResponse>;
567
+ }): Paginator<CatalogPlatformModel.ApplicationDepartmentListingResponseSchema>;
611
568
  /**
612
569
  * @param {CatalogPlatformApplicationValidator.GetApplicationFilterKeysParam} arg
613
570
  * - Arg object
614
571
  *
615
572
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
616
573
  * @param {import("../PlatformAPIClient").Options} - Options
617
- * @returns {Promise<CatalogPlatformModel.GetQueryFiltersKeysResponse>} -
618
- * Success response
574
+ * @returns {Promise<CatalogPlatformModel.GetQueryFiltersKeysResponseSchema>}
575
+ * - Success response
576
+ *
619
577
  * @name getApplicationFilterKeys
620
578
  * @summary: List filter keys
621
579
  * @description: Retrieve the details of all applicable product filters, such as Color, Brand, and Category, indicating the criteria keys where filters can be applied. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationFilterKeys/).
622
580
  */
623
- getApplicationFilterKeys({ c, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationFilterKeysParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersKeysResponse>;
581
+ getApplicationFilterKeys({ c, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationFilterKeysParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersKeysResponseSchema>;
624
582
  /**
625
583
  * @param {CatalogPlatformApplicationValidator.GetApplicationFilterValuesParam} arg
626
584
  * - Arg object
627
585
  *
628
586
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
629
587
  * @param {import("../PlatformAPIClient").Options} - Options
630
- * @returns {Promise<CatalogPlatformModel.GetQueryFiltersValuesResponse>} -
631
- * Success response
588
+ * @returns {Promise<CatalogPlatformModel.GetQueryFiltersValuesResponseSchema>}
589
+ * - Success response
590
+ *
632
591
  * @name getApplicationFilterValues
633
592
  * @summary: List product filters
634
593
  * @description: This API is designed to retrieve the filter values for all available options within the selected filter, such as "red" for color.
635
594
  * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationFilterValues/).
636
595
  */
637
- getApplicationFilterValues({ filterKey, c, collectionId, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationFilterValuesParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersValuesResponse>;
596
+ getApplicationFilterValues({ filterKey, c, collectionId, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetApplicationFilterValuesParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersValuesResponseSchema>;
597
+ /**
598
+ * @param {CatalogPlatformApplicationValidator.GetApplicationProductsParam} arg
599
+ * - Arg object
600
+ *
601
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
602
+ * @param {import("../PlatformAPIClient").Options} - Options
603
+ * @returns {Promise<CatalogPlatformModel.ApplicationProductListingResponseSchema>}
604
+ * - Success response
605
+ *
606
+ * @name getApplicationProducts
607
+ * @summary: List sales channel products
608
+ * @description: Retrieve products associated with the sales channel. List all the products associated with a brand, collection or category in a requested sort order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getApplicationProducts/).
609
+ */
610
+ getApplicationProducts({ q, f, c, filters, isDependent, sortOn, pageId, pageSize, pageNo, pageType, itemIds, requestHeaders, }?: CatalogPlatformApplicationValidator.GetApplicationProductsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ApplicationProductListingResponseSchema>;
611
+ /**
612
+ * @param {Object} arg - Arg object.
613
+ * @param {string} arg.companyId - A `company_id` is a unique identifier for
614
+ * a particular seller account.
615
+ * @param {string} arg.applicationId - A `application_id` is a unique
616
+ * identifier for a particular sale channel.
617
+ * @param {string} [arg.q] - The search query. This can be a partial or
618
+ * complete name of a either a product, brand or category
619
+ * @param {string} [arg.f] - The search filter parameters. All the parameter
620
+ * filtered from filter parameters will be passed in **f** parameter in
621
+ * this format. **?f=brand:voi-jeans||and:::category:t-shirts||shirts**
622
+ * @param {string} [arg.c] - The search filter parameters for collection
623
+ * items. All the parameter filtered from filter parameters will be passed
624
+ * in **c** parameter in this format.
625
+ * **?c=brand:in:voi-jeans|and:::category:nin:t-shirts|shirts**
626
+ * @param {boolean} [arg.filters] - Pass `filters` parameter to fetch the
627
+ * filter details. This flag is used to fetch all filters
628
+ * @param {boolean} [arg.isDependent] - This query parameter is used to get
629
+ * the dependent products in the listing.
630
+ * @param {string} [arg.sortOn] - The order to sort the list of products on.
631
+ * The supported sort parameters are popularity, price, redemption and
632
+ * discount in either ascending or descending order. See the supported
633
+ * values below.
634
+ * @param {number} [arg.pageSize] - Number of items to retrieve in each
635
+ * page. Default is 12.
636
+ * @param {number[]} [arg.itemIds] - Item Ids of product
637
+ * @returns {Paginator<CatalogPlatformModel.ApplicationProductListingResponseSchema>}
638
+ * @summary: List sales channel products
639
+ * @description: Retrieve products associated with the sales channel. List all the products associated with a brand, collection or category in a requested sort order.
640
+ */
641
+ getApplicationProductsPaginator({ companyId, applicationId, q, f, c, filters, isDependent, sortOn, pageSize, itemIds, }?: {
642
+ companyId: string;
643
+ applicationId: string;
644
+ q?: string;
645
+ f?: string;
646
+ c?: string;
647
+ filters?: boolean;
648
+ isDependent?: boolean;
649
+ sortOn?: string;
650
+ pageSize?: number;
651
+ itemIds?: number[];
652
+ }): Paginator<CatalogPlatformModel.ApplicationProductListingResponseSchema>;
638
653
  /**
639
654
  * @param {CatalogPlatformApplicationValidator.GetAutocompleteConfigParam} arg
640
655
  * - Arg object
641
656
  *
642
657
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
643
658
  * @param {import("../PlatformAPIClient").Options} - Options
644
- * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
645
- * Success response
659
+ * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>}
660
+ * - Success response
661
+ *
646
662
  * @name getAutocompleteConfig
647
663
  * @summary: Get autocomplete configuration
648
664
  * @description: Get custom autocomplete keyword configuration for a specific sales channel which allows you to map any endpoint with these keywords to give you the ultimate suggestion results. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAutocompleteConfig/).
649
665
  */
650
- getAutocompleteConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
666
+ getAutocompleteConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>;
651
667
  /**
652
668
  * @param {CatalogPlatformApplicationValidator.GetAutocompleteKeywordDetailParam} arg
653
669
  * - Arg object
654
670
  *
655
671
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
656
672
  * @param {import("../PlatformAPIClient").Options} - Options
657
- * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
658
- * Success response
673
+ * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>}
674
+ * - Success response
675
+ *
659
676
  * @name getAutocompleteKeywordDetail
660
677
  * @summary: Get autocomplete keyword
661
678
  * @description: Retrieve detailed information about a specific autocomplete keyword for a specific sales channel by its id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getAutocompleteKeywordDetail/).
662
679
  */
663
- getAutocompleteKeywordDetail({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetAutocompleteKeywordDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
680
+ getAutocompleteKeywordDetail({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetAutocompleteKeywordDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>;
664
681
  /**
665
682
  * @param {CatalogPlatformApplicationValidator.GetCatalogConfigurationParam} arg
666
683
  * - Arg object
@@ -681,48 +698,52 @@ declare class Catalog {
681
698
  *
682
699
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
683
700
  * @param {import("../PlatformAPIClient").Options} - Options
684
- * @returns {Promise<CatalogPlatformModel.CatalogInsightResponse>} - Success response
701
+ * @returns {Promise<CatalogPlatformModel.CatalogInsightResponseSchema>} -
702
+ * Success response
685
703
  * @name getCatalogInsights
686
704
  * @summary: Get catalog counts
687
705
  * @description: Retrieve the count of catalog related data like products, brands, departments and categories that have been made live as per configuration of the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCatalogInsights/).
688
706
  */
689
- getCatalogInsights({ brand, requestHeaders }?: CatalogPlatformApplicationValidator.GetCatalogInsightsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CatalogInsightResponse>;
707
+ getCatalogInsights({ brand, requestHeaders }?: CatalogPlatformApplicationValidator.GetCatalogInsightsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CatalogInsightResponseSchema>;
690
708
  /**
691
709
  * @param {CatalogPlatformApplicationValidator.GetCategoriesParam} arg - Arg object
692
710
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
693
711
  * @param {import("../PlatformAPIClient").Options} - Options
694
- * @returns {Promise<CatalogPlatformModel.CategoryListingResponse>} - Success response
712
+ * @returns {Promise<CatalogPlatformModel.CategoryListingResponseSchema>} -
713
+ * Success response
695
714
  * @name getCategories
696
715
  * @summary: List categories
697
716
  * @description: Retrieve a list of categories associated to company and sales channel. user can filter on departments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCategories/).
698
717
  */
699
- getCategories({ department, requestHeaders }?: CatalogPlatformApplicationValidator.GetCategoriesParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CategoryListingResponse>;
718
+ getCategories({ department, requestHeaders }?: CatalogPlatformApplicationValidator.GetCategoriesParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.CategoryListingResponseSchema>;
700
719
  /**
701
720
  * @param {CatalogPlatformApplicationValidator.GetCollectionDetailParam} arg
702
721
  * - Arg object
703
722
  *
704
723
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
705
724
  * @param {import("../PlatformAPIClient").Options} - Options
706
- * @returns {Promise<CatalogPlatformModel.GetCollectionDetailResponse>} -
707
- * Success response
725
+ * @returns {Promise<CatalogPlatformModel.GetCollectionDetailResponseSchema>}
726
+ * - Success response
727
+ *
708
728
  * @name getCollectionDetail
709
729
  * @summary: Get a collection
710
730
  * @description: Get the details of a collection by its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCollectionDetail/).
711
731
  */
712
- getCollectionDetail({ slug, requestHeaders }?: CatalogPlatformApplicationValidator.GetCollectionDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionDetailResponse>;
732
+ getCollectionDetail({ slug, requestHeaders }?: CatalogPlatformApplicationValidator.GetCollectionDetailParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionDetailResponseSchema>;
713
733
  /**
714
734
  * @param {CatalogPlatformApplicationValidator.GetCollectionItemsParam} arg
715
735
  * - Arg object
716
736
  *
717
737
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
718
738
  * @param {import("../PlatformAPIClient").Options} - Options
719
- * @returns {Promise<CatalogPlatformModel.GetCollectionItemsResponse>} -
720
- * Success response
739
+ * @returns {Promise<CatalogPlatformModel.GetCollectionItemsResponseSchema>}
740
+ * - Success response
741
+ *
721
742
  * @name getCollectionItems
722
743
  * @summary: List items of collection
723
744
  * @description: Get items from a collection specified by its id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getCollectionItems/).
724
745
  */
725
- getCollectionItems({ id, sortOn, pageId, pageSize, requestHeaders }?: CatalogPlatformApplicationValidator.GetCollectionItemsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionItemsResponse>;
746
+ getCollectionItems({ id, sortOn, pageId, pageSize, requestHeaders }?: CatalogPlatformApplicationValidator.GetCollectionItemsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetCollectionItemsResponseSchema>;
726
747
  /**
727
748
  * @param {CatalogPlatformApplicationValidator.GetConfigurationByTypeParam} arg
728
749
  * - Arg object
@@ -743,13 +764,14 @@ declare class Catalog {
743
764
  *
744
765
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
745
766
  * @param {import("../PlatformAPIClient").Options} - Options
746
- * @returns {Promise<CatalogPlatformModel.GetConfigMetadataResponse>} -
747
- * Success response
767
+ * @returns {Promise<CatalogPlatformModel.GetConfigMetadataResponseSchema>}
768
+ * - Success response
769
+ *
748
770
  * @name getConfigurationMetadata
749
771
  * @summary: Get configuration metadata
750
772
  * @description: Retrieve the configuraion metadata details for specific config_type for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getConfigurationMetadata/).
751
773
  */
752
- getConfigurationMetadata({ configType, templateSlug, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetConfigurationMetadataParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigMetadataResponse>;
774
+ getConfigurationMetadata({ configType, templateSlug, pageNo, pageSize, q, requestHeaders }?: CatalogPlatformApplicationValidator.GetConfigurationMetadataParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigMetadataResponseSchema>;
753
775
  /**
754
776
  * @param {CatalogPlatformApplicationValidator.GetConfigurationsParam} arg
755
777
  * - Arg object
@@ -767,12 +789,13 @@ declare class Catalog {
767
789
  * @param {CatalogPlatformApplicationValidator.GetDepartmentsParam} arg - Arg object
768
790
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
769
791
  * @param {import("../PlatformAPIClient").Options} - Options
770
- * @returns {Promise<CatalogPlatformModel.DepartmentResponse>} - Success response
792
+ * @returns {Promise<CatalogPlatformModel.DepartmentResponseSchema>} -
793
+ * Success response
771
794
  * @name getDepartments
772
795
  * @summary: List departments
773
796
  * @description: Retrieve a list of departments associated with a comapny and sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getDepartments/).
774
797
  */
775
- getDepartments({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DepartmentResponse>;
798
+ getDepartments({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.DepartmentResponseSchema>;
776
799
  /**
777
800
  * @param {CatalogPlatformApplicationValidator.GetDiscountedInventoryBySizeIdentifierParam} arg
778
801
  * - Arg object
@@ -818,24 +841,24 @@ declare class Catalog {
818
841
  *
819
842
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
820
843
  * @param {import("../PlatformAPIClient").Options} - Options
821
- * @returns {Promise<CatalogPlatformModel.GetConfigResponse>} - Success response
844
+ * @returns {Promise<CatalogPlatformModel.GetConfigResponseSchema>} - Success response
822
845
  * @name getGroupConfigurations
823
846
  * @summary: Get group configurations
824
847
  * @description: Retrieve the details of product group configurations based on config types for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getGroupConfigurations/).
825
848
  */
826
- getGroupConfigurations({ configType, pageNo, pageSize, search, templateSlug, requestHeaders }?: CatalogPlatformApplicationValidator.GetGroupConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponse>;
849
+ getGroupConfigurations({ configType, pageNo, pageSize, search, templateSlug, requestHeaders }?: CatalogPlatformApplicationValidator.GetGroupConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponseSchema>;
827
850
  /**
828
851
  * @param {CatalogPlatformApplicationValidator.GetListingConfigurationsParam} arg
829
852
  * - Arg object
830
853
  *
831
854
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
832
855
  * @param {import("../PlatformAPIClient").Options} - Options
833
- * @returns {Promise<CatalogPlatformModel.GetConfigResponse>} - Success response
856
+ * @returns {Promise<CatalogPlatformModel.GetConfigResponseSchema>} - Success response
834
857
  * @name getListingConfigurations
835
858
  * @summary: Get listing configurations
836
859
  * @description: Retrieve product listing configurations based on specific config_type for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getListingConfigurations/).
837
860
  */
838
- getListingConfigurations({ configType, pageNo, pageSize, search, requestHeaders }?: CatalogPlatformApplicationValidator.GetListingConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponse>;
861
+ getListingConfigurations({ configType, pageNo, pageSize, search, requestHeaders }?: CatalogPlatformApplicationValidator.GetListingConfigurationsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetConfigResponseSchema>;
839
862
  /**
840
863
  * @param {CatalogPlatformApplicationValidator.GetProductDetailBySlugParam} arg
841
864
  * - Arg object
@@ -852,51 +875,54 @@ declare class Catalog {
852
875
  * @param {CatalogPlatformApplicationValidator.GetQueryFiltersParam} arg - Arg object
853
876
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
854
877
  * @param {import("../PlatformAPIClient").Options} - Options
855
- * @returns {Promise<CatalogPlatformModel.GetQueryFiltersResponse>} - Success response
878
+ * @returns {Promise<CatalogPlatformModel.GetQueryFiltersResponseSchema>} -
879
+ * Success response
856
880
  * @name getQueryFilters
857
881
  * @summary: Get collection query filters
858
882
  * @description: Retrieve query filters to configure a collection for a company and a sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getQueryFilters/).
859
883
  */
860
- getQueryFilters({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersResponse>;
884
+ getQueryFilters({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetQueryFiltersResponseSchema>;
861
885
  /**
862
886
  * @param {CatalogPlatformApplicationValidator.GetSearchConfigurationParam} arg
863
887
  * - Arg object
864
888
  *
865
889
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
866
890
  * @param {import("../PlatformAPIClient").Options} - Options
867
- * @returns {Promise<CatalogPlatformModel.GetSearchConfigurationResponse>}
891
+ * @returns {Promise<CatalogPlatformModel.GetSearchConfigurationResponseSchema>}
868
892
  * - Success response
869
893
  *
870
894
  * @name getSearchConfiguration
871
895
  * @summary: Get Search configuration
872
896
  * @description: Get search configuration for a specific company and sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchConfiguration/).
873
897
  */
874
- getSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchConfigurationResponse>;
898
+ getSearchConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchConfigurationResponseSchema>;
875
899
  /**
876
900
  * @param {CatalogPlatformApplicationValidator.GetSearchKeywordsParam} arg
877
901
  * - Arg object
878
902
  *
879
903
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
880
904
  * @param {import("../PlatformAPIClient").Options} - Options
881
- * @returns {Promise<CatalogPlatformModel.GetSearchWordsDetailResponse>} -
882
- * Success response
905
+ * @returns {Promise<CatalogPlatformModel.GetSearchWordsDetailResponseSchema>}
906
+ * - Success response
907
+ *
883
908
  * @name getSearchKeywords
884
909
  * @summary: Get search keywords
885
910
  * @description: Retrieve a list of a specific list of keywords by its id for a specific company and sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/getSearchKeywords/).
886
911
  */
887
- getSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsDetailResponse>;
912
+ getSearchKeywords({ id, requestHeaders }?: CatalogPlatformApplicationValidator.GetSearchKeywordsParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetSearchWordsDetailResponseSchema>;
888
913
  /**
889
914
  * @param {CatalogPlatformApplicationValidator.UpdateAllowSingleParam} arg
890
915
  * - Arg object
891
916
  *
892
917
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
893
918
  * @param {import("../PlatformAPIClient").Options} - Options
894
- * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
919
+ * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>} -
920
+ * Success response
895
921
  * @name updateAllowSingle
896
922
  * @summary: Update 'Allow Single' setting
897
923
  * @description: Modify allow single flag for filters of the sales channel for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAllowSingle/).
898
924
  */
899
- updateAllowSingle({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAllowSingleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
925
+ updateAllowSingle({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAllowSingleParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>;
900
926
  /**
901
927
  * @param {CatalogPlatformApplicationValidator.UpdateAppBrandParam} arg - Arg object
902
928
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -925,12 +951,12 @@ declare class Catalog {
925
951
  *
926
952
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
927
953
  * @param {import("../PlatformAPIClient").Options} - Options
928
- * @returns {Promise<CatalogPlatformModel.SuccessResponse>} - Success response
954
+ * @returns {Promise<CatalogPlatformModel.SuccessResponseSchema>} - Success response
929
955
  * @name updateAppCategoryReturnConfiguration
930
956
  * @summary: Update return Configuration
931
957
  * @description: Update Category level sales channel Return Configuration setttings - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAppCategoryReturnConfiguration/).
932
958
  */
933
- updateAppCategoryReturnConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppCategoryReturnConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponse>;
959
+ updateAppCategoryReturnConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAppCategoryReturnConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.SuccessResponseSchema>;
934
960
  /**
935
961
  * @param {CatalogPlatformApplicationValidator.UpdateAppDepartmentParam} arg
936
962
  * - Arg object
@@ -983,13 +1009,14 @@ declare class Catalog {
983
1009
  *
984
1010
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
985
1011
  * @param {import("../PlatformAPIClient").Options} - Options
986
- * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>} -
987
- * Success response
1012
+ * @returns {Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>}
1013
+ * - Success response
1014
+ *
988
1015
  * @name updateAutocompleteKeyword
989
1016
  * @summary: Update autocomplete keyword
990
1017
  * @description: Update a specific autocomplete keyword configuration by its id for a specific sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateAutocompleteKeyword/).
991
1018
  */
992
- updateAutocompleteKeyword({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponse>;
1019
+ updateAutocompleteKeyword({ id, body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateAutocompleteKeywordParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.GetAutocompleteWordsResponseSchema>;
993
1020
  /**
994
1021
  * @param {CatalogPlatformApplicationValidator.UpdateCollectionParam} arg - Arg object
995
1022
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
@@ -1006,12 +1033,13 @@ declare class Catalog {
1006
1033
  *
1007
1034
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1008
1035
  * @param {import("../PlatformAPIClient").Options} - Options
1009
- * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponse>} - Success response
1036
+ * @returns {Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>} -
1037
+ * Success response
1010
1038
  * @name updateDefaultSort
1011
1039
  * @summary: Update default sorting
1012
1040
  * @description: Modify the default sort key configuration for a company and an sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateDefaultSort/).
1013
1041
  */
1014
- updateDefaultSort({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateDefaultSortParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponse>;
1042
+ updateDefaultSort({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateDefaultSortParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.ConfigSuccessResponseSchema>;
1015
1043
  /**
1016
1044
  * @param {CatalogPlatformApplicationValidator.UpdateGroupConfigurationParam} arg
1017
1045
  * - Arg object
@@ -1042,14 +1070,14 @@ declare class Catalog {
1042
1070
  *
1043
1071
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1044
1072
  * @param {import("../PlatformAPIClient").Options} - Options
1045
- * @returns {Promise<CatalogPlatformModel.UpdateSearchConfigurationResponse>}
1073
+ * @returns {Promise<CatalogPlatformModel.UpdateSearchConfigurationResponseSchema>}
1046
1074
  * - Success response
1047
1075
  *
1048
1076
  * @name updateSearchConfiguration
1049
1077
  * @summary: Update search configuration
1050
1078
  * @description: Allows you to modify searchable attributes for an sales channel. searchable attributes are the fields on which the products are searched. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/catalog/updateSearchConfiguration/).
1051
1079
  */
1052
- updateSearchConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateSearchConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.UpdateSearchConfigurationResponse>;
1080
+ updateSearchConfiguration({ body, requestHeaders }?: CatalogPlatformApplicationValidator.UpdateSearchConfigurationParam, { responseHeaders }?: object): Promise<CatalogPlatformModel.UpdateSearchConfigurationResponseSchema>;
1053
1081
  /**
1054
1082
  * @param {CatalogPlatformApplicationValidator.UpdateSearchKeywordsParam} arg
1055
1083
  * - Arg object