@gofynd/fdk-client-javascript 1.6.4 → 3.1.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 (290) 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 +100 -80
  6. package/sdk/application/Cart/CartApplicationClient.js +257 -126
  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 +61 -21
  16. package/sdk/application/Content/ContentApplicationClient.js +250 -36
  17. package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
  18. package/sdk/application/Lead/LeadApplicationClient.js +3 -3
  19. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +106 -57
  20. package/sdk/application/Logistic/LogisticApplicationClient.js +326 -208
  21. package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
  22. package/sdk/application/Order/OrderApplicationClient.js +140 -21
  23. package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
  24. package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
  25. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
  26. package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
  27. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  28. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  29. package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
  30. package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
  31. package/sdk/application/User/UserApplicationClient.d.ts +13 -23
  32. package/sdk/application/User/UserApplicationClient.js +9 -57
  33. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
  34. package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
  35. package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
  36. package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
  37. package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
  38. package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
  39. package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
  40. package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
  41. package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
  42. package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
  43. package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
  44. package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
  45. package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
  46. package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
  47. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +0 -10
  48. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +0 -75
  49. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +1 -54
  50. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +0 -43
  51. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
  52. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +0 -6
  53. package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
  54. package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
  55. package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
  56. package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
  57. package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
  58. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
  59. package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
  60. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
  61. package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
  62. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
  63. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
  64. package/sdk/partner/PartnerClient.d.ts +6 -0
  65. package/sdk/partner/PartnerClient.js +9 -0
  66. package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
  67. package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
  68. package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
  69. package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
  70. package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
  71. package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
  72. package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
  73. package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
  74. package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
  75. package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
  76. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
  77. package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
  78. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
  79. package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
  80. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
  81. package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
  82. package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
  83. package/sdk/partner/index.d.ts +3 -0
  84. package/sdk/partner/index.js +6 -0
  85. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
  86. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
  88. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
  89. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
  90. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
  91. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
  92. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
  93. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
  94. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
  95. package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
  96. package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
  97. package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
  98. package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
  99. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
  100. package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
  101. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +251 -172
  102. package/sdk/platform/Cart/CartPlatformApplicationClient.js +639 -521
  103. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
  104. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
  105. package/sdk/platform/Cart/CartPlatformModel.d.ts +3150 -4468
  106. package/sdk/platform/Cart/CartPlatformModel.js +2858 -1867
  107. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +976 -380
  108. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6475 -2015
  109. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1083 -162
  110. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +884 -80
  111. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +325 -568
  112. package/sdk/platform/Catalog/CatalogPlatformClient.js +1162 -1562
  113. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +6008 -7688
  114. package/sdk/platform/Catalog/CatalogPlatformModel.js +9522 -6892
  115. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +234 -227
  116. package/sdk/platform/Catalog/CatalogPlatformValidator.js +183 -177
  117. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
  118. package/sdk/platform/Common/CommonPlatformClient.js +5 -6
  119. package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
  120. package/sdk/platform/Common/CommonPlatformModel.js +6 -6
  121. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -238
  122. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +876 -588
  123. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
  124. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
  125. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
  126. package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
  127. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +506 -270
  128. package/sdk/platform/Communication/CommunicationPlatformModel.js +611 -313
  129. package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
  130. package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
  131. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +78 -77
  132. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +97 -91
  133. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
  134. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
  135. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +31 -20
  136. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +25 -20
  137. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
  138. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
  139. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
  140. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
  141. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
  142. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
  143. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1206 -459
  144. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1011 -320
  145. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
  146. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
  147. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +255 -140
  148. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1095 -464
  149. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
  150. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
  151. package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
  152. package/sdk/platform/Content/ContentPlatformClient.js +459 -379
  153. package/sdk/platform/Content/ContentPlatformModel.d.ts +871 -1315
  154. package/sdk/platform/Content/ContentPlatformModel.js +940 -599
  155. package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
  156. package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
  157. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
  158. package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
  159. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
  160. package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
  161. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
  162. package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
  163. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
  164. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
  165. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
  166. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
  167. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
  168. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
  169. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
  170. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
  171. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  172. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  173. package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
  174. package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
  175. package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
  176. package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
  177. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
  178. package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
  179. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
  180. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
  181. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
  182. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
  183. package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
  184. package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
  185. package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
  186. package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
  187. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
  188. package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
  189. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
  190. package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
  191. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
  192. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
  193. package/sdk/platform/Order/OrderPlatformClient.d.ts +486 -277
  194. package/sdk/platform/Order/OrderPlatformClient.js +1491 -938
  195. package/sdk/platform/Order/OrderPlatformModel.d.ts +4560 -8636
  196. package/sdk/platform/Order/OrderPlatformModel.js +3604 -4056
  197. package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
  198. package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
  199. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
  200. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
  201. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
  202. package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
  203. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
  204. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
  205. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
  206. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
  207. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
  208. package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
  209. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3531 -1292
  210. package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1504
  211. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
  212. package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
  213. package/sdk/platform/PlatformClient.d.ts +2 -0
  214. package/sdk/platform/PlatformClient.js +4 -0
  215. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
  216. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
  217. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
  218. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
  219. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
  220. package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
  221. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
  222. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2188 -302
  223. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +394 -54
  224. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +342 -37
  225. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +150 -212
  226. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +589 -1238
  227. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3581 -2960
  228. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3730 -1779
  229. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +230 -382
  230. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +164 -287
  231. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
  232. package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
  233. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
  234. package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
  235. package/sdk/platform/Share/SharePlatformModel.d.ts +11 -50
  236. package/sdk/platform/Share/SharePlatformModel.js +5 -43
  237. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +36 -16
  238. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +201 -58
  239. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +28 -17
  240. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +33 -16
  241. package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
  242. package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
  243. package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
  244. package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
  245. package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
  246. package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
  251. package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
  252. package/sdk/platform/User/UserPlatformModel.js +209 -216
  253. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
  254. package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
  255. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
  256. package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
  257. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
  258. package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
  259. package/sdk/platform/index.d.ts +1 -0
  260. package/sdk/platform/index.js +2 -0
  261. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
  262. package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
  263. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
  264. package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
  265. package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
  266. package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
  267. package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
  268. package/sdk/public/Content/ContentPublicClient.js +183 -0
  269. package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
  270. package/sdk/public/Content/ContentPublicModel.js +47 -1
  271. package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
  272. package/sdk/public/Content/ContentPublicValidator.js +19 -0
  273. package/sdk/public/PublicClient.d.ts +0 -2
  274. package/sdk/public/PublicClient.js +0 -4
  275. package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
  276. package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
  277. package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
  278. package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
  279. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  280. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  281. package/sdk/public/index.d.ts +0 -1
  282. package/sdk/public/index.js +0 -2
  283. package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
  284. package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
  285. package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
  286. package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
  287. package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
  288. package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
  289. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
  290. package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
@@ -18,11 +18,10 @@ class Configuration {
18
18
  * @param {ConfigurationPlatformValidator.CreateApplicationParam} arg - Arg object
19
19
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
20
20
  * @param {import("../PlatformAPIClient").Options} - Options
21
- * @returns {Promise<ConfigurationPlatformModel.CreateAppResponseSchema>} -
22
- * Success response
21
+ * @returns {Promise<ConfigurationPlatformModel.CreateAppResponse>} - Success response
23
22
  * @name createApplication
24
- * @summary: Create sales channel
25
- * @description: Generate and add a new sales channel. sales channels are sales channel websites which can be configured, personalized and customized. Use this API to create a new sales channel in the current company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createApplication/).
23
+ * @summary: Create application.
24
+ * @description: Generate and add a new application. Applications are sales channel websites which can be configured, personalized and customized. Use this API to create a new application in the current company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/createApplication/).
26
25
  */
27
26
  async createApplication(
28
27
  { body, requestHeaders } = { requestHeaders: {} },
@@ -77,10 +76,89 @@ class Configuration {
77
76
 
78
77
  const {
79
78
  error: res_error,
80
- } = ConfigurationPlatformModel.CreateAppResponseSchema().validate(
81
- responseData,
79
+ } = ConfigurationPlatformModel.CreateAppResponse().validate(responseData, {
80
+ abortEarly: false,
81
+ allowUnknown: true,
82
+ });
83
+
84
+ if (res_error) {
85
+ if (this.config.options.strictResponseCheck === true) {
86
+ return Promise.reject(new FDKResponseValidationError(res_error));
87
+ } else {
88
+ Logger({
89
+ level: "WARN",
90
+ message: `Response Validation Warnings for platform > Configuration > createApplication \n ${res_error}`,
91
+ });
92
+ }
93
+ }
94
+
95
+ return response;
96
+ }
97
+
98
+ /**
99
+ * @param {ConfigurationPlatformValidator.CreateCurrencyParam} arg - Arg object
100
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
101
+ * @param {import("../PlatformAPIClient").Options} - Options
102
+ * @returns {Promise<ConfigurationPlatformModel.Currency>} - Success response
103
+ * @name createCurrency
104
+ * @summary: Get currencies.
105
+ * @description: Retrieve a list of available currencies. Use this API to get a list of currencies allowed in the company. 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/createCurrency/).
106
+ */
107
+ async createCurrency(
108
+ { body, requestHeaders } = { requestHeaders: {} },
109
+ { responseHeaders } = { responseHeaders: false }
110
+ ) {
111
+ const { error } = ConfigurationPlatformValidator.createCurrency().validate(
112
+ {
113
+ body,
114
+ },
82
115
  { abortEarly: false, allowUnknown: true }
83
116
  );
117
+ if (error) {
118
+ return Promise.reject(new FDKClientValidationError(error));
119
+ }
120
+
121
+ // Showing warrnings if extra unknown parameters are found
122
+ const {
123
+ error: warrning,
124
+ } = ConfigurationPlatformValidator.createCurrency().validate(
125
+ {
126
+ body,
127
+ },
128
+ { abortEarly: false, allowUnknown: false }
129
+ );
130
+ if (warrning) {
131
+ Logger({
132
+ level: "WARN",
133
+ message: `Parameter Validation warrnings for platform > Configuration > createCurrency \n ${warrning}`,
134
+ });
135
+ }
136
+
137
+ const query_params = {};
138
+
139
+ const xHeaders = {};
140
+
141
+ const response = await PlatformAPIClient.execute(
142
+ this.config,
143
+ "post",
144
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/currencies`,
145
+ query_params,
146
+ body,
147
+ { ...xHeaders, ...requestHeaders },
148
+ { responseHeaders }
149
+ );
150
+
151
+ let responseData = response;
152
+ if (responseHeaders) {
153
+ responseData = response[0];
154
+ }
155
+
156
+ const {
157
+ error: res_error,
158
+ } = ConfigurationPlatformModel.Currency().validate(responseData, {
159
+ abortEarly: false,
160
+ allowUnknown: true,
161
+ });
84
162
 
85
163
  if (res_error) {
86
164
  if (this.config.options.strictResponseCheck === true) {
@@ -88,7 +166,7 @@ class Configuration {
88
166
  } else {
89
167
  Logger({
90
168
  level: "WARN",
91
- message: `Response Validation Warnings for platform > Configuration > createApplication \n ${res_error}`,
169
+ message: `Response Validation Warnings for platform > Configuration > createCurrency \n ${res_error}`,
92
170
  });
93
171
  }
94
172
  }
@@ -100,12 +178,11 @@ class Configuration {
100
178
  * @param {ConfigurationPlatformValidator.GetApplicationsParam} arg - Arg object
101
179
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
102
180
  * @param {import("../PlatformAPIClient").Options} - Options
103
- * @returns {Promise<ConfigurationPlatformModel.ApplicationsResponseSchema>}
104
- * - Success response
105
- *
181
+ * @returns {Promise<ConfigurationPlatformModel.ApplicationsResponse>} -
182
+ * Success response
106
183
  * @name getApplications
107
- * @summary: List sales channel stores
108
- * @description: Retrieve a list of available sales channels. sales channels are sales channel websites which can be configured, personalized and customised. Use this API to fetch a list of sales channels created within a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplications/).
184
+ * @summary: Get applications.
185
+ * @description: Retrieve a list of available applications. Applications are sales channel websites which can be configured, personalized and customised. Use this API to fetch a list of applications created within a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplications/).
109
186
  */
110
187
  async getApplications(
111
188
  { pageNo, pageSize, q, requestHeaders } = { requestHeaders: {} },
@@ -165,7 +242,7 @@ class Configuration {
165
242
 
166
243
  const {
167
244
  error: res_error,
168
- } = ConfigurationPlatformModel.ApplicationsResponseSchema().validate(
245
+ } = ConfigurationPlatformModel.ApplicationsResponse().validate(
169
246
  responseData,
170
247
  { abortEarly: false, allowUnknown: true }
171
248
  );
@@ -184,16 +261,44 @@ class Configuration {
184
261
  return response;
185
262
  }
186
263
 
264
+ /**
265
+ * @param {Object} arg - Arg object.
266
+ * @param {number} [arg.pageSize] -
267
+ * @param {string} [arg.q] - Search param by name or domain
268
+ * @returns {Paginator<ConfigurationPlatformModel.ApplicationsResponse>}
269
+ * @summary: Get applications.
270
+ * @description: Retrieve a list of available applications. Applications are sales channel websites which can be configured, personalized and customised. Use this API to fetch a list of applications created within a company.
271
+ */
272
+ getApplicationsPaginator({ pageSize, q } = {}) {
273
+ const paginator = new Paginator();
274
+ const callback = async () => {
275
+ const pageId = paginator.nextId;
276
+ const pageNo = paginator.pageNo;
277
+ const pageType = "number";
278
+ const data = await this.getApplications({
279
+ pageNo: pageNo,
280
+ pageSize: pageSize,
281
+ q: q,
282
+ });
283
+ paginator.setPaginator({
284
+ hasNext: data.page.has_next ? true : false,
285
+ nextId: data.page.next_id,
286
+ });
287
+ return data;
288
+ };
289
+ paginator.setCallback(callback.bind(this));
290
+ return paginator;
291
+ }
292
+
187
293
  /**
188
294
  * @param {ConfigurationPlatformValidator.GetBrandsByCompanyParam} arg - Arg object
189
295
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
190
296
  * @param {import("../PlatformAPIClient").Options} - Options
191
- * @returns {Promise<ConfigurationPlatformModel.BrandsByCompanyResponseSchema>}
192
- * - Success response
193
- *
297
+ * @returns {Promise<ConfigurationPlatformModel.BrandsByCompanyResponse>} -
298
+ * Success response
194
299
  * @name getBrandsByCompany
195
- * @summary: List brands by company
196
- * @description: Retrieve all the brands added in a company. Get all the brand names, along with URLs of their logo, banner, and portrait image. can be searched on brand_name. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getBrandsByCompany/).
300
+ * @summary: Get brands by company.
301
+ * @description: Retrieve all the brands added in a company. Get all the brand names, along with URLs of their logo, banner, and portrait image. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getBrandsByCompany/).
197
302
  */
198
303
  async getBrandsByCompany(
199
304
  { q, requestHeaders } = { requestHeaders: {} },
@@ -249,7 +354,7 @@ class Configuration {
249
354
 
250
355
  const {
251
356
  error: res_error,
252
- } = ConfigurationPlatformModel.BrandsByCompanyResponseSchema().validate(
357
+ } = ConfigurationPlatformModel.BrandsByCompanyResponse().validate(
253
358
  responseData,
254
359
  { abortEarly: false, allowUnknown: true }
255
360
  );
@@ -272,12 +377,11 @@ class Configuration {
272
377
  * @param {ConfigurationPlatformValidator.GetCompanyByBrandsParam} arg - Arg object
273
378
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
274
379
  * @param {import("../PlatformAPIClient").Options} - Options
275
- * @returns {Promise<ConfigurationPlatformModel.CompanyByBrandsResponseSchema>}
276
- * - Success response
277
- *
380
+ * @returns {Promise<ConfigurationPlatformModel.CompanyByBrandsResponse>} -
381
+ * Success response
278
382
  * @name getCompanyByBrands
279
- * @summary: List companies by brand
280
- * @description: Retrieve a paginated list of companies associated with specific brands. Can be searched using the brand ID and company name - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getCompanyByBrands/).
383
+ * @summary: Get company by brands.
384
+ * @description: Retrieve companies associated with specific brands. Retrieve a list of companies by the brands they deal. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getCompanyByBrands/).
281
385
  */
282
386
  async getCompanyByBrands(
283
387
  { body, pageNo, pageSize, requestHeaders } = { requestHeaders: {} },
@@ -338,7 +442,7 @@ class Configuration {
338
442
 
339
443
  const {
340
444
  error: res_error,
341
- } = ConfigurationPlatformModel.CompanyByBrandsResponseSchema().validate(
445
+ } = ConfigurationPlatformModel.CompanyByBrandsResponse().validate(
342
446
  responseData,
343
447
  { abortEarly: false, allowUnknown: true }
344
448
  );
@@ -357,16 +461,45 @@ class Configuration {
357
461
  return response;
358
462
  }
359
463
 
464
+ /**
465
+ * @param {Object} arg - Arg object.
466
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
467
+ * page. Default value is 10.
468
+ * @param {ConfigurationPlatformModel.CompanyByBrandsRequest} arg.body
469
+ * @returns {Paginator<ConfigurationPlatformModel.CompanyByBrandsResponse>}
470
+ * @summary: Get company by brands.
471
+ * @description: Retrieve companies associated with specific brands. Retrieve a list of companies by the brands they deal.
472
+ */
473
+ getCompanyByBrandsPaginator({ pageSize, body } = {}) {
474
+ const paginator = new Paginator();
475
+ const callback = async () => {
476
+ const pageId = paginator.nextId;
477
+ const pageNo = paginator.pageNo;
478
+ const pageType = "number";
479
+ const data = await this.getCompanyByBrands({
480
+ body: body,
481
+ pageNo: pageNo,
482
+ pageSize: pageSize,
483
+ });
484
+ paginator.setPaginator({
485
+ hasNext: data.page.has_next ? true : false,
486
+ nextId: data.page.next_id,
487
+ });
488
+ return data;
489
+ };
490
+ paginator.setCallback(callback.bind(this));
491
+ return paginator;
492
+ }
493
+
360
494
  /**
361
495
  * @param {ConfigurationPlatformValidator.GetCurrenciesParam} arg - Arg object
362
496
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
363
497
  * @param {import("../PlatformAPIClient").Options} - Options
364
- * @returns {Promise<ConfigurationPlatformModel.CurrenciesResponseSchema>}
365
- * - Success response
366
- *
498
+ * @returns {Promise<ConfigurationPlatformModel.CurrenciesResponse>} -
499
+ * Success response
367
500
  * @name getCurrencies
368
- * @summary: List currencies
369
- * @description: Retrieve a list of available currencies. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getCurrencies/).
501
+ * @summary: Get currencies.
502
+ * @description: Retrieve a list of available currencies. Use this API to get a list of currencies allowed in the company. 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/getCurrencies/).
370
503
  */
371
504
  async getCurrencies(
372
505
  { requestHeaders } = { requestHeaders: {} },
@@ -415,10 +548,10 @@ class Configuration {
415
548
 
416
549
  const {
417
550
  error: res_error,
418
- } = ConfigurationPlatformModel.CurrenciesResponseSchema().validate(
419
- responseData,
420
- { abortEarly: false, allowUnknown: true }
421
- );
551
+ } = ConfigurationPlatformModel.CurrenciesResponse().validate(responseData, {
552
+ abortEarly: false,
553
+ allowUnknown: true,
554
+ });
422
555
 
423
556
  if (res_error) {
424
557
  if (this.config.options.strictResponseCheck === true) {
@@ -435,34 +568,21 @@ class Configuration {
435
568
  }
436
569
 
437
570
  /**
438
- * @param {ConfigurationPlatformValidator.GetCurrencyExchangeRatesParam} arg
439
- * - Arg object
440
- *
571
+ * @param {ConfigurationPlatformValidator.GetCurrencyParam} arg - Arg object
441
572
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
442
573
  * @param {import("../PlatformAPIClient").Options} - Options
443
- * @returns {Promise<ConfigurationPlatformModel.CurrencyExchangeResponseV2>}
444
- * - Success response
445
- *
446
- * @name getCurrencyExchangeRates
447
- * @summary: Get currency exchange rates
448
- * @description: Retrieve a list of currency exchange rates, relative to a provided currency. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getCurrencyExchangeRates/).
574
+ * @returns {Promise<ConfigurationPlatformModel.Currency>} - Success response
575
+ * @name getCurrency
576
+ * @summary: Get currencies.
577
+ * @description: Retrieve a list of available currencies. Use this API to get a list of currencies allowed in the company. 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/getCurrency/).
449
578
  */
450
- async getCurrencyExchangeRates(
451
- {
452
- currencyCode,
453
- exchangeCurrencyCode,
454
- exchangeCountryCode,
455
- requestHeaders,
456
- } = { requestHeaders: {} },
579
+ async getCurrency(
580
+ { id, requestHeaders } = { requestHeaders: {} },
457
581
  { responseHeaders } = { responseHeaders: false }
458
582
  ) {
459
- const {
460
- error,
461
- } = ConfigurationPlatformValidator.getCurrencyExchangeRates().validate(
583
+ const { error } = ConfigurationPlatformValidator.getCurrency().validate(
462
584
  {
463
- currencyCode,
464
- exchangeCurrencyCode,
465
- exchangeCountryCode,
585
+ id,
466
586
  },
467
587
  { abortEarly: false, allowUnknown: true }
468
588
  );
@@ -473,32 +593,27 @@ class Configuration {
473
593
  // Showing warrnings if extra unknown parameters are found
474
594
  const {
475
595
  error: warrning,
476
- } = ConfigurationPlatformValidator.getCurrencyExchangeRates().validate(
596
+ } = ConfigurationPlatformValidator.getCurrency().validate(
477
597
  {
478
- currencyCode,
479
- exchangeCurrencyCode,
480
- exchangeCountryCode,
598
+ id,
481
599
  },
482
600
  { abortEarly: false, allowUnknown: false }
483
601
  );
484
602
  if (warrning) {
485
603
  Logger({
486
604
  level: "WARN",
487
- message: `Parameter Validation warrnings for platform > Configuration > getCurrencyExchangeRates \n ${warrning}`,
605
+ message: `Parameter Validation warrnings for platform > Configuration > getCurrency \n ${warrning}`,
488
606
  });
489
607
  }
490
608
 
491
609
  const query_params = {};
492
- query_params["currency_code"] = currencyCode;
493
- query_params["exchange_currency_code"] = exchangeCurrencyCode;
494
- query_params["exchange_country_code"] = exchangeCountryCode;
495
610
 
496
611
  const xHeaders = {};
497
612
 
498
613
  const response = await PlatformAPIClient.execute(
499
614
  this.config,
500
615
  "get",
501
- `/service/platform/configuration/v2.0/company/${this.config.companyId}/currency-exchange`,
616
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/currencies/${id}`,
502
617
  query_params,
503
618
  undefined,
504
619
  { ...xHeaders, ...requestHeaders },
@@ -512,10 +627,10 @@ class Configuration {
512
627
 
513
628
  const {
514
629
  error: res_error,
515
- } = ConfigurationPlatformModel.CurrencyExchangeResponseV2().validate(
516
- responseData,
517
- { abortEarly: false, allowUnknown: true }
518
- );
630
+ } = ConfigurationPlatformModel.Currency().validate(responseData, {
631
+ abortEarly: false,
632
+ allowUnknown: true,
633
+ });
519
634
 
520
635
  if (res_error) {
521
636
  if (this.config.options.strictResponseCheck === true) {
@@ -523,7 +638,7 @@ class Configuration {
523
638
  } else {
524
639
  Logger({
525
640
  level: "WARN",
526
- message: `Response Validation Warnings for platform > Configuration > getCurrencyExchangeRates \n ${res_error}`,
641
+ message: `Response Validation Warnings for platform > Configuration > getCurrency \n ${res_error}`,
527
642
  });
528
643
  }
529
644
  }
@@ -535,12 +650,12 @@ class Configuration {
535
650
  * @param {ConfigurationPlatformValidator.GetDomainAvailibilityParam} arg - Arg object
536
651
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
537
652
  * @param {import("../PlatformAPIClient").Options} - Options
538
- * @returns {Promise<ConfigurationPlatformModel.DomainSuggestionsResponseSchema>}
653
+ * @returns {Promise<ConfigurationPlatformModel.DomainSuggestionsResponse>}
539
654
  * - Success response
540
655
  *
541
656
  * @name getDomainAvailibility
542
- * @summary: List suggestion domain
543
- * @description: Check the availability of a specific domain. Use this API to check the domain availability before linking it to sales channel. 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/getDomainAvailibility/).
657
+ * @summary: Get domain availability.
658
+ * @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/getDomainAvailibility/).
544
659
  */
545
660
  async getDomainAvailibility(
546
661
  { body, requestHeaders } = { requestHeaders: {} },
@@ -595,7 +710,7 @@ class Configuration {
595
710
 
596
711
  const {
597
712
  error: res_error,
598
- } = ConfigurationPlatformModel.DomainSuggestionsResponseSchema().validate(
713
+ } = ConfigurationPlatformModel.DomainSuggestionsResponse().validate(
599
714
  responseData,
600
715
  { abortEarly: false, allowUnknown: true }
601
716
  );
@@ -614,28 +729,189 @@ class Configuration {
614
729
  return response;
615
730
  }
616
731
 
732
+ /**
733
+ * @param {ConfigurationPlatformValidator.GetDomainOptionsParam} arg - Arg object
734
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
735
+ * @param {import("../PlatformAPIClient").Options} - Options
736
+ * @returns {Promise<ConfigurationPlatformModel.DomainOptionsResponse>} -
737
+ * Success response
738
+ * @name getDomainOptions
739
+ * @summary: Get domain options
740
+ * @description: Fetches the list of available domain types and network information - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomainOptions/).
741
+ */
742
+ async getDomainOptions(
743
+ { requestHeaders } = { requestHeaders: {} },
744
+ { responseHeaders } = { responseHeaders: false }
745
+ ) {
746
+ const {
747
+ error,
748
+ } = ConfigurationPlatformValidator.getDomainOptions().validate(
749
+ {},
750
+ { abortEarly: false, allowUnknown: true }
751
+ );
752
+ if (error) {
753
+ return Promise.reject(new FDKClientValidationError(error));
754
+ }
755
+
756
+ // Showing warrnings if extra unknown parameters are found
757
+ const {
758
+ error: warrning,
759
+ } = ConfigurationPlatformValidator.getDomainOptions().validate(
760
+ {},
761
+ { abortEarly: false, allowUnknown: false }
762
+ );
763
+ if (warrning) {
764
+ Logger({
765
+ level: "WARN",
766
+ message: `Parameter Validation warrnings for platform > Configuration > getDomainOptions \n ${warrning}`,
767
+ });
768
+ }
769
+
770
+ const query_params = {};
771
+
772
+ const xHeaders = {};
773
+
774
+ const response = await PlatformAPIClient.execute(
775
+ this.config,
776
+ "get",
777
+ `/service/platform/configuration/v2.0/company/${this.config.companyId}/domain/options`,
778
+ query_params,
779
+ undefined,
780
+ { ...xHeaders, ...requestHeaders },
781
+ { responseHeaders }
782
+ );
783
+
784
+ let responseData = response;
785
+ if (responseHeaders) {
786
+ responseData = response[0];
787
+ }
788
+
789
+ const {
790
+ error: res_error,
791
+ } = ConfigurationPlatformModel.DomainOptionsResponse().validate(
792
+ responseData,
793
+ { abortEarly: false, allowUnknown: true }
794
+ );
795
+
796
+ if (res_error) {
797
+ if (this.config.options.strictResponseCheck === true) {
798
+ return Promise.reject(new FDKResponseValidationError(res_error));
799
+ } else {
800
+ Logger({
801
+ level: "WARN",
802
+ message: `Response Validation Warnings for platform > Configuration > getDomainOptions \n ${res_error}`,
803
+ });
804
+ }
805
+ }
806
+
807
+ return response;
808
+ }
809
+
810
+ /**
811
+ * @param {ConfigurationPlatformValidator.GetLocationsParam} arg - Arg object
812
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
813
+ * @param {import("../PlatformAPIClient").Options} - Options
814
+ * @returns {Promise<ConfigurationPlatformModel.Locations>} - Success response
815
+ * @name getLocations
816
+ * @summary: Get countries, states, cities
817
+ * @description: Get Location configuration - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getLocations/).
818
+ */
819
+ async getLocations(
820
+ { locationType, id, requestHeaders } = { requestHeaders: {} },
821
+ { responseHeaders } = { responseHeaders: false }
822
+ ) {
823
+ const { error } = ConfigurationPlatformValidator.getLocations().validate(
824
+ {
825
+ locationType,
826
+ id,
827
+ },
828
+ { abortEarly: false, allowUnknown: true }
829
+ );
830
+ if (error) {
831
+ return Promise.reject(new FDKClientValidationError(error));
832
+ }
833
+
834
+ // Showing warrnings if extra unknown parameters are found
835
+ const {
836
+ error: warrning,
837
+ } = ConfigurationPlatformValidator.getLocations().validate(
838
+ {
839
+ locationType,
840
+ id,
841
+ },
842
+ { abortEarly: false, allowUnknown: false }
843
+ );
844
+ if (warrning) {
845
+ Logger({
846
+ level: "WARN",
847
+ message: `Parameter Validation warrnings for platform > Configuration > getLocations \n ${warrning}`,
848
+ });
849
+ }
850
+
851
+ const query_params = {};
852
+ query_params["location_type"] = locationType;
853
+ query_params["id"] = id;
854
+
855
+ const xHeaders = {};
856
+
857
+ const response = await PlatformAPIClient.execute(
858
+ this.config,
859
+ "get",
860
+ `/service/platform/configuration/v2.0/company/${this.config.companyId}/locations`,
861
+ query_params,
862
+ undefined,
863
+ { ...xHeaders, ...requestHeaders },
864
+ { responseHeaders }
865
+ );
866
+
867
+ let responseData = response;
868
+ if (responseHeaders) {
869
+ responseData = response[0];
870
+ }
871
+
872
+ const {
873
+ error: res_error,
874
+ } = ConfigurationPlatformModel.Locations().validate(responseData, {
875
+ abortEarly: false,
876
+ allowUnknown: true,
877
+ });
878
+
879
+ if (res_error) {
880
+ if (this.config.options.strictResponseCheck === true) {
881
+ return Promise.reject(new FDKResponseValidationError(res_error));
882
+ } else {
883
+ Logger({
884
+ level: "WARN",
885
+ message: `Response Validation Warnings for platform > Configuration > getLocations \n ${res_error}`,
886
+ });
887
+ }
888
+ }
889
+
890
+ return response;
891
+ }
892
+
617
893
  /**
618
894
  * @param {ConfigurationPlatformValidator.GetOtherSellerApplicationByIdParam} arg
619
895
  * - Arg object
620
896
  *
621
897
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
622
898
  * @param {import("../PlatformAPIClient").Options} - Options
623
- * @returns {Promise<ConfigurationPlatformModel.OptedApplicationResponseSchema>}
899
+ * @returns {Promise<ConfigurationPlatformModel.OptedApplicationResponse>}
624
900
  * - Success response
625
901
  *
626
902
  * @name getOtherSellerApplicationById
627
- * @summary: Get others sales. channel
628
- * @description: Retrieve details of a seller sales channel that was not created within the current company but has opted for the current company's inventory and searched via the sales channel ID of another sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOtherSellerApplicationById/).
903
+ * @summary: Get other seller application by ID.
904
+ * @description: Retrieve details of a seller application that was not created within the current company. but has opted for the current company's inventory - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOtherSellerApplicationById/).
629
905
  */
630
906
  async getOtherSellerApplicationById(
631
- { id, requestHeaders } = { requestHeaders: {} },
907
+ { appId, requestHeaders } = { requestHeaders: {} },
632
908
  { responseHeaders } = { responseHeaders: false }
633
909
  ) {
634
910
  const {
635
911
  error,
636
912
  } = ConfigurationPlatformValidator.getOtherSellerApplicationById().validate(
637
913
  {
638
- id,
914
+ appId,
639
915
  },
640
916
  { abortEarly: false, allowUnknown: true }
641
917
  );
@@ -648,7 +924,7 @@ class Configuration {
648
924
  error: warrning,
649
925
  } = ConfigurationPlatformValidator.getOtherSellerApplicationById().validate(
650
926
  {
651
- id,
927
+ appId,
652
928
  },
653
929
  { abortEarly: false, allowUnknown: false }
654
930
  );
@@ -666,7 +942,7 @@ class Configuration {
666
942
  const response = await PlatformAPIClient.execute(
667
943
  this.config,
668
944
  "get",
669
- `/service/platform/configuration/v1.0/company/${this.config.companyId}/other-seller-applications/${id}`,
945
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/other-seller-applications/${appId}`,
670
946
  query_params,
671
947
  undefined,
672
948
  { ...xHeaders, ...requestHeaders },
@@ -680,7 +956,7 @@ class Configuration {
680
956
 
681
957
  const {
682
958
  error: res_error,
683
- } = ConfigurationPlatformModel.OptedApplicationResponseSchema().validate(
959
+ } = ConfigurationPlatformModel.OptedApplicationResponse().validate(
684
960
  responseData,
685
961
  { abortEarly: false, allowUnknown: true }
686
962
  );
@@ -708,8 +984,8 @@ class Configuration {
708
984
  * @returns {Promise<ConfigurationPlatformModel.OtherSellerApplications>} -
709
985
  * Success response
710
986
  * @name getOtherSellerApplications
711
- * @summary: Get other sales channel
712
- * @description: Retrieve sales channels of other sellers. Retrieve all other seller sales channels that were not created within the current company. but have opted for the current company's inventory. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOtherSellerApplications/).
987
+ * @summary: Get other seller applications.
988
+ * @description: Retrieve applications from other sellers. Retrieve all other seller applications that were not created within the current company. but have opted for the current company's inventory. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOtherSellerApplications/).
713
989
  */
714
990
  async getOtherSellerApplications(
715
991
  { pageNo, pageSize, requestHeaders } = { requestHeaders: {} },
@@ -787,16 +1063,43 @@ class Configuration {
787
1063
  return response;
788
1064
  }
789
1065
 
1066
+ /**
1067
+ * @param {Object} arg - Arg object.
1068
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
1069
+ * page. Default value is 10.
1070
+ * @returns {Paginator<ConfigurationPlatformModel.OtherSellerApplications>}
1071
+ * @summary: Get other seller applications.
1072
+ * @description: Retrieve applications from other sellers. Retrieve all other seller applications that were not created within the current company. but have opted for the current company's inventory.
1073
+ */
1074
+ getOtherSellerApplicationsPaginator({ pageSize } = {}) {
1075
+ const paginator = new Paginator();
1076
+ const callback = async () => {
1077
+ const pageId = paginator.nextId;
1078
+ const pageNo = paginator.pageNo;
1079
+ const pageType = "number";
1080
+ const data = await this.getOtherSellerApplications({
1081
+ pageNo: pageNo,
1082
+ pageSize: pageSize,
1083
+ });
1084
+ paginator.setPaginator({
1085
+ hasNext: data.page.has_next ? true : false,
1086
+ nextId: data.page.next_id,
1087
+ });
1088
+ return data;
1089
+ };
1090
+ paginator.setCallback(callback.bind(this));
1091
+ return paginator;
1092
+ }
1093
+
790
1094
  /**
791
1095
  * @param {ConfigurationPlatformValidator.GetStoreByBrandsParam} arg - Arg object
792
1096
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
793
1097
  * @param {import("../PlatformAPIClient").Options} - Options
794
- * @returns {Promise<ConfigurationPlatformModel.StoreByBrandsResponseSchema>}
795
- * - Success response
796
- *
1098
+ * @returns {Promise<ConfigurationPlatformModel.StoreByBrandsResponse>} -
1099
+ * Success response
797
1100
  * @name getStoreByBrands
798
- * @summary: Get store by brands
799
- * @description: Retrieve stores associated with specific brands. Retrieve a list of selling locations (stores) by the brands they deal. Store has information about store name, store type, store code, store address, and company detail. filtering can be done on brand id and brand names - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStoreByBrands/).
1101
+ * @summary: Get stores by brand uids for the current company
1102
+ * @description: Use this API to get a list of selling locations (stores) by the brands they deal. Store has information about store name, store type, store code, store address, and company detail. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStoreByBrands/).
800
1103
  */
801
1104
  async getStoreByBrands(
802
1105
  { body, pageNo, pageSize, requestHeaders } = { requestHeaders: {} },
@@ -843,7 +1146,7 @@ class Configuration {
843
1146
  const response = await PlatformAPIClient.execute(
844
1147
  this.config,
845
1148
  "post",
846
- `/service/platform/configuration/v1.0/company/${this.config.companyId}/inventory/stores-by-brands`,
1149
+ `/service/platform/configuration/v2.0/company/${this.config.companyId}/inventory/stores-by-brands`,
847
1150
  query_params,
848
1151
  body,
849
1152
  { ...xHeaders, ...requestHeaders },
@@ -857,7 +1160,7 @@ class Configuration {
857
1160
 
858
1161
  const {
859
1162
  error: res_error,
860
- } = ConfigurationPlatformModel.StoreByBrandsResponseSchema().validate(
1163
+ } = ConfigurationPlatformModel.StoreByBrandsResponse().validate(
861
1164
  responseData,
862
1165
  { abortEarly: false, allowUnknown: true }
863
1166
  );
@@ -876,26 +1179,136 @@ class Configuration {
876
1179
  return response;
877
1180
  }
878
1181
 
1182
+ /**
1183
+ * @param {Object} arg - Arg object.
1184
+ * @param {number} [arg.pageSize] - The number of items to retrieve in each
1185
+ * page. Default value is 10.
1186
+ * @param {ConfigurationPlatformModel.StoreByBrandsRequest} arg.body
1187
+ * @returns {Paginator<ConfigurationPlatformModel.StoreByBrandsResponse>}
1188
+ * @summary: Get stores by brand uids for the current company
1189
+ * @description: Use this API to get a list of selling locations (stores) by the brands they deal. Store has information about store name, store type, store code, store address, and company detail.
1190
+ */
1191
+ getStoreByBrandsPaginator({ pageSize, body } = {}) {
1192
+ const paginator = new Paginator();
1193
+ const callback = async () => {
1194
+ const pageId = paginator.nextId;
1195
+ const pageNo = paginator.pageNo;
1196
+ const pageType = "number";
1197
+ const data = await this.getStoreByBrands({
1198
+ body: body,
1199
+ pageNo: pageNo,
1200
+ pageSize: pageSize,
1201
+ });
1202
+ paginator.setPaginator({
1203
+ hasNext: data.page.has_next ? true : false,
1204
+ nextId: data.page.next_id,
1205
+ });
1206
+ return data;
1207
+ };
1208
+ paginator.setCallback(callback.bind(this));
1209
+ return paginator;
1210
+ }
1211
+
1212
+ /**
1213
+ * @param {ConfigurationPlatformValidator.GetStoresForACompanyParam} arg - Arg object
1214
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1215
+ * @param {import("../PlatformAPIClient").Options} - Options
1216
+ * @returns {Promise<ConfigurationPlatformModel.ListStoreResponse>} - Success response
1217
+ * @name getStoresForACompany
1218
+ * @summary: Get stores by company
1219
+ * @description: Retrieves All the stores that belong to a particular company with desired pagination - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStoresForACompany/).
1220
+ */
1221
+ async getStoresForACompany(
1222
+ { company, requestHeaders } = { requestHeaders: {} },
1223
+ { responseHeaders } = { responseHeaders: false }
1224
+ ) {
1225
+ const {
1226
+ error,
1227
+ } = ConfigurationPlatformValidator.getStoresForACompany().validate(
1228
+ {
1229
+ company,
1230
+ },
1231
+ { abortEarly: false, allowUnknown: true }
1232
+ );
1233
+ if (error) {
1234
+ return Promise.reject(new FDKClientValidationError(error));
1235
+ }
1236
+
1237
+ // Showing warrnings if extra unknown parameters are found
1238
+ const {
1239
+ error: warrning,
1240
+ } = ConfigurationPlatformValidator.getStoresForACompany().validate(
1241
+ {
1242
+ company,
1243
+ },
1244
+ { abortEarly: false, allowUnknown: false }
1245
+ );
1246
+ if (warrning) {
1247
+ Logger({
1248
+ level: "WARN",
1249
+ message: `Parameter Validation warrnings for platform > Configuration > getStoresForACompany \n ${warrning}`,
1250
+ });
1251
+ }
1252
+
1253
+ const query_params = {};
1254
+
1255
+ const xHeaders = {};
1256
+
1257
+ const response = await PlatformAPIClient.execute(
1258
+ this.config,
1259
+ "get",
1260
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/inventory/company/${company}`,
1261
+ query_params,
1262
+ undefined,
1263
+ { ...xHeaders, ...requestHeaders },
1264
+ { responseHeaders }
1265
+ );
1266
+
1267
+ let responseData = response;
1268
+ if (responseHeaders) {
1269
+ responseData = response[0];
1270
+ }
1271
+
1272
+ const {
1273
+ error: res_error,
1274
+ } = ConfigurationPlatformModel.ListStoreResponse().validate(responseData, {
1275
+ abortEarly: false,
1276
+ allowUnknown: true,
1277
+ });
1278
+
1279
+ if (res_error) {
1280
+ if (this.config.options.strictResponseCheck === true) {
1281
+ return Promise.reject(new FDKResponseValidationError(res_error));
1282
+ } else {
1283
+ Logger({
1284
+ level: "WARN",
1285
+ message: `Response Validation Warnings for platform > Configuration > getStoresForACompany \n ${res_error}`,
1286
+ });
1287
+ }
1288
+ }
1289
+
1290
+ return response;
1291
+ }
1292
+
879
1293
  /**
880
1294
  * @param {ConfigurationPlatformValidator.OptOutFromApplicationParam} arg - Arg object
881
1295
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
882
1296
  * @param {import("../PlatformAPIClient").Options} - Options
883
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
884
- * - Success response
885
- *
1297
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
1298
+ * Success response
886
1299
  * @name optOutFromApplication
887
- * @summary: opt out of marketplaces
888
- * @description: This API allows businesses to opt out of sharing their inventory with external seller sales channels. By using this API, companies or stores can prevent specific seller sales channels from fetching their inventory data. This feature is useful for businesses that want to control who can access their product listings and other inventory information. It helps maintain privacy and control over data distribution, ensuring that sensitive information is only shared with authorized partners. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/optOutFromApplication/).
1300
+ * @summary: Opt out from an application.
1301
+ * @description: Choose to opt-out your company or store from other seller application. The specific seller application will no longer fetch inventory from your company or store. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/optOutFromApplication/).
889
1302
  */
890
1303
  async optOutFromApplication(
891
- { id, body, requestHeaders } = { requestHeaders: {} },
1304
+ { appId, body, requestHeaders } = { requestHeaders: {} },
892
1305
  { responseHeaders } = { responseHeaders: false }
893
1306
  ) {
894
1307
  const {
895
1308
  error,
896
1309
  } = ConfigurationPlatformValidator.optOutFromApplication().validate(
897
1310
  {
898
- id,
1311
+ appId,
899
1312
  body,
900
1313
  },
901
1314
  { abortEarly: false, allowUnknown: true }
@@ -909,7 +1322,7 @@ class Configuration {
909
1322
  error: warrning,
910
1323
  } = ConfigurationPlatformValidator.optOutFromApplication().validate(
911
1324
  {
912
- id,
1325
+ appId,
913
1326
  body,
914
1327
  },
915
1328
  { abortEarly: false, allowUnknown: false }
@@ -928,7 +1341,7 @@ class Configuration {
928
1341
  const response = await PlatformAPIClient.execute(
929
1342
  this.config,
930
1343
  "put",
931
- `/service/platform/configuration/v1.0/company/${this.config.companyId}/other-seller-applications/${id}/opt_out`,
1344
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/other-seller-applications/${appId}/opt_out`,
932
1345
  query_params,
933
1346
  body,
934
1347
  { ...xHeaders, ...requestHeaders },
@@ -942,7 +1355,7 @@ class Configuration {
942
1355
 
943
1356
  const {
944
1357
  error: res_error,
945
- } = ConfigurationPlatformModel.SuccessMessageResponseSchema().validate(
1358
+ } = ConfigurationPlatformModel.SuccessMessageResponse().validate(
946
1359
  responseData,
947
1360
  { abortEarly: false, allowUnknown: true }
948
1361
  );
@@ -960,6 +1373,87 @@ class Configuration {
960
1373
 
961
1374
  return response;
962
1375
  }
1376
+
1377
+ /**
1378
+ * @param {ConfigurationPlatformValidator.UpdateCurrencyParam} arg - Arg object
1379
+ * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
1380
+ * @param {import("../PlatformAPIClient").Options} - Options
1381
+ * @returns {Promise<ConfigurationPlatformModel.Currency>} - Success response
1382
+ * @name updateCurrency
1383
+ * @summary: Get currencies.
1384
+ * @description: Retrieve a list of available currencies. Use this API to get a list of currencies allowed in the company. 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/updateCurrency/).
1385
+ */
1386
+ async updateCurrency(
1387
+ { id, body, requestHeaders } = { requestHeaders: {} },
1388
+ { responseHeaders } = { responseHeaders: false }
1389
+ ) {
1390
+ const { error } = ConfigurationPlatformValidator.updateCurrency().validate(
1391
+ {
1392
+ id,
1393
+ body,
1394
+ },
1395
+ { abortEarly: false, allowUnknown: true }
1396
+ );
1397
+ if (error) {
1398
+ return Promise.reject(new FDKClientValidationError(error));
1399
+ }
1400
+
1401
+ // Showing warrnings if extra unknown parameters are found
1402
+ const {
1403
+ error: warrning,
1404
+ } = ConfigurationPlatformValidator.updateCurrency().validate(
1405
+ {
1406
+ id,
1407
+ body,
1408
+ },
1409
+ { abortEarly: false, allowUnknown: false }
1410
+ );
1411
+ if (warrning) {
1412
+ Logger({
1413
+ level: "WARN",
1414
+ message: `Parameter Validation warrnings for platform > Configuration > updateCurrency \n ${warrning}`,
1415
+ });
1416
+ }
1417
+
1418
+ const query_params = {};
1419
+
1420
+ const xHeaders = {};
1421
+
1422
+ const response = await PlatformAPIClient.execute(
1423
+ this.config,
1424
+ "put",
1425
+ `/service/platform/configuration/v1.0/company/${this.config.companyId}/currencies/${id}`,
1426
+ query_params,
1427
+ body,
1428
+ { ...xHeaders, ...requestHeaders },
1429
+ { responseHeaders }
1430
+ );
1431
+
1432
+ let responseData = response;
1433
+ if (responseHeaders) {
1434
+ responseData = response[0];
1435
+ }
1436
+
1437
+ const {
1438
+ error: res_error,
1439
+ } = ConfigurationPlatformModel.Currency().validate(responseData, {
1440
+ abortEarly: false,
1441
+ allowUnknown: true,
1442
+ });
1443
+
1444
+ if (res_error) {
1445
+ if (this.config.options.strictResponseCheck === true) {
1446
+ return Promise.reject(new FDKResponseValidationError(res_error));
1447
+ } else {
1448
+ Logger({
1449
+ level: "WARN",
1450
+ message: `Response Validation Warnings for platform > Configuration > updateCurrency \n ${res_error}`,
1451
+ });
1452
+ }
1453
+ }
1454
+
1455
+ return response;
1456
+ }
963
1457
  }
964
1458
 
965
1459
  module.exports = Configuration;