@gofynd/fdk-client-javascript 1.6.4 → 3.0.0-beta.1

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 (298) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/ApplicationClient.d.ts +0 -2
  4. package/sdk/application/ApplicationClient.js +0 -2
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
  6. package/sdk/application/Cart/CartApplicationClient.js +270 -139
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +3 -3
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +197 -36
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  20. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  25. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  26. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  27. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  28. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  32. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  33. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  34. package/sdk/application/User/UserApplicationClient.js +9 -57
  35. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  36. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  37. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  41. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  42. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  43. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  44. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  45. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  46. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  47. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  48. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  49. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
  50. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
  51. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
  52. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
  53. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  54. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
  55. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  56. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  57. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  58. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  59. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  60. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  61. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  62. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  63. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  64. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  65. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  66. package/sdk/partner/PartnerClient.d.ts +6 -0
  67. package/sdk/partner/PartnerClient.js +9 -0
  68. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  69. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  70. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  71. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  72. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  73. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  74. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  75. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  76. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  77. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  78. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  79. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  80. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  81. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  82. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  83. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  84. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  85. package/sdk/partner/index.d.ts +3 -0
  86. package/sdk/partner/index.js +6 -0
  87. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  88. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  89. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  90. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  95. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  96. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  97. package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
  98. package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
  99. package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
  100. package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
  101. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
  102. package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
  103. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
  104. package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
  105. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  106. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  107. package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
  108. package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
  111. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
  112. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
  113. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
  114. package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
  115. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
  116. package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
  117. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
  118. package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
  119. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  120. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  121. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  122. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
  125. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  126. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  127. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  128. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  129. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
  130. package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
  131. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  132. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  137. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
  138. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  141. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  142. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  143. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  144. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  145. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
  146. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
  147. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  148. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  149. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
  150. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
  151. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  152. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  153. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  154. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  155. package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
  156. package/sdk/platform/Content/ContentPlatformModel.js +893 -582
  157. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  158. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  159. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  160. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  161. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  162. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  163. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  164. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  167. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  168. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  169. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  170. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  171. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  172. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  173. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  174. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  175. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  176. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  177. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  178. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  179. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  180. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  181. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  182. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  183. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  184. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  185. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  186. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  187. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  188. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  189. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  190. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  191. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  192. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  193. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  194. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  195. package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
  196. package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
  197. package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
  198. package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
  199. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  200. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  201. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  202. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  203. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  204. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  205. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  206. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  207. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  208. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  209. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  210. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  211. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
  212. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
  213. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  214. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  215. package/sdk/platform/PlatformClient.d.ts +2 -0
  216. package/sdk/platform/PlatformClient.js +4 -0
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  220. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  221. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  222. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
  231. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
  232. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
  233. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  234. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  235. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  236. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  237. package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
  238. package/sdk/platform/Share/SharePlatformModel.js +3 -43
  239. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
  240. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
  241. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
  242. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
  243. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  244. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  246. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  247. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  248. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  249. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  250. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  251. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  252. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  253. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  254. package/sdk/platform/User/UserPlatformModel.js +209 -216
  255. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  256. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  257. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  258. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  259. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  260. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  261. package/sdk/platform/index.d.ts +1 -0
  262. package/sdk/platform/index.js +2 -0
  263. package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
  264. package/sdk/public/Billing/BillingPublicClient.js +397 -0
  265. package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
  266. package/sdk/public/Billing/BillingPublicModel.js +560 -0
  267. package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
  268. package/sdk/public/Billing/BillingPublicValidator.js +50 -0
  269. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  270. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  271. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  272. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  273. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  274. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  275. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  276. package/sdk/public/Content/ContentPublicClient.js +183 -0
  277. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  278. package/sdk/public/Content/ContentPublicModel.js +47 -1
  279. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  280. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  281. package/sdk/public/PublicClient.d.ts +2 -2
  282. package/sdk/public/PublicClient.js +2 -2
  283. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  284. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  285. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  286. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  287. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  288. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  289. package/sdk/public/index.d.ts +1 -1
  290. package/sdk/public/index.js +1 -1
  291. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  292. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  293. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  294. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  295. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  296. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  297. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  298. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -9,8 +9,8 @@ declare class Configuration {
9
9
  * @param {import("../PlatformAPIClient").Options} - Options
10
10
  * @returns {Promise<ConfigurationPlatformModel.Domain>} - Success response
11
11
  * @name addDomain
12
- * @summary: Create domain
13
- * @description: Creates a domain for an sales channel. Note - Only 15 domains can be added to the sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/addDomain/).
12
+ * @summary: Add domain.
13
+ * @description: Add a new domain. Add a new domain to current sales channel, including pre-defined domain (free domain) or custom domain (owned by the brand) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/addDomain/).
14
14
  */
15
15
  addDomain({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.AddDomainParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Domain>;
16
16
  /**
@@ -19,26 +19,86 @@ declare class Configuration {
19
19
  *
20
20
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
21
21
  * @param {import("../PlatformAPIClient").Options} - Options
22
- * @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
23
- * Success response
22
+ * @returns {Promise<ConfigurationPlatformModel.DomainsResponse>} - Success response
24
23
  * @name changeDomainType
25
- * @summary: Update domain
24
+ * @summary: Change domain type.
26
25
  * @description: Modify the type of a specific domain. Primary domain is used as the URL of your website. Short link domain is comparatively smaller and used while generating short links. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/changeDomainType/).
27
26
  */
28
- changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
27
+ changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponse>;
29
28
  /**
30
- * @param {ConfigurationPlatformApplicationValidator.GetAppApiTokensParam} arg
29
+ * @param {ConfigurationPlatformApplicationValidator.CreateAppCurrencyConfigParam} arg
31
30
  * - Arg object
32
31
  *
33
32
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
34
33
  * @param {import("../PlatformAPIClient").Options} - Options
35
- * @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
34
+ * @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
36
35
  * Success response
36
+ * @name createAppCurrencyConfig
37
+ * @summary: Update application currency configuration.
38
+ * @description: Modify currency configuration settings for the application. Add and edit the currencies supported in the application. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createAppCurrencyConfig/).
39
+ */
40
+ createAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.CreateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
41
+ /**
42
+ * @param {ConfigurationPlatformApplicationValidator.CreateTokensParam} arg
43
+ * - Arg object
44
+ *
45
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
46
+ * @param {import("../PlatformAPIClient").Options} - Options
47
+ * @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
48
+ * @name createTokens
49
+ * @summary: Create tokens for application
50
+ * @description: Create new tokens for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createTokens/).
51
+ */
52
+ createTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
53
+ /**
54
+ * @param {ConfigurationPlatformApplicationValidator.CreateUrlRedirectionParam} arg
55
+ * - Arg object
56
+ *
57
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
58
+ * @param {import("../PlatformAPIClient").Options} - Options
59
+ * @returns {Promise<ConfigurationPlatformModel.UrlRedirection>} - Success response
60
+ * @name createUrlRedirection
61
+ * @summary: Create a URL redirection
62
+ * @description: Creates a new URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createUrlRedirection/).
63
+ */
64
+ createUrlRedirection({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.CreateUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
65
+ /**
66
+ * @param {ConfigurationPlatformApplicationValidator.DeleteTokenParam} arg
67
+ * - Arg object
68
+ *
69
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
70
+ * @param {import("../PlatformAPIClient").Options} - Options
71
+ * @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
72
+ * @name deleteToken
73
+ * @summary: Delete tokens for application
74
+ * @description: Delete new tokens for an application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/deleteToken/).
75
+ */
76
+ deleteToken({ token, requestHeaders }?: ConfigurationPlatformApplicationValidator.DeleteTokenParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
77
+ /**
78
+ * @param {ConfigurationPlatformApplicationValidator.DeleteUrlRedirectionParam} arg
79
+ * - Arg object
80
+ *
81
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
82
+ * @param {import("../PlatformAPIClient").Options} - Options
83
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
84
+ * Success response
85
+ * @name deleteUrlRedirection
86
+ * @summary: Delete a URL redirection
87
+ * @description: Delete a URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/deleteUrlRedirection/).
88
+ */
89
+ deleteUrlRedirection({ redirectionDomainId, requestHeaders }?: ConfigurationPlatformApplicationValidator.DeleteUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
90
+ /**
91
+ * @param {ConfigurationPlatformApplicationValidator.GetAppApiTokensParam} arg
92
+ * - Arg object
93
+ *
94
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
95
+ * @param {import("../PlatformAPIClient").Options} - Options
96
+ * @returns {Promise<ConfigurationPlatformModel.TokenResponse>} - Success response
37
97
  * @name getAppApiTokens
38
- * @summary: Get sales channel API tokens
39
- * @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppApiTokens/).
98
+ * @summary: Get application API tokens.
99
+ * @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppApiTokens/).
40
100
  */
41
- getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
101
+ getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponse>;
42
102
  /**
43
103
  * @param {ConfigurationPlatformApplicationValidator.GetAppBasicDetailsParam} arg
44
104
  * - Arg object
@@ -47,7 +107,7 @@ declare class Configuration {
47
107
  * @param {import("../PlatformAPIClient").Options} - Options
48
108
  * @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
49
109
  * @name getAppBasicDetails
50
- * @summary: Get sales channel
110
+ * @summary: Get application basic details.
51
111
  * @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppBasicDetails/).
52
112
  */
53
113
  getAppBasicDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
@@ -57,13 +117,31 @@ declare class Configuration {
57
117
  *
58
118
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
59
119
  * @param {import("../PlatformAPIClient").Options} - Options
60
- * @returns {Promise<ConfigurationPlatformModel.CompaniesResponseSchema>} -
61
- * Success response
120
+ * @returns {Promise<ConfigurationPlatformModel.CompaniesResponse>} - Success response
62
121
  * @name getAppCompanies
63
- * @summary: List sales channel companies
64
- * @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCompanies/).
65
- */
66
- getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponseSchema>;
122
+ * @summary: Get application companies.
123
+ * @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCompanies/).
124
+ */
125
+ getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponse>;
126
+ /**
127
+ * @param {Object} arg - Arg object.
128
+ * @param {number} arg.companyId - Numeric ID allotted to a business account
129
+ * on Fynd Platform
130
+ * @param {string} arg.applicationId - Alphanumeric ID allotted to an
131
+ * application (sales channel website) created within a business account
132
+ * @param {number} [arg.uid] - UID of companies to be fetched
133
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
134
+ * page. Default value is 10.
135
+ * @returns {Paginator<ConfigurationPlatformModel.CompaniesResponse>}
136
+ * @summary: Get application companies.
137
+ * @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel application
138
+ */
139
+ getAppCompaniesPaginator({ companyId, applicationId, uid, pageSize }?: {
140
+ companyId: number;
141
+ applicationId: string;
142
+ uid?: number;
143
+ pageSize?: number;
144
+ }): Paginator<ConfigurationPlatformModel.CompaniesResponse>;
67
145
  /**
68
146
  * @param {ConfigurationPlatformApplicationValidator.GetAppContactInfoParam} arg
69
147
  * - Arg object
@@ -73,8 +151,8 @@ declare class Configuration {
73
151
  * @returns {Promise<ConfigurationPlatformModel.ApplicationInformation>} -
74
152
  * Success response
75
153
  * @name getAppContactInfo
76
- * @summary: Get sales channel contact
77
- * @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppContactInfo/).
154
+ * @summary: Get application contact information.
155
+ * @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppContactInfo/).
78
156
  */
79
157
  getAppContactInfo({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
80
158
  /**
@@ -86,8 +164,8 @@ declare class Configuration {
86
164
  * @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
87
165
  * Success response
88
166
  * @name getAppCurrencyConfig
89
- * @summary: Get sales channel currency configuration
90
- * @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCurrencyConfig/).
167
+ * @summary: Get application currency configuration.
168
+ * @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCurrencyConfig/).
91
169
  */
92
170
  getAppCurrencyConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
93
171
  /**
@@ -96,91 +174,116 @@ declare class Configuration {
96
174
  *
97
175
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
98
176
  * @param {import("../PlatformAPIClient").Options} - Options
99
- * @returns {Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>}
100
- * - Success response
101
- *
177
+ * @returns {Promise<ConfigurationPlatformModel.AppFeatureResponse>} -
178
+ * Success response
102
179
  * @name getAppFeatures
103
- * @summary: Get sales channel
180
+ * @summary: Get application features.
104
181
  * @description: Shows feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppFeatures/).
105
182
  */
106
- getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>;
183
+ getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponse>;
107
184
  /**
108
185
  * @param {ConfigurationPlatformApplicationValidator.GetAppStoresParam} arg
109
186
  * - Arg object
110
187
  *
111
188
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
112
189
  * @param {import("../PlatformAPIClient").Options} - Options
113
- * @returns {Promise<ConfigurationPlatformModel.StoresResponseSchema>} -
114
- * Success response
190
+ * @returns {Promise<ConfigurationPlatformModel.StoresResponse>} - Success response
115
191
  * @name getAppStores
116
- * @summary: list sales channel stores
117
- * @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppStores/).
118
- */
119
- getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponseSchema>;
192
+ * @summary: Get application stores.
193
+ * @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppStores/).
194
+ */
195
+ getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponse>;
196
+ /**
197
+ * @param {Object} arg - Arg object.
198
+ * @param {number} arg.companyId - Numeric ID allotted to a business account
199
+ * on Fynd Platform
200
+ * @param {string} arg.applicationId - Alphanumeric ID allotted to an
201
+ * application (sales channel website) created within a business account
202
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
203
+ * page. Default value is 10.
204
+ * @returns {Paginator<ConfigurationPlatformModel.StoresResponse>}
205
+ * @summary: Get application stores.
206
+ * @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel application
207
+ */
208
+ getAppStoresPaginator({ companyId, applicationId, pageSize }?: {
209
+ companyId: number;
210
+ applicationId: string;
211
+ pageSize?: number;
212
+ }): Paginator<ConfigurationPlatformModel.StoresResponse>;
120
213
  /**
121
214
  * @param {ConfigurationPlatformApplicationValidator.GetAppSupportedCurrencyParam} arg
122
215
  * - Arg object
123
216
  *
124
217
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
125
218
  * @param {import("../PlatformAPIClient").Options} - Options
126
- * @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>}
127
- * - Success response
128
- *
219
+ * @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponse>} -
220
+ * Success response
129
221
  * @name getAppSupportedCurrency
130
- * @summary: List supported currencies
131
- * @description: Retrieve a list of supported currencies for the sales channel. A list of currencies allowed in the current sales channel. Moreover, get the name, code, symbol, and the decimal digits of the currencies. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppSupportedCurrency/).
222
+ * @summary: Get supported currencies.
223
+ * @description: Retrieve a list of supported currencies for the application. A list of currencies allowed in the current application. Moreover, get the name, code, symbol, and the decimal digits of the currencies. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppSupportedCurrency/).
132
224
  */
133
- getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>;
225
+ getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponse>;
134
226
  /**
135
227
  * @param {ConfigurationPlatformApplicationValidator.GetApplicationByIdParam} arg
136
228
  * - Arg object
137
229
  *
138
230
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
139
231
  * @param {import("../PlatformAPIClient").Options} - Options
140
- * @returns {Promise<ConfigurationPlatformModel.ApplicationById>} - Success response
232
+ * @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
141
233
  * @name getApplicationById
142
- * @summary: Get sales channel by id
143
- * @description: Retrieve detailed information about a specific sales channel. Use sales channel ID to get the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationById/).
234
+ * @summary: Get application by ID.
235
+ * @description: Retrieve detailed information about a specific application. Use application ID to get the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationById/).
144
236
  */
145
- getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationById>;
237
+ getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
146
238
  /**
147
- * @param {ConfigurationPlatformApplicationValidator.GetBuildConfigParam} arg
239
+ * @param {ConfigurationPlatformApplicationValidator.GetApplicationConfigurationParam} arg
148
240
  * - Arg object
149
241
  *
150
242
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
151
243
  * @param {import("../PlatformAPIClient").Options} - Options
152
- * @returns {Promise<ConfigurationPlatformModel.MobileAppConfiguration>} -
153
- * Success response
154
- * @name getBuildConfig
155
- * @summary: Get Build Configuration
156
- * @description: Retrieve latest build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getBuildConfig/).
244
+ * @returns {Promise<ConfigurationPlatformModel.OwnerAppConfig>} - Success response
245
+ * @name getApplicationConfiguration
246
+ * @summary: Get Application configuration.
247
+ * @description: Retrieve configuration details of inventory pricing_strategy. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationConfiguration/).
157
248
  */
158
- getBuildConfig({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
249
+ getApplicationConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OwnerAppConfig>;
159
250
  /**
160
- * @param {ConfigurationPlatformApplicationValidator.GetDomainStatusParam} arg
251
+ * @param {ConfigurationPlatformApplicationValidator.GetApplicationDomainAvailibilityParam} arg
161
252
  * - Arg object
162
253
  *
163
254
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
164
255
  * @param {import("../PlatformAPIClient").Options} - Options
165
- * @returns {Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>}
256
+ * @returns {Promise<ConfigurationPlatformModel.DomainSuggestionsResponse>}
166
257
  * - Success response
167
258
  *
259
+ * @name getApplicationDomainAvailibility
260
+ * @summary: Get domain availability.
261
+ * @description: Check the availability of a specific domain. Use this API to check the domain availability before linking it to application. Also sends domain suggestions that are similar to the queried domain. Note - Custom domain search is currently powered by GoDaddy provider. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationDomainAvailibility/).
262
+ */
263
+ getApplicationDomainAvailibility({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetApplicationDomainAvailibilityParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainSuggestionsResponse>;
264
+ /**
265
+ * @param {ConfigurationPlatformApplicationValidator.GetDomainStatusParam} arg
266
+ * - Arg object
267
+ *
268
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
269
+ * @param {import("../PlatformAPIClient").Options} - Options
270
+ * @returns {Promise<ConfigurationPlatformModel.DomainStatusResponse>} -
271
+ * Success response
168
272
  * @name getDomainStatus
169
- * @summary: Get domain status
273
+ * @summary: Get domain status.
170
274
  * @description: Retrieve the status of a specific domain. Shows if the A records and TXT records of the domain correctly points to appropriate IP on Fynd Servers. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomainStatus/).
171
275
  */
172
- getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>;
276
+ getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponse>;
173
277
  /**
174
278
  * @param {ConfigurationPlatformApplicationValidator.GetDomainsParam} arg - Arg object
175
279
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
176
280
  * @param {import("../PlatformAPIClient").Options} - Options
177
- * @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
178
- * Success response
281
+ * @returns {Promise<ConfigurationPlatformModel.DomainsResponse>} - Success response
179
282
  * @name getDomains
180
- * @summary: List domains
181
- * @description: Retrieve a list of existing domains by its sales channel id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomains/).
283
+ * @summary: Get domains.
284
+ * @description: Get list of domains. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomains/).
182
285
  */
183
- getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
286
+ getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponse>;
184
287
  /**
185
288
  * @param {ConfigurationPlatformApplicationValidator.GetInventoryConfigParam} arg
186
289
  * - Arg object
@@ -190,7 +293,7 @@ declare class Configuration {
190
293
  * @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
191
294
  * Success response
192
295
  * @name getInventoryConfig
193
- * @summary: Get inventory configuration
296
+ * @summary: Get inventory configuration.
194
297
  * @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getInventoryConfig/).
195
298
  */
196
299
  getInventoryConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
@@ -203,8 +306,8 @@ declare class Configuration {
203
306
  * @returns {Promise<ConfigurationPlatformModel.OrderingStoreConfig>} -
204
307
  * Success response
205
308
  * @name getOrderingStoreConfig
206
- * @summary: Get ordering store configuration
207
- * @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreConfig/).
309
+ * @summary: Get ordering store configuration.
310
+ * @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the application will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreConfig/).
208
311
  */
209
312
  getOrderingStoreConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoreConfig>;
210
313
  /**
@@ -213,14 +316,44 @@ declare class Configuration {
213
316
  *
214
317
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
215
318
  * @param {import("../PlatformAPIClient").Options} - Options
216
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
217
- * - Success response
218
- *
319
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
320
+ * Success response
219
321
  * @name getOrderingStoreCookie
220
- * @summary: Get ordering store signed cookie
322
+ * @summary: Get an Ordering Store signed cookie on selection of ordering store.
221
323
  * @description: Use this API to get an Ordering Store signed cookie upon selecting an ordering store. This will be used by the cart service to verify a coupon against the selected ordering store in cart. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreCookie/).
222
324
  */
223
- getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
325
+ getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
326
+ /**
327
+ * @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresParam} arg
328
+ * - Arg object
329
+ *
330
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
331
+ * @param {import("../PlatformAPIClient").Options} - Options
332
+ * @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
333
+ * @name getOrderingStores
334
+ * @summary: Get all deployment stores
335
+ * @description: Use this API to retrieve the details of all the deployment stores (the selling locations where the application will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStores/).
336
+ */
337
+ getOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
338
+ /**
339
+ * @param {Object} arg - Arg object.
340
+ * @param {number} arg.companyId - Numeric ID allotted to a business account
341
+ * on Fynd Platform
342
+ * @param {string} arg.applicationId - Alphanumeric ID allotted to an
343
+ * application (sales channel website) created within a business account
344
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
345
+ * page. Default value is 10.
346
+ * @param {string} [arg.q] - Store code or name of the ordering store.
347
+ * @returns {Paginator<ConfigurationPlatformModel.OrderingStores>}
348
+ * @summary: Get all deployment stores
349
+ * @description: Use this API to retrieve the details of all the deployment stores (the selling locations where the application will be utilized for placing orders).
350
+ */
351
+ getOrderingStoresPaginator({ companyId, applicationId, pageSize, q }?: {
352
+ companyId: number;
353
+ applicationId: string;
354
+ pageSize?: number;
355
+ q?: string;
356
+ }): Paginator<ConfigurationPlatformModel.OrderingStores>;
224
357
  /**
225
358
  * @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam} arg
226
359
  * - Arg object
@@ -229,37 +362,98 @@ declare class Configuration {
229
362
  * @param {import("../PlatformAPIClient").Options} - Options
230
363
  * @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
231
364
  * @name getOrderingStoresByFilter
232
- * @summary: List ordering stores
233
- * @description: Retrieve ordering stores based on specified filters. Use filters and retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoresByFilter/).
365
+ * @summary: Get ordering store by filter
366
+ * @description: Use this API to use filters and retrieve the details of the deployment stores (the selling locations where the application will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoresByFilter/).
234
367
  */
235
368
  getOrderingStoresByFilter({ body, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
236
369
  /**
237
- * @param {ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam} arg
370
+ * @param {Object} arg - Arg object.
371
+ * @param {number} arg.companyId - Numeric ID allotted to a business account
372
+ * on Fynd Platform
373
+ * @param {string} arg.applicationId - Alphanumeric ID allotted to an
374
+ * application (sales channel website) created within a business account
375
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
376
+ * page. Default value is 10.
377
+ * @param {ConfigurationPlatformModel.FilterOrderingStoreRequest} arg.body
378
+ * @returns {Paginator<ConfigurationPlatformModel.OrderingStores>}
379
+ * @summary: Get ordering store by filter
380
+ * @description: Use this API to use filters and retrieve the details of the deployment stores (the selling locations where the application will be utilised for placing orders).
381
+ */
382
+ getOrderingStoresByFilterPaginator({ companyId, applicationId, pageSize, body, }?: {
383
+ companyId: number;
384
+ applicationId: string;
385
+ pageSize?: number;
386
+ body: ConfigurationPlatformModel.FilterOrderingStoreRequest;
387
+ }): Paginator<ConfigurationPlatformModel.OrderingStores>;
388
+ /**
389
+ * @param {ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam} arg
238
390
  * - Arg object
239
391
  *
240
392
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
241
393
  * @param {import("../PlatformAPIClient").Options} - Options
242
- * @returns {Promise<ConfigurationPlatformModel.BuildVersionHistory>} -
394
+ * @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponse>} -
243
395
  * Success response
244
- * @name getPreviousVersions
245
- * @summary: Get previous versions
246
- * @description: Retrieve version details of the app, this includes the build status, build date, version name, latest version, and a lot more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getPreviousVersions/).
396
+ * @name getStaffOrderingStores
397
+ * @summary: Get deployment stores
398
+ * @description: Use this API to retrieve the details of all stores access given to the staff member (the selling locations where the application will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStaffOrderingStores/).
399
+ */
400
+ getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponse>;
401
+ /**
402
+ * @param {Object} arg - Arg object.
403
+ * @param {number} arg.companyId - Numeric ID allotted to a business account
404
+ * on Fynd Platform
405
+ * @param {string} arg.applicationId - Alphanumeric ID allotted to an
406
+ * application (sales channel website) created within a business account
407
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
408
+ * page. Default value is 10.
409
+ * @param {string} [arg.q] - Store code or name of the ordering store.
410
+ * @returns {Paginator<ConfigurationPlatformModel.OrderingStoresResponse>}
411
+ * @summary: Get deployment stores
412
+ * @description: Use this API to retrieve the details of all stores access given to the staff member (the selling locations where the application will be utilized for placing orders).
413
+ */
414
+ getStaffOrderingStoresPaginator({ companyId, applicationId, pageSize, q, }?: {
415
+ companyId: number;
416
+ applicationId: string;
417
+ pageSize?: number;
418
+ q?: string;
419
+ }): Paginator<ConfigurationPlatformModel.OrderingStoresResponse>;
420
+ /**
421
+ * @param {ConfigurationPlatformApplicationValidator.GetStoreDetailByIdParam} arg
422
+ * - Arg object
423
+ *
424
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
425
+ * @param {import("../PlatformAPIClient").Options} - Options
426
+ * @returns {Promise<ConfigurationPlatformModel.OrderingStore>} - Success response
427
+ * @name getStoreDetailById
428
+ * @summary: Get ordering store details
429
+ * @description: Use this API to retrieve the details of given stores uid (the selling locations where the application will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStoreDetailById/).
247
430
  */
248
- getPreviousVersions({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.BuildVersionHistory>;
431
+ getStoreDetailById({ storeId, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStoreDetailByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStore>;
249
432
  /**
250
- * @param {ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam} arg
433
+ * @param {ConfigurationPlatformApplicationValidator.GetUrlRedirectionParam} arg
251
434
  * - Arg object
252
435
  *
253
436
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
254
437
  * @param {import("../PlatformAPIClient").Options} - Options
255
- * @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>}
256
- * - Success response
438
+ * @returns {Promise<ConfigurationPlatformModel.UrlRedirection>} - Success response
439
+ * @name getUrlRedirection
440
+ * @summary: Get URL redirections
441
+ * @description: Retrieves the URL redirections for a specific application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getUrlRedirection/).
442
+ */
443
+ getUrlRedirection({ redirectionDomainId, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
444
+ /**
445
+ * @param {ConfigurationPlatformApplicationValidator.GetUrlRedirectionsParam} arg
446
+ * - Arg object
257
447
  *
258
- * @name getStaffOrderingStores
259
- * @summary: Get staff ordering stores
260
- * @description: Retrieve ordering stores accessible to staff members. Retrieve the details of all stores access given to the staff member (the selling locations where the sales channel will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStaffOrderingStores/).
448
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
449
+ * @param {import("../PlatformAPIClient").Options} - Options
450
+ * @returns {Promise<ConfigurationPlatformModel.UrlRedirectionResponse>} -
451
+ * Success response
452
+ * @name getUrlRedirections
453
+ * @summary: Get URL redirections
454
+ * @description: Retrieves the URL redirections for a specific application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getUrlRedirections/).
261
455
  */
262
- getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>;
456
+ getUrlRedirections({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirectionResponse>;
263
457
  /**
264
458
  * @param {ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam} arg
265
459
  * - Arg object
@@ -268,8 +462,8 @@ declare class Configuration {
268
462
  * @param {import("../PlatformAPIClient").Options} - Options
269
463
  * @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
270
464
  * @name modifyAppFeatures
271
- * @summary: update sales channel features
272
- * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/modifyAppFeatures/).
465
+ * @summary: Modify application features.
466
+ * @description: Update features of application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/modifyAppFeatures/).
273
467
  */
274
468
  modifyAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
275
469
  /**
@@ -281,8 +475,8 @@ declare class Configuration {
281
475
  * @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
282
476
  * Success response
283
477
  * @name partiallyUpdateInventoryConfig
284
- * @summary: Partially update inventory configuration
285
- * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
478
+ * @summary: Partially update inventory configuration.
479
+ * @description: Partially update the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
286
480
  */
287
481
  partiallyUpdateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.PartiallyUpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
288
482
  /**
@@ -291,41 +485,38 @@ declare class Configuration {
291
485
  *
292
486
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
293
487
  * @param {import("../PlatformAPIClient").Options} - Options
294
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
295
- * - Success response
296
- *
488
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
489
+ * Success response
297
490
  * @name removeDomainById
298
- * @summary: Remove domain
299
- * @description: Delete a specific domain from the sales channel. Delete a domain (secondary or shortlink domain) added to a sales channel. It will disable user's access to website, shared links, and other features associated with this domain. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeDomainById/).
491
+ * @summary: Remove domain by ID.
492
+ * @description: Delete a specific domain from the application. Delete a domain (secondary or shortlink domain) added to a sales channel. It will disable user's access to website, shared links, and other features associated with this domain. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeDomainById/).
300
493
  */
301
- removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
494
+ removeDomainById({ domainId, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
302
495
  /**
303
496
  * @param {ConfigurationPlatformApplicationValidator.RemoveOrderingStoreCookieParam} arg
304
497
  * - Arg object
305
498
  *
306
499
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
307
500
  * @param {import("../PlatformAPIClient").Options} - Options
308
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
309
- * - Success response
310
- *
501
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
502
+ * Success response
311
503
  * @name removeOrderingStoreCookie
312
- * @summary: Delete Ordering Store signed cookie
504
+ * @summary: Unset the Ordering Store signed cookie.
313
505
  * @description: Use this API to unset the Ordering Store cookie upon changing the sales channel, by its domain URL, in the Universal Fynd Store app. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeOrderingStoreCookie/).
314
506
  */
315
- removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
507
+ removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
316
508
  /**
317
509
  * @param {ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam} arg
318
510
  * - Arg object
319
511
  *
320
512
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
321
513
  * @param {import("../PlatformAPIClient").Options} - Options
322
- * @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
323
- * Success response
514
+ * @returns {Promise<ConfigurationPlatformModel.TokenResponse>} - Success response
324
515
  * @name updateAppApiTokens
325
- * @summary: Update sales channel API tokens
326
- * @description: Add and edit the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppApiTokens/).
516
+ * @summary: Update application API tokens.
517
+ * @description: Add or edit the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppApiTokens/).
327
518
  */
328
- updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
519
+ updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponse>;
329
520
  /**
330
521
  * @param {ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam} arg
331
522
  * - Arg object
@@ -334,7 +525,7 @@ declare class Configuration {
334
525
  * @param {import("../PlatformAPIClient").Options} - Options
335
526
  * @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
336
527
  * @name updateAppBasicDetails
337
- * @summary: Update sales channel basic details
528
+ * @summary: Update application basic details.
338
529
  * @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppBasicDetails/).
339
530
  */
340
531
  updateAppBasicDetails({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
@@ -347,8 +538,8 @@ declare class Configuration {
347
538
  * @returns {Promise<ConfigurationPlatformModel.ApplicationInformation>} -
348
539
  * Success response
349
540
  * @name updateAppContactInfo
350
- * @summary: Update sales channel contact
351
- * @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppContactInfo/).
541
+ * @summary: Update application contact information.
542
+ * @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppContactInfo/).
352
543
  */
353
544
  updateAppContactInfo({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppContactInfoParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
354
545
  /**
@@ -360,8 +551,8 @@ declare class Configuration {
360
551
  * @returns {Promise<ConfigurationPlatformModel.AppSupportedCurrency>} -
361
552
  * Success response
362
553
  * @name updateAppCurrencyConfig
363
- * @summary: Update sales channel currency configuration
364
- * @description: Modify currency configuration settings for the sales channel. Add and edit the currencies supported in the sales channel. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppCurrencyConfig/).
554
+ * @summary: Update application currency configuration.
555
+ * @description: Modify currency configuration settings for the application. Add and edit the currencies supported in the application. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppCurrencyConfig/).
365
556
  */
366
557
  updateAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
367
558
  /**
@@ -372,23 +563,34 @@ declare class Configuration {
372
563
  * @param {import("../PlatformAPIClient").Options} - Options
373
564
  * @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
374
565
  * @name updateAppFeatures
375
- * @summary: Update sales channel
566
+ * @summary: Update application features.
376
567
  * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppFeatures/).
377
568
  */
378
569
  updateAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
379
570
  /**
380
- * @param {ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam} arg
571
+ * @param {ConfigurationPlatformApplicationValidator.UpdateApplicationParam} arg
381
572
  * - Arg object
382
573
  *
383
574
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
384
575
  * @param {import("../PlatformAPIClient").Options} - Options
385
- * @returns {Promise<ConfigurationPlatformModel.MobileAppConfiguration>} -
386
- * Success response
387
- * @name updateBuildConfig
388
- * @summary: Update build configuration
389
- * @description: Modify the existing build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateBuildConfig/).
576
+ * @returns {Promise<ConfigurationPlatformModel.Application>} - Success response
577
+ * @name updateApplication
578
+ * @summary: Get application by ID.
579
+ * @description: Update detailed information about a specific application. Use application ID to update the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateApplication/).
390
580
  */
391
- updateBuildConfig({ platformType, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
581
+ updateApplication({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateApplicationParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Application>;
582
+ /**
583
+ * @param {ConfigurationPlatformApplicationValidator.UpdateApplicationVersionParam} arg
584
+ * - Arg object
585
+ *
586
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
587
+ * @param {import("../PlatformAPIClient").Options} - Options
588
+ * @returns {Promise<ConfigurationPlatformModel.PlatformVersion>} - Success response
589
+ * @name updateApplicationVersion
590
+ * @summary: Update Application Version
591
+ * @description: Updates the version details of an application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateApplicationVersion/).
592
+ */
593
+ updateApplicationVersion({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateApplicationVersionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.PlatformVersion>;
392
594
  /**
393
595
  * @param {ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam} arg
394
596
  * - Arg object
@@ -398,7 +600,7 @@ declare class Configuration {
398
600
  * @returns {Promise<ConfigurationPlatformModel.ApplicationInventory>} -
399
601
  * Success response
400
602
  * @name updateInventoryConfig
401
- * @summary: Update inventory configuration
603
+ * @summary: Update inventory configuration.
402
604
  * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateInventoryConfig/).
403
605
  */
404
606
  updateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
@@ -410,10 +612,23 @@ declare class Configuration {
410
612
  * @param {import("../PlatformAPIClient").Options} - Options
411
613
  * @returns {Promise<ConfigurationPlatformModel.DeploymentMeta>} - Success response
412
614
  * @name updateOrderingStoreConfig
413
- * @summary: Update ordering store configuration
414
- * @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateOrderingStoreConfig/).
615
+ * @summary: Update ordering store configuration.
616
+ * @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the application will be utilised for placing orders) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateOrderingStoreConfig/).
415
617
  */
416
618
  updateOrderingStoreConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateOrderingStoreConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DeploymentMeta>;
619
+ /**
620
+ * @param {ConfigurationPlatformApplicationValidator.UpdateUrlRedirectionParam} arg
621
+ * - Arg object
622
+ *
623
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
624
+ * @param {import("../PlatformAPIClient").Options} - Options
625
+ * @returns {Promise<ConfigurationPlatformModel.UrlRedirection>} - Success response
626
+ * @name updateUrlRedirection
627
+ * @summary: Update a URL redirection
628
+ * @description: Update a new URL redirection - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateUrlRedirection/).
629
+ */
630
+ updateUrlRedirection({ redirectionDomainId, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateUrlRedirectionParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.UrlRedirection>;
417
631
  }
418
632
  import ConfigurationPlatformApplicationValidator = require("./ConfigurationPlatformApplicationValidator");
419
633
  import ConfigurationPlatformModel = require("./ConfigurationPlatformModel");
634
+ import Paginator = require("../../common/Paginator");