@gofynd/fdk-client-javascript 0.1.37 → 1.0.0

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 (353) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +315 -289
  5. package/documentation/application/CATALOG.md +427 -404
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +45 -45
  9. package/documentation/application/ORDER.md +287 -287
  10. package/documentation/application/PAYMENT.md +278 -278
  11. package/documentation/application/POSCART.md +318 -292
  12. package/documentation/application/REWARDS.md +1 -0
  13. package/documentation/application/USER.md +19 -14
  14. package/documentation/platform/CART.md +465 -462
  15. package/documentation/platform/CATALOG.md +2691 -2624
  16. package/documentation/platform/COMPANYPROFILE.md +186 -348
  17. package/documentation/platform/DISCOUNT.md +86 -0
  18. package/documentation/platform/FILESTORAGE.md +2 -0
  19. package/documentation/platform/LEAD.md +60 -60
  20. package/documentation/platform/ORDER.md +1299 -1621
  21. package/documentation/platform/PAYMENT.md +89 -89
  22. package/documentation/platform/REWARDS.md +145 -0
  23. package/documentation/platform/USER.md +24 -14
  24. package/index.d.ts +4 -1
  25. package/index.js +6 -3
  26. package/package.json +9 -9
  27. package/platform.d.ts +2 -1
  28. package/platform.js +3 -2
  29. package/public.d.ts +1 -0
  30. package/public.js +3 -2
  31. package/sdk/application/ApplicationAPIClient.js +3 -1
  32. package/sdk/application/ApplicationClient.d.ts +16 -16
  33. package/sdk/application/ApplicationClient.js +32 -16
  34. package/sdk/application/ApplicationConfig.js +3 -2
  35. package/sdk/application/ApplicationModels.d.ts +0 -832
  36. package/sdk/application/ApplicationModels.js +3 -10574
  37. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  38. package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
  39. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  40. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  41. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
  44. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  45. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  46. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
  48. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  49. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  50. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
  52. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  53. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  54. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
  56. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  57. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  58. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
  60. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  61. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  62. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
  64. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  65. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  66. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
  68. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  69. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  70. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
  72. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  73. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  74. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
  76. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  77. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  78. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
  80. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  81. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  82. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
  85. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  86. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  87. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
  89. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  90. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  91. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
  93. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  94. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  95. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  98. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  99. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
  101. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  102. package/sdk/application/User/UserApplicationModel.js +998 -0
  103. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
  104. package/sdk/application/index.d.ts +18 -0
  105. package/sdk/application/index.js +33 -0
  106. package/sdk/common/AxiosHelper.js +23 -10
  107. package/sdk/common/Logger.d.ts +2 -0
  108. package/sdk/common/Logger.js +6 -0
  109. package/sdk/common/curlHelper.d.ts +2 -0
  110. package/sdk/common/curlHelper.js +95 -0
  111. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  115. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
  116. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  118. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  119. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  122. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  123. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
  124. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  125. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  126. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  127. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  128. package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
  129. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  130. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  131. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  132. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  133. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  134. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
  135. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  136. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  137. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
  142. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  143. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  144. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  145. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  146. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
  147. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  148. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  149. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
  150. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  151. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  152. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  153. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  154. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
  155. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  156. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  157. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  158. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  159. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  160. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
  161. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  162. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  163. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
  164. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  165. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  166. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  167. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  168. package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
  169. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  170. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  171. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  172. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  173. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  174. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
  175. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  176. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  177. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  178. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  179. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  180. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
  181. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  182. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  183. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
  184. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  185. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  186. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  187. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
  188. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  189. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  190. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  191. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  192. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
  193. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  194. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  195. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
  196. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  197. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  198. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  199. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  200. package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
  201. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  202. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  203. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
  211. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  212. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  213. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  214. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  215. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  216. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
  217. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  218. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  219. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
  220. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  221. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  222. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  223. package/sdk/platform/PlatformAPIClient.js +2 -1
  224. package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
  225. package/sdk/platform/PlatformApplicationClient.js +3811 -13957
  226. package/sdk/platform/PlatformClient.d.ts +2982 -3013
  227. package/sdk/platform/PlatformClient.js +3806 -3231
  228. package/sdk/platform/PlatformConfig.js +2 -1
  229. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  230. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
  231. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  232. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  233. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  234. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  235. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  236. package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
  237. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  238. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  239. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  240. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  241. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  242. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
  243. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  244. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  246. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  251. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  252. package/sdk/platform/User/UserPlatformModel.js +998 -0
  253. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
  254. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  255. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  256. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  257. package/sdk/platform/index.d.ts +24 -0
  258. package/sdk/platform/index.js +45 -0
  259. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
  260. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  261. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  262. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
  264. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  265. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  266. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
  267. package/sdk/public/PublicClient.d.ts +3 -3
  268. package/sdk/public/PublicClient.js +8 -3
  269. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
  270. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  271. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  272. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
  273. package/sdk/public/index.d.ts +5 -0
  274. package/sdk/public/index.js +7 -0
  275. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  276. package/sdk/platform/PlatformApplicationModels.js +0 -22658
  277. package/sdk/platform/PlatformModels.d.ts +0 -1477
  278. package/sdk/platform/PlatformModels.js +0 -20646
  279. package/sdk/platform/models/CartValidator.d.ts +0 -0
  280. package/sdk/platform/models/CartValidator.js +0 -0
  281. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  282. package/sdk/platform/models/ContentValidator.js +0 -0
  283. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  284. package/sdk/platform/models/PartnerValidator.js +0 -0
  285. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  286. package/sdk/platform/models/RewardsValidator.js +0 -0
  287. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  288. package/sdk/platform/models/ShareValidator.js +0 -0
  289. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  290. package/sdk/platform/models/ThemeValidator.js +0 -0
  291. package/sdk/platform/models/UserValidator.d.ts +0 -0
  292. package/sdk/platform/models/UserValidator.js +0 -0
  293. package/sdk/public/PublicModels.d.ts +0 -50
  294. package/sdk/public/PublicModels.js +0 -712
  295. package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  296. package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  297. package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  298. package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  299. package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  300. package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  301. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  302. package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  303. package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  304. package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  305. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  306. package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  307. package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  308. package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  309. package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
  310. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
  311. package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  312. package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  313. package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  314. package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  315. package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  316. package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  317. package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  318. package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  319. package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  320. package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  321. package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  322. package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  323. package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  324. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  325. package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  326. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  327. package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  328. package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  329. package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  330. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
  332. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  348. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  349. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  350. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  351. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -21,7 +21,6 @@
21
21
  * [getLocationDetail](#getlocationdetail)
22
22
  * [updateLocation](#updatelocation)
23
23
  * [createLocationBulk](#createlocationbulk)
24
- * [getOptimalLocations](#getoptimallocations)
25
24
 
26
25
 
27
26
 
@@ -1348,85 +1347,6 @@ Returns a success response
1348
1347
 
1349
1348
 
1350
1349
 
1351
- ---
1352
-
1353
-
1354
- ### getOptimalLocations
1355
- Location Reassignment
1356
-
1357
-
1358
-
1359
- ```javascript
1360
- // Promise
1361
- const promise = client.companyProfile.getOptimalLocations({ body : value });
1362
-
1363
- // Async/Await
1364
- const data = await client.companyProfile.getOptimalLocations({ body : value });
1365
- ```
1366
-
1367
-
1368
-
1369
-
1370
-
1371
- | Argument | Type | Required | Description |
1372
- | --------- | ----- | -------- | ----------- |
1373
- | body | [AssignStoreRequestValidator](#AssignStoreRequestValidator) | yes | Request body |
1374
-
1375
-
1376
-
1377
-
1378
- *Returned Response:*
1379
-
1380
-
1381
-
1382
-
1383
- [AssignStoreResponseSerializer](#AssignStoreResponseSerializer)
1384
-
1385
- Returns a success response
1386
-
1387
-
1388
-
1389
-
1390
- <details>
1391
- <summary><i>&nbsp; Example:</i></summary>
1392
-
1393
- ```json
1394
- {
1395
- "items": [
1396
- {
1397
- "meta": {},
1398
- "store_id": 11550,
1399
- "size": "OS",
1400
- "_id": "61161830f1061e7c7f81d8ed",
1401
- "store_pincode": 201303,
1402
- "company_id": 783,
1403
- "s_city": "NOIDA",
1404
- "quantity": 1,
1405
- "price_effective": 995,
1406
- "status": true,
1407
- "price_marked": 995,
1408
- "uid": "11550_000000410234883001",
1409
- "article_assignment": {
1410
- "strategy": "app-config",
1411
- "level": "multi-company"
1412
- },
1413
- "item_id": 75252658,
1414
- "strategy_wise_listing": [],
1415
- "index": 0
1416
- }
1417
- ]
1418
- }
1419
- ```
1420
- </details>
1421
-
1422
-
1423
-
1424
-
1425
-
1426
-
1427
-
1428
-
1429
-
1430
1350
  ---
1431
1351
 
1432
1352
 
@@ -1435,52 +1355,50 @@ Returns a success response
1435
1355
 
1436
1356
 
1437
1357
 
1438
- #### [Document](#Document)
1358
+ #### [UserSerializer](#UserSerializer)
1439
1359
 
1440
1360
  | Properties | Type | Nullable | Description |
1441
1361
  | ---------- | ---- | -------- | ----------- |
1442
- | value | string | yes | |
1443
- | verified | boolean | no | |
1444
- | legal_name | string | no | |
1445
- | type | string | yes | |
1446
- | url | string | no | |
1362
+ | user_id | string | no | |
1363
+ | contact | string | no | |
1364
+ | username | string | no | |
1447
1365
 
1448
1366
  ---
1449
1367
 
1450
1368
 
1451
1369
 
1452
1370
 
1453
- #### [SellerPhoneNumber](#SellerPhoneNumber)
1371
+ #### [Document](#Document)
1454
1372
 
1455
1373
  | Properties | Type | Nullable | Description |
1456
1374
  | ---------- | ---- | -------- | ----------- |
1457
- | number | string | yes | |
1458
- | country_code | number | yes | |
1375
+ | url | string | no | |
1376
+ | verified | boolean | no | |
1377
+ | value | string | yes | |
1378
+ | type | string | yes | |
1379
+ | legal_name | string | no | |
1459
1380
 
1460
1381
  ---
1461
1382
 
1462
1383
 
1463
1384
 
1464
1385
 
1465
- #### [ContactDetails](#ContactDetails)
1386
+ #### [Website](#Website)
1466
1387
 
1467
1388
  | Properties | Type | Nullable | Description |
1468
1389
  | ---------- | ---- | -------- | ----------- |
1469
- | emails | [string] | no | |
1470
- | phone | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1390
+ | url | string | no | |
1471
1391
 
1472
1392
  ---
1473
1393
 
1474
1394
 
1475
1395
 
1476
1396
 
1477
- #### [UserSerializer](#UserSerializer)
1397
+ #### [BusinessDetails](#BusinessDetails)
1478
1398
 
1479
1399
  | Properties | Type | Nullable | Description |
1480
1400
  | ---------- | ---- | -------- | ----------- |
1481
- | contact | string | no | |
1482
- | user_id | string | no | |
1483
- | username | string | no | |
1401
+ | website | [Website](#Website) | no | |
1484
1402
 
1485
1403
  ---
1486
1404
 
@@ -1491,30 +1409,32 @@ Returns a success response
1491
1409
 
1492
1410
  | Properties | Type | Nullable | Description |
1493
1411
  | ---------- | ---- | -------- | ----------- |
1494
- | country | string | no | |
1495
1412
  | country_code | string | no | |
1413
+ | country | string | no | |
1496
1414
 
1497
1415
  ---
1498
1416
 
1499
1417
 
1500
1418
 
1501
1419
 
1502
- #### [Website](#Website)
1420
+ #### [SellerPhoneNumber](#SellerPhoneNumber)
1503
1421
 
1504
1422
  | Properties | Type | Nullable | Description |
1505
1423
  | ---------- | ---- | -------- | ----------- |
1506
- | url | string | no | |
1424
+ | country_code | number | yes | |
1425
+ | number | string | yes | |
1507
1426
 
1508
1427
  ---
1509
1428
 
1510
1429
 
1511
1430
 
1512
1431
 
1513
- #### [BusinessDetails](#BusinessDetails)
1432
+ #### [ContactDetails](#ContactDetails)
1514
1433
 
1515
1434
  | Properties | Type | Nullable | Description |
1516
1435
  | ---------- | ---- | -------- | ----------- |
1517
- | website | [Website](#Website) | no | |
1436
+ | phone | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1437
+ | emails | [string] | no | |
1518
1438
 
1519
1439
  ---
1520
1440
 
@@ -1525,9 +1445,9 @@ Returns a success response
1525
1445
 
1526
1446
  | Properties | Type | Nullable | Description |
1527
1447
  | ---------- | ---- | -------- | ----------- |
1448
+ | enable | boolean | no | |
1528
1449
  | rate | number | no | |
1529
1450
  | effective_date | string | no | |
1530
- | enable | boolean | no | |
1531
1451
 
1532
1452
  ---
1533
1453
 
@@ -1538,17 +1458,17 @@ Returns a success response
1538
1458
 
1539
1459
  | Properties | Type | Nullable | Description |
1540
1460
  | ---------- | ---- | -------- | ----------- |
1541
- | address_type | string | no | |
1542
- | latitude | number | yes | |
1543
- | address1 | string | no | |
1544
- | landmark | string | no | |
1545
- | longitude | number | yes | |
1546
- | city | string | no | |
1461
+ | country_code | string | no | |
1547
1462
  | pincode | number | no | |
1548
- | state | string | no | |
1463
+ | longitude | number | yes | |
1464
+ | landmark | string | no | |
1465
+ | latitude | number | yes | |
1549
1466
  | country | string | no | |
1467
+ | address_type | string | no | |
1468
+ | state | string | no | |
1550
1469
  | address2 | string | no | |
1551
- | country_code | string | no | |
1470
+ | city | string | no | |
1471
+ | address1 | string | no | |
1552
1472
 
1553
1473
  ---
1554
1474
 
@@ -1559,29 +1479,29 @@ Returns a success response
1559
1479
 
1560
1480
  | Properties | Type | Nullable | Description |
1561
1481
  | ---------- | ---- | -------- | ----------- |
1562
- | documents | [[Document](#Document)] | no | |
1563
- | contact_details | [ContactDetails](#ContactDetails) | no | |
1564
1482
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1565
- | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1566
- | name | string | no | |
1567
1483
  | company_type | string | yes | |
1568
- | business_type | string | yes | |
1569
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1570
- | warnings | string | no | |
1571
1484
  | notification_emails | [string] | no | |
1572
- | uid | number | yes | |
1485
+ | warnings | string | no | |
1486
+ | franchise_enabled | boolean | no | |
1487
+ | name | string | no | |
1488
+ | business_info | string | no | |
1489
+ | stage | string | no | |
1490
+ | created_on | string | no | |
1491
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1573
1492
  | verified_on | string | no | |
1493
+ | _custom_json | string | no | |
1494
+ | documents | [[Document](#Document)] | no | |
1495
+ | business_details | [BusinessDetails](#BusinessDetails) | no | |
1496
+ | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1497
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1498
+ | contact_details | [ContactDetails](#ContactDetails) | no | |
1499
+ | uid | number | yes | |
1574
1500
  | modified_on | string | no | |
1575
- | created_by | [UserSerializer](#UserSerializer) | no | |
1576
- | franchise_enabled | boolean | no | |
1577
1501
  | mode | string | no | |
1578
- | business_details | [BusinessDetails](#BusinessDetails) | no | |
1579
- | _custom_json | string | no | |
1580
1502
  | taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
1503
+ | business_type | string | yes | |
1581
1504
  | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1582
- | stage | string | no | |
1583
- | business_info | string | no | |
1584
- | created_on | string | no | |
1585
1505
 
1586
1506
  ---
1587
1507
 
@@ -1593,9 +1513,9 @@ Returns a success response
1593
1513
  | Properties | Type | Nullable | Description |
1594
1514
  | ---------- | ---- | -------- | ----------- |
1595
1515
  | message | string | no | |
1596
- | code | string | no | |
1597
- | meta | string | no | |
1598
1516
  | status | number | no | |
1517
+ | meta | string | no | |
1518
+ | code | string | no | |
1599
1519
 
1600
1520
  ---
1601
1521
 
@@ -1606,9 +1526,9 @@ Returns a success response
1606
1526
 
1607
1527
  | Properties | Type | Nullable | Description |
1608
1528
  | ---------- | ---- | -------- | ----------- |
1529
+ | enable | boolean | no | |
1609
1530
  | rate | number | no | |
1610
1531
  | effective_date | string | no | |
1611
- | enable | boolean | no | |
1612
1532
 
1613
1533
  ---
1614
1534
 
@@ -1619,17 +1539,17 @@ Returns a success response
1619
1539
 
1620
1540
  | Properties | Type | Nullable | Description |
1621
1541
  | ---------- | ---- | -------- | ----------- |
1622
- | address_type | string | yes | |
1623
- | latitude | number | yes | |
1624
- | address1 | string | yes | |
1625
- | landmark | string | no | |
1626
- | longitude | number | yes | |
1627
- | city | string | yes | |
1628
- | state | string | yes | |
1542
+ | country_code | string | no | |
1629
1543
  | pincode | number | yes | |
1544
+ | longitude | number | yes | |
1545
+ | landmark | string | no | |
1546
+ | latitude | number | yes | |
1630
1547
  | country | string | yes | |
1548
+ | state | string | yes | |
1549
+ | address_type | string | yes | |
1631
1550
  | address2 | string | no | |
1632
- | country_code | string | no | |
1551
+ | city | string | yes | |
1552
+ | address1 | string | yes | |
1633
1553
 
1634
1554
  ---
1635
1555
 
@@ -1640,20 +1560,20 @@ Returns a success response
1640
1560
 
1641
1561
  | Properties | Type | Nullable | Description |
1642
1562
  | ---------- | ---- | -------- | ----------- |
1643
- | business_type | string | no | |
1644
- | taxes | [[CompanyTaxesSerializer1](#CompanyTaxesSerializer1)] | no | |
1645
- | documents | [[Document](#Document)] | no | |
1646
- | franchise_enabled | boolean | no | |
1647
- | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1648
1563
  | contact_details | [ContactDetails](#ContactDetails) | no | |
1649
- | business_details | [BusinessDetails](#BusinessDetails) | no | |
1650
- | warnings | string | no | |
1651
1564
  | company_type | string | no | |
1652
- | name | string | no | |
1653
1565
  | reject_reason | string | no | |
1654
1566
  | notification_emails | [string] | no | |
1655
1567
  | _custom_json | string | no | |
1568
+ | warnings | string | no | |
1569
+ | taxes | [[CompanyTaxesSerializer1](#CompanyTaxesSerializer1)] | no | |
1570
+ | documents | [[Document](#Document)] | no | |
1571
+ | franchise_enabled | boolean | no | |
1572
+ | business_details | [BusinessDetails](#BusinessDetails) | no | |
1573
+ | name | string | no | |
1656
1574
  | business_info | string | no | |
1575
+ | business_type | string | no | |
1576
+ | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1657
1577
 
1658
1578
  ---
1659
1579
 
@@ -1688,13 +1608,13 @@ Returns a success response
1688
1608
 
1689
1609
  | Properties | Type | Nullable | Description |
1690
1610
  | ---------- | ---- | -------- | ----------- |
1691
- | store | [DocumentsObj](#DocumentsObj) | no | |
1692
1611
  | stage | string | no | |
1693
- | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1694
- | brand | [DocumentsObj](#DocumentsObj) | no | |
1695
1612
  | uid | number | no | |
1696
- | product | [DocumentsObj](#DocumentsObj) | no | |
1697
1613
  | store_documents | [DocumentsObj](#DocumentsObj) | no | |
1614
+ | brand | [DocumentsObj](#DocumentsObj) | no | |
1615
+ | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1616
+ | store | [DocumentsObj](#DocumentsObj) | no | |
1617
+ | product | [DocumentsObj](#DocumentsObj) | no | |
1698
1618
 
1699
1619
  ---
1700
1620
 
@@ -1705,8 +1625,8 @@ Returns a success response
1705
1625
 
1706
1626
  | Properties | Type | Nullable | Description |
1707
1627
  | ---------- | ---- | -------- | ----------- |
1708
- | landscape | string | no | |
1709
1628
  | portrait | string | no | |
1629
+ | landscape | string | no | |
1710
1630
 
1711
1631
  ---
1712
1632
 
@@ -1718,24 +1638,24 @@ Returns a success response
1718
1638
  | Properties | Type | Nullable | Description |
1719
1639
  | ---------- | ---- | -------- | ----------- |
1720
1640
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1721
- | name | string | yes | |
1722
- | reject_reason | string | no | |
1723
- | _locale_language | string | no | |
1641
+ | slug_key | string | no | |
1724
1642
  | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1725
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1643
+ | logo | string | no | |
1726
1644
  | warnings | string | no | |
1727
- | uid | number | no | |
1645
+ | _locale_language | string | no | |
1646
+ | name | string | yes | |
1647
+ | stage | string | no | |
1648
+ | created_on | string | no | |
1649
+ | synonyms | [string] | no | |
1650
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1728
1651
  | verified_on | string | no | |
1652
+ | _custom_json | string | no | |
1653
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1654
+ | uid | number | no | |
1729
1655
  | modified_on | string | no | |
1730
- | created_by | [UserSerializer](#UserSerializer) | no | |
1731
- | slug_key | string | no | |
1732
1656
  | mode | string | no | |
1657
+ | reject_reason | string | no | |
1733
1658
  | description | string | no | |
1734
- | _custom_json | string | no | |
1735
- | stage | string | no | |
1736
- | synonyms | [string] | no | |
1737
- | logo | string | no | |
1738
- | created_on | string | no | |
1739
1659
 
1740
1660
  ---
1741
1661
 
@@ -1747,15 +1667,15 @@ Returns a success response
1747
1667
  | Properties | Type | Nullable | Description |
1748
1668
  | ---------- | ---- | -------- | ----------- |
1749
1669
  | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1750
- | brand_tier | string | no | |
1751
- | company_id | number | no | |
1752
- | name | string | yes | |
1670
+ | synonyms | [string] | no | |
1753
1671
  | uid | number | no | |
1672
+ | logo | string | yes | |
1754
1673
  | _custom_json | string | no | |
1755
- | synonyms | [string] | no | |
1674
+ | company_id | number | no | |
1756
1675
  | description | string | no | |
1676
+ | brand_tier | string | no | |
1757
1677
  | _locale_language | string | no | |
1758
- | logo | string | yes | |
1678
+ | name | string | yes | |
1759
1679
 
1760
1680
  ---
1761
1681
 
@@ -1766,8 +1686,8 @@ Returns a success response
1766
1686
 
1767
1687
  | Properties | Type | Nullable | Description |
1768
1688
  | ---------- | ---- | -------- | ----------- |
1769
- | url | string | yes | |
1770
1689
  | name | string | yes | |
1690
+ | url | string | yes | |
1771
1691
 
1772
1692
  ---
1773
1693
 
@@ -1778,8 +1698,8 @@ Returns a success response
1778
1698
 
1779
1699
  | Properties | Type | Nullable | Description |
1780
1700
  | ---------- | ---- | -------- | ----------- |
1781
- | website_url | string | no | |
1782
1701
  | socials | [[CompanySocialAccounts](#CompanySocialAccounts)] | no | |
1702
+ | website_url | string | no | |
1783
1703
 
1784
1704
  ---
1785
1705
 
@@ -1790,24 +1710,24 @@ Returns a success response
1790
1710
 
1791
1711
  | Properties | Type | Nullable | Description |
1792
1712
  | ---------- | ---- | -------- | ----------- |
1793
- | business_type | string | yes | |
1713
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1794
1714
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1795
- | created_by | [UserSerializer](#UserSerializer) | no | |
1796
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1797
1715
  | stage | string | no | |
1798
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1799
- | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1800
- | name | string | no | |
1801
1716
  | company_type | string | yes | |
1802
- | notification_emails | [string] | no | |
1803
- | reject_reason | string | no | |
1804
- | details | [CompanyDetails](#CompanyDetails) | no | |
1805
- | _custom_json | string | no | |
1717
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1806
1718
  | uid | number | no | |
1807
- | verified_on | string | no | |
1808
- | created_on | string | no | |
1809
1719
  | modified_on | string | no | |
1720
+ | verified_on | string | no | |
1721
+ | reject_reason | string | no | |
1722
+ | notification_emails | [string] | no | |
1723
+ | _custom_json | string | no | |
1724
+ | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1810
1725
  | market_channels | [string] | no | |
1726
+ | created_on | string | no | |
1727
+ | details | [CompanyDetails](#CompanyDetails) | no | |
1728
+ | name | string | no | |
1729
+ | business_type | string | yes | |
1730
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1811
1731
 
1812
1732
  ---
1813
1733
 
@@ -1818,18 +1738,18 @@ Returns a success response
1818
1738
 
1819
1739
  | Properties | Type | Nullable | Description |
1820
1740
  | ---------- | ---- | -------- | ----------- |
1741
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1821
1742
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1822
- | created_by | [UserSerializer](#UserSerializer) | no | |
1823
1743
  | stage | string | no | |
1824
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1825
- | warnings | string | no | |
1826
- | company | [CompanySerializer](#CompanySerializer) | no | |
1827
- | reject_reason | string | no | |
1828
- | brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
1744
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1829
1745
  | uid | number | no | |
1746
+ | modified_on | string | no | |
1830
1747
  | verified_on | string | no | |
1748
+ | reject_reason | string | no | |
1749
+ | warnings | string | no | |
1750
+ | brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
1831
1751
  | created_on | string | no | |
1832
- | modified_on | string | no | |
1752
+ | company | [CompanySerializer](#CompanySerializer) | no | |
1833
1753
 
1834
1754
  ---
1835
1755
 
@@ -1840,13 +1760,13 @@ Returns a success response
1840
1760
 
1841
1761
  | Properties | Type | Nullable | Description |
1842
1762
  | ---------- | ---- | -------- | ----------- |
1763
+ | next_id | string | no | |
1843
1764
  | item_total | number | no | |
1844
- | current | number | no | |
1845
- | has_next | boolean | no | |
1846
1765
  | has_previous | boolean | no | |
1847
- | size | number | no | |
1848
- | next_id | string | no | |
1766
+ | has_next | boolean | no | |
1767
+ | current | number | no | |
1849
1768
  | type | string | yes | |
1769
+ | size | number | no | |
1850
1770
 
1851
1771
  ---
1852
1772
 
@@ -1878,42 +1798,6 @@ Returns a success response
1878
1798
 
1879
1799
 
1880
1800
 
1881
- #### [GetCompanySerializer](#GetCompanySerializer)
1882
-
1883
- | Properties | Type | Nullable | Description |
1884
- | ---------- | ---- | -------- | ----------- |
1885
- | business_type | string | no | |
1886
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1887
- | created_by | [UserSerializer](#UserSerializer) | no | |
1888
- | stage | string | no | |
1889
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1890
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1891
- | name | string | no | |
1892
- | company_type | string | no | |
1893
- | reject_reason | string | no | |
1894
- | uid | number | no | |
1895
- | verified_on | string | no | |
1896
- | created_on | string | no | |
1897
- | modified_on | string | no | |
1898
-
1899
- ---
1900
-
1901
-
1902
-
1903
-
1904
- #### [LocationManagerSerializer](#LocationManagerSerializer)
1905
-
1906
- | Properties | Type | Nullable | Description |
1907
- | ---------- | ---- | -------- | ----------- |
1908
- | email | string | no | |
1909
- | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
1910
- | name | string | no | |
1911
-
1912
- ---
1913
-
1914
-
1915
-
1916
-
1917
1801
  #### [LocationTimingSerializer](#LocationTimingSerializer)
1918
1802
 
1919
1803
  | Properties | Type | Nullable | Description |
@@ -1930,9 +1814,9 @@ Returns a success response
1930
1814
 
1931
1815
  | Properties | Type | Nullable | Description |
1932
1816
  | ---------- | ---- | -------- | ----------- |
1933
- | open | boolean | yes | |
1934
1817
  | opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1935
1818
  | weekday | string | yes | |
1819
+ | open | boolean | yes | |
1936
1820
  | closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1937
1821
 
1938
1822
  ---
@@ -1940,24 +1824,12 @@ Returns a success response
1940
1824
 
1941
1825
 
1942
1826
 
1943
- #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
1944
-
1945
- | Properties | Type | Nullable | Description |
1946
- | ---------- | ---- | -------- | ----------- |
1947
- | on_same_store | boolean | no | |
1948
- | store_uid | number | no | |
1949
-
1950
- ---
1951
-
1952
-
1953
-
1954
-
1955
1827
  #### [HolidayDateSerializer](#HolidayDateSerializer)
1956
1828
 
1957
1829
  | Properties | Type | Nullable | Description |
1958
1830
  | ---------- | ---- | -------- | ----------- |
1959
- | start_date | string | yes | |
1960
1831
  | end_date | string | yes | |
1832
+ | start_date | string | yes | |
1961
1833
 
1962
1834
  ---
1963
1835
 
@@ -1968,9 +1840,9 @@ Returns a success response
1968
1840
 
1969
1841
  | Properties | Type | Nullable | Description |
1970
1842
  | ---------- | ---- | -------- | ----------- |
1843
+ | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1971
1844
  | holiday_type | string | yes | |
1972
1845
  | title | string | yes | |
1973
- | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1974
1846
 
1975
1847
  ---
1976
1848
 
@@ -2002,189 +1874,155 @@ Returns a success response
2002
1874
 
2003
1875
 
2004
1876
 
2005
- #### [GetLocationSerializer](#GetLocationSerializer)
1877
+ #### [GetCompanySerializer](#GetCompanySerializer)
2006
1878
 
2007
1879
  | Properties | Type | Nullable | Description |
2008
1880
  | ---------- | ---- | -------- | ----------- |
2009
- | documents | [[Document](#Document)] | no | |
2010
1881
  | verified_by | [UserSerializer](#UserSerializer) | no | |
2011
- | name | string | yes | |
2012
- | company | [GetCompanySerializer](#GetCompanySerializer) | no | |
2013
- | store_type | string | no | |
2014
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2015
1882
  | modified_by | [UserSerializer](#UserSerializer) | no | |
2016
- | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2017
- | display_name | string | yes | |
2018
- | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2019
- | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
2020
- | warnings | string | no | |
2021
- | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2022
- | notification_emails | [string] | no | |
1883
+ | stage | string | no | |
1884
+ | company_type | string | no | |
1885
+ | created_by | [UserSerializer](#UserSerializer) | no | |
2023
1886
  | uid | number | no | |
2024
- | verified_on | string | no | |
2025
1887
  | modified_on | string | no | |
2026
- | code | string | yes | |
2027
- | created_by | [UserSerializer](#UserSerializer) | no | |
2028
- | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2029
- | phone_number | string | no | |
2030
- | _custom_json | string | no | |
2031
- | stage | string | no | |
2032
- | address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
1888
+ | verified_on | string | no | |
1889
+ | reject_reason | string | no | |
2033
1890
  | created_on | string | no | |
1891
+ | name | string | no | |
1892
+ | business_type | string | no | |
1893
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
2034
1894
 
2035
1895
  ---
2036
1896
 
2037
1897
 
2038
1898
 
2039
1899
 
2040
- #### [LocationListSerializer](#LocationListSerializer)
1900
+ #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
2041
1901
 
2042
1902
  | Properties | Type | Nullable | Description |
2043
1903
  | ---------- | ---- | -------- | ----------- |
2044
- | items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
2045
- | page | [Page](#Page) | no | |
1904
+ | on_same_store | boolean | no | |
1905
+ | store_uid | number | no | |
2046
1906
 
2047
1907
  ---
2048
1908
 
2049
1909
 
2050
1910
 
2051
1911
 
2052
- #### [AddressSerializer](#AddressSerializer)
1912
+ #### [LocationManagerSerializer](#LocationManagerSerializer)
2053
1913
 
2054
1914
  | Properties | Type | Nullable | Description |
2055
1915
  | ---------- | ---- | -------- | ----------- |
2056
- | address_type | string | no | |
2057
- | latitude | number | yes | |
2058
- | address1 | string | no | |
2059
- | landmark | string | no | |
2060
- | longitude | number | yes | |
2061
- | city | string | no | |
2062
- | pincode | number | no | |
2063
- | state | string | no | |
2064
- | country | string | no | |
2065
- | address2 | string | no | |
2066
- | country_code | string | no | |
1916
+ | email | string | no | |
1917
+ | name | string | no | |
1918
+ | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
2067
1919
 
2068
1920
  ---
2069
1921
 
2070
1922
 
2071
1923
 
2072
1924
 
2073
- #### [LocationSerializer](#LocationSerializer)
1925
+ #### [GetLocationSerializer](#GetLocationSerializer)
2074
1926
 
2075
1927
  | Properties | Type | Nullable | Description |
2076
1928
  | ---------- | ---- | -------- | ----------- |
2077
- | documents | [[Document](#Document)] | no | |
2078
- | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2079
- | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2080
- | stage | string | no | |
2081
- | display_name | string | yes | |
2082
- | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2083
- | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1929
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1930
+ | notification_emails | [string] | no | |
2084
1931
  | warnings | string | no | |
2085
1932
  | name | string | yes | |
2086
- | company | number | yes | |
1933
+ | stage | string | no | |
1934
+ | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
1935
+ | store_type | string | no | |
1936
+ | created_on | string | no | |
1937
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2087
1938
  | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2088
- | notification_emails | [string] | no | |
1939
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1940
+ | verified_on | string | no | |
1941
+ | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2089
1942
  | _custom_json | string | no | |
1943
+ | phone_number | string | no | |
1944
+ | documents | [[Document](#Document)] | no | |
1945
+ | company | [GetCompanySerializer](#GetCompanySerializer) | no | |
1946
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1947
+ | address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
2090
1948
  | uid | number | no | |
2091
- | address | [AddressSerializer](#AddressSerializer) | yes | |
2092
- | store_type | string | no | |
2093
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1949
+ | modified_on | string | no | |
1950
+ | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1951
+ | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2094
1952
  | code | string | yes | |
1953
+ | display_name | string | yes | |
2095
1954
 
2096
1955
  ---
2097
1956
 
2098
1957
 
2099
1958
 
2100
1959
 
2101
- #### [BulkLocationSerializer](#BulkLocationSerializer)
2102
-
2103
- | Properties | Type | Nullable | Description |
2104
- | ---------- | ---- | -------- | ----------- |
2105
- | data | [[LocationSerializer](#LocationSerializer)] | no | |
2106
-
2107
- ---
2108
-
2109
-
2110
-
2111
-
2112
- #### [_ArticleAssignment](#_ArticleAssignment)
2113
-
2114
- | Properties | Type | Nullable | Description |
2115
- | ---------- | ---- | -------- | ----------- |
2116
- | strategy | string | no | |
2117
- | level | string | no | |
2118
-
2119
- ---
2120
-
2121
-
2122
-
2123
-
2124
- #### [_ArticleQuery](#_ArticleQuery)
1960
+ #### [LocationListSerializer](#LocationListSerializer)
2125
1961
 
2126
1962
  | Properties | Type | Nullable | Description |
2127
1963
  | ---------- | ---- | -------- | ----------- |
2128
- | item_id | number | no | |
2129
- | size | string | no | |
2130
- | ignored_stores | [number] | no | |
1964
+ | items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
1965
+ | page | [Page](#Page) | no | |
2131
1966
 
2132
1967
  ---
2133
1968
 
2134
1969
 
2135
1970
 
2136
1971
 
2137
- #### [_AssignStoreArticle](#_AssignStoreArticle)
1972
+ #### [AddressSerializer](#AddressSerializer)
2138
1973
 
2139
1974
  | Properties | Type | Nullable | Description |
2140
1975
  | ---------- | ---- | -------- | ----------- |
2141
- | quantity | number | no | |
2142
- | article_assignment | [_ArticleAssignment](#_ArticleAssignment) | no | |
2143
- | meta | string | no | |
2144
- | group_id | string | no | |
2145
- | query | [_ArticleQuery](#_ArticleQuery) | no | |
1976
+ | country_code | string | no | |
1977
+ | pincode | number | no | |
1978
+ | longitude | number | yes | |
1979
+ | landmark | string | no | |
1980
+ | latitude | number | yes | |
1981
+ | country | string | no | |
1982
+ | address_type | string | no | |
1983
+ | state | string | no | |
1984
+ | address2 | string | no | |
1985
+ | city | string | no | |
1986
+ | address1 | string | no | |
2146
1987
 
2147
1988
  ---
2148
1989
 
2149
1990
 
2150
1991
 
2151
1992
 
2152
- #### [AssignStoreRequestValidator](#AssignStoreRequestValidator)
1993
+ #### [LocationSerializer](#LocationSerializer)
2153
1994
 
2154
1995
  | Properties | Type | Nullable | Description |
2155
1996
  | ---------- | ---- | -------- | ----------- |
2156
- | articles | [[_AssignStoreArticle](#_AssignStoreArticle)] | no | |
2157
- | company_id | number | no | |
2158
- | channel_type | string | no | |
2159
- | store_ids | [number] | no | |
2160
- | pincode | string | no | |
2161
- | app_id | string | no | |
2162
- | channel_identifier | string | no | |
1997
+ | address | [AddressSerializer](#AddressSerializer) | yes | |
1998
+ | stage | string | no | |
1999
+ | uid | number | no | |
2000
+ | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2001
+ | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
2002
+ | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2003
+ | code | string | yes | |
2004
+ | notification_emails | [string] | no | |
2005
+ | _custom_json | string | no | |
2006
+ | warnings | string | no | |
2007
+ | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2008
+ | display_name | string | yes | |
2009
+ | store_type | string | no | |
2010
+ | documents | [[Document](#Document)] | no | |
2011
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2012
+ | name | string | yes | |
2013
+ | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2014
+ | company | number | yes | |
2163
2015
 
2164
2016
  ---
2165
2017
 
2166
2018
 
2167
2019
 
2168
2020
 
2169
- #### [AssignStoreResponseSerializer](#AssignStoreResponseSerializer)
2021
+ #### [BulkLocationSerializer](#BulkLocationSerializer)
2170
2022
 
2171
2023
  | Properties | Type | Nullable | Description |
2172
2024
  | ---------- | ---- | -------- | ----------- |
2173
- | article_assignment | [_ArticleAssignment](#_ArticleAssignment) | no | |
2174
- | store_id | number | no | |
2175
- | quantity | number | no | |
2176
- | price_marked | number | no | |
2177
- | store_pincode | string | no | |
2178
- | company_id | number | no | |
2179
- | _id | string | no | |
2180
- | s_city | string | no | |
2181
- | size | string | no | |
2182
- | index | number | no | |
2183
- | meta | string | no | |
2184
- | item_id | number | no | |
2185
- | uid | string | no | |
2186
- | status | boolean | no | |
2187
- | preice_effective | number | no | |
2025
+ | data | [[LocationSerializer](#LocationSerializer)] | no | |
2188
2026
 
2189
2027
  ---
2190
2028