@gofynd/fdk-client-javascript 0.1.37 → 1.0.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 (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 +438 -415
  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 +277 -277
  10. package/documentation/application/PAYMENT.md +251 -251
  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 +2792 -2711
  16. package/documentation/platform/COMPANYPROFILE.md +200 -362
  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 +1451 -1654
  21. package/documentation/platform/PAYMENT.md +94 -94
  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 +13 -4
  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 +316 -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} +17 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +389 -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} +4 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +24 -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} +3 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +43 -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} +5 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +202 -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} +4 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +217 -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} +3 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +35 -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} +6 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +83 -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} +6 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +46 -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} +5 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +148 -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} +5 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +530 -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} +25 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +343 -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} +18 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +83 -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} +6 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +89 -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} +4 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +46 -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} +3 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +407 -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} +31 -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 +399 -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 +60 -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 +48 -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 +162 -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 +1001 -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 +2927 -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 +1402 -349
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +317 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4702 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +92 -91
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +28 -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 +2243 -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 +17 -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 +176 -28
  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 +1322 -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 +284 -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 +3074 -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 +187 -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 +301 -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 +78 -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 +163 -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 +559 -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 +142 -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 +207 -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 +24 -55
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +693 -146
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +222 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3466 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +2 -3
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +32 -48
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +100 -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 +498 -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 +141 -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 +2824 -18486
  225. package/sdk/platform/PlatformApplicationClient.js +3772 -13928
  226. package/sdk/platform/PlatformClient.d.ts +2824 -2881
  227. package/sdk/platform/PlatformClient.js +3710 -3145
  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 +597 -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 +235 -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 +997 -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 +506 -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 +92 -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 +26 -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} +3 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +76 -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} +4 -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 +30 -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} +4 -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 +149 -149
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +21 -21
  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,15 +1355,12 @@ Returns a success response
1435
1355
 
1436
1356
 
1437
1357
 
1438
- #### [Document](#Document)
1358
+ #### [BusinessCountryInfo](#BusinessCountryInfo)
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
+ | country_code | string | no | |
1363
+ | country | string | no | |
1447
1364
 
1448
1365
  ---
1449
1366
 
@@ -1478,8 +1395,8 @@ Returns a success response
1478
1395
 
1479
1396
  | Properties | Type | Nullable | Description |
1480
1397
  | ---------- | ---- | -------- | ----------- |
1481
- | contact | string | no | |
1482
1398
  | user_id | string | no | |
1399
+ | contact | string | no | |
1483
1400
  | username | string | no | |
1484
1401
 
1485
1402
  ---
@@ -1487,68 +1404,71 @@ Returns a success response
1487
1404
 
1488
1405
 
1489
1406
 
1490
- #### [BusinessCountryInfo](#BusinessCountryInfo)
1407
+ #### [Website](#Website)
1491
1408
 
1492
1409
  | Properties | Type | Nullable | Description |
1493
1410
  | ---------- | ---- | -------- | ----------- |
1494
- | country | string | no | |
1495
- | country_code | string | no | |
1411
+ | url | string | no | |
1496
1412
 
1497
1413
  ---
1498
1414
 
1499
1415
 
1500
1416
 
1501
1417
 
1502
- #### [Website](#Website)
1418
+ #### [BusinessDetails](#BusinessDetails)
1503
1419
 
1504
1420
  | Properties | Type | Nullable | Description |
1505
1421
  | ---------- | ---- | -------- | ----------- |
1506
- | url | string | no | |
1422
+ | website | [Website](#Website) | no | |
1507
1423
 
1508
1424
  ---
1509
1425
 
1510
1426
 
1511
1427
 
1512
1428
 
1513
- #### [BusinessDetails](#BusinessDetails)
1429
+ #### [GetAddressSerializer](#GetAddressSerializer)
1514
1430
 
1515
1431
  | Properties | Type | Nullable | Description |
1516
1432
  | ---------- | ---- | -------- | ----------- |
1517
- | website | [Website](#Website) | no | |
1433
+ | country_code | string | no | |
1434
+ | country | string | no | |
1435
+ | pincode | number | no | |
1436
+ | state | string | no | |
1437
+ | landmark | string | no | |
1438
+ | address_type | string | no | |
1439
+ | longitude | number | yes | |
1440
+ | address2 | string | no | |
1441
+ | address1 | string | no | |
1442
+ | latitude | number | yes | |
1443
+ | city | string | no | |
1518
1444
 
1519
1445
  ---
1520
1446
 
1521
1447
 
1522
1448
 
1523
1449
 
1524
- #### [CompanyTaxesSerializer](#CompanyTaxesSerializer)
1450
+ #### [Document](#Document)
1525
1451
 
1526
1452
  | Properties | Type | Nullable | Description |
1527
1453
  | ---------- | ---- | -------- | ----------- |
1528
- | rate | number | no | |
1529
- | effective_date | string | no | |
1530
- | enable | boolean | no | |
1454
+ | url | string | no | |
1455
+ | legal_name | string | no | |
1456
+ | verified | boolean | no | |
1457
+ | type | string | yes | |
1458
+ | value | string | yes | |
1531
1459
 
1532
1460
  ---
1533
1461
 
1534
1462
 
1535
1463
 
1536
1464
 
1537
- #### [GetAddressSerializer](#GetAddressSerializer)
1465
+ #### [CompanyTaxesSerializer](#CompanyTaxesSerializer)
1538
1466
 
1539
1467
  | Properties | Type | Nullable | Description |
1540
1468
  | ---------- | ---- | -------- | ----------- |
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 | |
1547
- | pincode | number | no | |
1548
- | state | string | no | |
1549
- | country | string | no | |
1550
- | address2 | string | no | |
1551
- | country_code | string | no | |
1469
+ | rate | number | no | |
1470
+ | enable | boolean | no | |
1471
+ | effective_date | string | no | |
1552
1472
 
1553
1473
  ---
1554
1474
 
@@ -1559,28 +1479,28 @@ 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
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1482
+ | business_info | string | no | |
1565
1483
  | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1566
- | name | string | no | |
1484
+ | verified_on | string | no | |
1485
+ | contact_details | [ContactDetails](#ContactDetails) | no | |
1486
+ | stage | string | no | |
1567
1487
  | company_type | string | yes | |
1488
+ | _custom_json | string | no | |
1568
1489
  | business_type | string | yes | |
1569
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1570
1490
  | warnings | string | no | |
1491
+ | name | string | no | |
1571
1492
  | notification_emails | [string] | no | |
1572
- | uid | number | yes | |
1573
- | verified_on | string | no | |
1574
- | modified_on | string | no | |
1575
1493
  | created_by | [UserSerializer](#UserSerializer) | no | |
1494
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1576
1495
  | franchise_enabled | boolean | no | |
1496
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1577
1497
  | mode | string | no | |
1578
1498
  | business_details | [BusinessDetails](#BusinessDetails) | no | |
1579
- | _custom_json | string | no | |
1580
- | taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
1499
+ | modified_on | string | no | |
1581
1500
  | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1582
- | stage | string | no | |
1583
- | business_info | string | no | |
1501
+ | documents | [[Document](#Document)] | no | |
1502
+ | uid | number | yes | |
1503
+ | taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
1584
1504
  | created_on | string | no | |
1585
1505
 
1586
1506
  ---
@@ -1593,8 +1513,8 @@ Returns a success response
1593
1513
  | Properties | Type | Nullable | Description |
1594
1514
  | ---------- | ---- | -------- | ----------- |
1595
1515
  | message | string | no | |
1596
- | code | string | no | |
1597
1516
  | meta | string | no | |
1517
+ | code | string | no | |
1598
1518
  | status | number | no | |
1599
1519
 
1600
1520
  ---
@@ -1607,8 +1527,8 @@ Returns a success response
1607
1527
  | Properties | Type | Nullable | Description |
1608
1528
  | ---------- | ---- | -------- | ----------- |
1609
1529
  | rate | number | no | |
1610
- | effective_date | string | no | |
1611
1530
  | enable | boolean | no | |
1531
+ | effective_date | string | 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 | |
1542
+ | country_code | string | no | |
1543
+ | country | string | yes | |
1544
+ | pincode | number | yes | |
1545
+ | state | string | yes | |
1625
1546
  | landmark | string | no | |
1547
+ | address_type | string | yes | |
1626
1548
  | longitude | number | yes | |
1627
- | city | string | yes | |
1628
- | state | string | yes | |
1629
- | pincode | number | yes | |
1630
- | country | string | yes | |
1631
1549
  | address2 | string | no | |
1632
- | country_code | string | no | |
1550
+ | address1 | string | yes | |
1551
+ | latitude | number | yes | |
1552
+ | city | 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 | |
1563
+ | business_info | string | no | |
1646
1564
  | franchise_enabled | boolean | no | |
1647
- | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1565
+ | warnings | string | no | |
1648
1566
  | contact_details | [ContactDetails](#ContactDetails) | no | |
1567
+ | reject_reason | string | no | |
1568
+ | name | string | no | |
1649
1569
  | business_details | [BusinessDetails](#BusinessDetails) | no | |
1650
- | warnings | string | no | |
1651
1570
  | company_type | string | no | |
1652
- | name | string | no | |
1653
- | reject_reason | string | no | |
1654
- | notification_emails | [string] | no | |
1571
+ | documents | [[Document](#Document)] | no | |
1572
+ | taxes | [[CompanyTaxesSerializer1](#CompanyTaxesSerializer1)] | no | |
1655
1573
  | _custom_json | string | no | |
1656
- | business_info | string | no | |
1574
+ | business_type | string | no | |
1575
+ | notification_emails | [string] | no | |
1576
+ | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1657
1577
 
1658
1578
  ---
1659
1579
 
@@ -1664,8 +1584,8 @@ Returns a success response
1664
1584
 
1665
1585
  | Properties | Type | Nullable | Description |
1666
1586
  | ---------- | ---- | -------- | ----------- |
1667
- | success | boolean | no | |
1668
1587
  | uid | number | no | |
1588
+ | success | boolean | no | |
1669
1589
 
1670
1590
  ---
1671
1591
 
@@ -1676,8 +1596,8 @@ Returns a success response
1676
1596
 
1677
1597
  | Properties | Type | Nullable | Description |
1678
1598
  | ---------- | ---- | -------- | ----------- |
1679
- | verified | number | no | |
1680
1599
  | pending | number | no | |
1600
+ | verified | number | no | |
1681
1601
 
1682
1602
  ---
1683
1603
 
@@ -1688,13 +1608,13 @@ Returns a success response
1688
1608
 
1689
1609
  | Properties | Type | Nullable | Description |
1690
1610
  | ---------- | ---- | -------- | ----------- |
1691
- | store | [DocumentsObj](#DocumentsObj) | no | |
1692
- | stage | string | no | |
1693
- | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1611
+ | store_documents | [DocumentsObj](#DocumentsObj) | no | |
1612
+ | product | [DocumentsObj](#DocumentsObj) | no | |
1694
1613
  | brand | [DocumentsObj](#DocumentsObj) | no | |
1614
+ | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1615
+ | stage | string | no | |
1695
1616
  | uid | number | no | |
1696
- | product | [DocumentsObj](#DocumentsObj) | no | |
1697
- | store_documents | [DocumentsObj](#DocumentsObj) | no | |
1617
+ | store | [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
 
@@ -1717,25 +1637,25 @@ Returns a success response
1717
1637
 
1718
1638
  | Properties | Type | Nullable | Description |
1719
1639
  | ---------- | ---- | -------- | ----------- |
1720
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1640
+ | verified_on | string | no | |
1641
+ | stage | string | no | |
1642
+ | _custom_json | string | no | |
1643
+ | synonyms | [string] | no | |
1644
+ | logo | string | no | |
1645
+ | warnings | string | no | |
1721
1646
  | name | string | yes | |
1722
- | reject_reason | string | no | |
1723
- | _locale_language | string | no | |
1724
- | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1647
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1725
1648
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1726
- | warnings | string | no | |
1727
- | uid | number | no | |
1728
- | verified_on | string | no | |
1649
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1650
+ | mode | string | no | |
1651
+ | reject_reason | string | no | |
1729
1652
  | modified_on | string | no | |
1730
- | created_by | [UserSerializer](#UserSerializer) | no | |
1731
1653
  | slug_key | string | no | |
1732
- | mode | string | no | |
1733
1654
  | description | string | no | |
1734
- | _custom_json | string | no | |
1735
- | stage | string | no | |
1736
- | synonyms | [string] | no | |
1737
- | logo | string | no | |
1655
+ | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1656
+ | uid | number | no | |
1738
1657
  | created_on | string | no | |
1658
+ | _locale_language | string | no | |
1739
1659
 
1740
1660
  ---
1741
1661
 
@@ -1746,16 +1666,33 @@ Returns a success response
1746
1666
 
1747
1667
  | Properties | Type | Nullable | Description |
1748
1668
  | ---------- | ---- | -------- | ----------- |
1749
- | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1669
+ | description | string | no | |
1750
1670
  | brand_tier | string | no | |
1751
- | company_id | number | no | |
1671
+ | logo | string | yes | |
1752
1672
  | name | string | yes | |
1673
+ | company_id | number | no | |
1674
+ | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1753
1675
  | uid | number | no | |
1754
1676
  | _custom_json | string | no | |
1755
- | synonyms | [string] | no | |
1756
- | description | string | no | |
1757
1677
  | _locale_language | string | no | |
1758
- | logo | string | yes | |
1678
+ | synonyms | [string] | no | |
1679
+
1680
+ ---
1681
+
1682
+
1683
+
1684
+
1685
+ #### [Page](#Page)
1686
+
1687
+ | Properties | Type | Nullable | Description |
1688
+ | ---------- | ---- | -------- | ----------- |
1689
+ | has_next | boolean | no | |
1690
+ | next_id | string | no | |
1691
+ | current | number | no | |
1692
+ | type | string | yes | |
1693
+ | size | number | no | |
1694
+ | has_previous | boolean | no | |
1695
+ | item_total | number | no | |
1759
1696
 
1760
1697
  ---
1761
1698
 
@@ -1766,8 +1703,8 @@ Returns a success response
1766
1703
 
1767
1704
  | Properties | Type | Nullable | Description |
1768
1705
  | ---------- | ---- | -------- | ----------- |
1769
- | url | string | yes | |
1770
1706
  | name | string | yes | |
1707
+ | url | string | yes | |
1771
1708
 
1772
1709
  ---
1773
1710
 
@@ -1778,8 +1715,8 @@ Returns a success response
1778
1715
 
1779
1716
  | Properties | Type | Nullable | Description |
1780
1717
  | ---------- | ---- | -------- | ----------- |
1781
- | website_url | string | no | |
1782
1718
  | socials | [[CompanySocialAccounts](#CompanySocialAccounts)] | no | |
1719
+ | website_url | string | no | |
1783
1720
 
1784
1721
  ---
1785
1722
 
@@ -1790,24 +1727,24 @@ Returns a success response
1790
1727
 
1791
1728
  | Properties | Type | Nullable | Description |
1792
1729
  | ---------- | ---- | -------- | ----------- |
1793
- | business_type | string | yes | |
1794
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1730
+ | details | [CompanyDetails](#CompanyDetails) | no | |
1731
+ | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1795
1732
  | created_by | [UserSerializer](#UserSerializer) | no | |
1796
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1797
- | stage | string | no | |
1733
+ | verified_on | string | no | |
1798
1734
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1799
- | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1735
+ | reject_reason | string | no | |
1736
+ | stage | string | no | |
1800
1737
  | name | string | no | |
1801
1738
  | company_type | string | yes | |
1802
- | notification_emails | [string] | no | |
1803
- | reject_reason | string | no | |
1804
- | details | [CompanyDetails](#CompanyDetails) | no | |
1805
- | _custom_json | string | no | |
1806
1739
  | uid | number | no | |
1807
- | verified_on | string | no | |
1808
- | created_on | string | no | |
1740
+ | _custom_json | string | no | |
1809
1741
  | modified_on | string | no | |
1742
+ | business_type | string | yes | |
1743
+ | created_on | string | no | |
1744
+ | notification_emails | [string] | no | |
1810
1745
  | market_channels | [string] | no | |
1746
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1747
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1811
1748
 
1812
1749
  ---
1813
1750
 
@@ -1818,35 +1755,18 @@ Returns a success response
1818
1755
 
1819
1756
  | Properties | Type | Nullable | Description |
1820
1757
  | ---------- | ---- | -------- | ----------- |
1821
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1758
+ | company | [CompanySerializer](#CompanySerializer) | no | |
1822
1759
  | created_by | [UserSerializer](#UserSerializer) | no | |
1823
- | stage | string | no | |
1760
+ | brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
1761
+ | verified_on | string | no | |
1824
1762
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1825
1763
  | warnings | string | no | |
1826
- | company | [CompanySerializer](#CompanySerializer) | no | |
1827
1764
  | reject_reason | string | no | |
1828
- | brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
1765
+ | stage | string | no | |
1829
1766
  | uid | number | no | |
1830
- | verified_on | string | no | |
1831
- | created_on | string | no | |
1832
1767
  | modified_on | string | no | |
1833
-
1834
- ---
1835
-
1836
-
1837
-
1838
-
1839
- #### [Page](#Page)
1840
-
1841
- | Properties | Type | Nullable | Description |
1842
- | ---------- | ---- | -------- | ----------- |
1843
- | item_total | number | no | |
1844
- | current | number | no | |
1845
- | has_next | boolean | no | |
1846
- | has_previous | boolean | no | |
1847
- | size | number | no | |
1848
- | next_id | string | no | |
1849
- | type | string | yes | |
1768
+ | created_on | string | no | |
1769
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1850
1770
 
1851
1771
  ---
1852
1772
 
@@ -1857,8 +1777,8 @@ Returns a success response
1857
1777
 
1858
1778
  | Properties | Type | Nullable | Description |
1859
1779
  | ---------- | ---- | -------- | ----------- |
1860
- | items | [[CompanyBrandSerializer](#CompanyBrandSerializer)] | no | |
1861
1780
  | page | [Page](#Page) | no | |
1781
+ | items | [[CompanyBrandSerializer](#CompanyBrandSerializer)] | no | |
1862
1782
 
1863
1783
  ---
1864
1784
 
@@ -1870,107 +1790,107 @@ Returns a success response
1870
1790
  | Properties | Type | Nullable | Description |
1871
1791
  | ---------- | ---- | -------- | ----------- |
1872
1792
  | company | number | yes | |
1873
- | brands | [number] | yes | |
1874
1793
  | uid | number | no | |
1794
+ | brands | [number] | yes | |
1875
1795
 
1876
1796
  ---
1877
1797
 
1878
1798
 
1879
1799
 
1880
1800
 
1881
- #### [GetCompanySerializer](#GetCompanySerializer)
1801
+ #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
1882
1802
 
1883
1803
  | Properties | Type | Nullable | Description |
1884
1804
  | ---------- | ---- | -------- | ----------- |
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 | |
1805
+ | on_same_store | boolean | no | |
1806
+ | store_uid | number | no | |
1898
1807
 
1899
1808
  ---
1900
1809
 
1901
1810
 
1902
1811
 
1903
1812
 
1904
- #### [LocationManagerSerializer](#LocationManagerSerializer)
1813
+ #### [HolidayDateSerializer](#HolidayDateSerializer)
1905
1814
 
1906
1815
  | Properties | Type | Nullable | Description |
1907
1816
  | ---------- | ---- | -------- | ----------- |
1908
- | email | string | no | |
1909
- | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
1910
- | name | string | no | |
1817
+ | end_date | string | yes | |
1818
+ | start_date | string | yes | |
1911
1819
 
1912
1820
  ---
1913
1821
 
1914
1822
 
1915
1823
 
1916
1824
 
1917
- #### [LocationTimingSerializer](#LocationTimingSerializer)
1825
+ #### [HolidaySchemaSerializer](#HolidaySchemaSerializer)
1918
1826
 
1919
1827
  | Properties | Type | Nullable | Description |
1920
1828
  | ---------- | ---- | -------- | ----------- |
1921
- | hour | number | yes | |
1922
- | minute | number | yes | |
1829
+ | title | string | yes | |
1830
+ | holiday_type | string | yes | |
1831
+ | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1923
1832
 
1924
1833
  ---
1925
1834
 
1926
1835
 
1927
1836
 
1928
1837
 
1929
- #### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
1838
+ #### [LocationTimingSerializer](#LocationTimingSerializer)
1930
1839
 
1931
1840
  | Properties | Type | Nullable | Description |
1932
1841
  | ---------- | ---- | -------- | ----------- |
1933
- | open | boolean | yes | |
1934
- | opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1935
- | weekday | string | yes | |
1936
- | closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1842
+ | minute | number | yes | |
1843
+ | hour | number | yes | |
1937
1844
 
1938
1845
  ---
1939
1846
 
1940
1847
 
1941
1848
 
1942
1849
 
1943
- #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
1850
+ #### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
1944
1851
 
1945
1852
  | Properties | Type | Nullable | Description |
1946
1853
  | ---------- | ---- | -------- | ----------- |
1947
- | on_same_store | boolean | no | |
1948
- | store_uid | number | no | |
1854
+ | closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1855
+ | opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1856
+ | open | boolean | yes | |
1857
+ | weekday | string | yes | |
1949
1858
 
1950
1859
  ---
1951
1860
 
1952
1861
 
1953
1862
 
1954
1863
 
1955
- #### [HolidayDateSerializer](#HolidayDateSerializer)
1864
+ #### [LocationManagerSerializer](#LocationManagerSerializer)
1956
1865
 
1957
1866
  | Properties | Type | Nullable | Description |
1958
1867
  | ---------- | ---- | -------- | ----------- |
1959
- | start_date | string | yes | |
1960
- | end_date | string | yes | |
1868
+ | email | string | no | |
1869
+ | name | string | no | |
1870
+ | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
1961
1871
 
1962
1872
  ---
1963
1873
 
1964
1874
 
1965
1875
 
1966
1876
 
1967
- #### [HolidaySchemaSerializer](#HolidaySchemaSerializer)
1877
+ #### [GetCompanySerializer](#GetCompanySerializer)
1968
1878
 
1969
1879
  | Properties | Type | Nullable | Description |
1970
1880
  | ---------- | ---- | -------- | ----------- |
1971
- | holiday_type | string | yes | |
1972
- | title | string | yes | |
1973
- | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1881
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1882
+ | verified_on | string | no | |
1883
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1884
+ | reject_reason | string | no | |
1885
+ | stage | string | no | |
1886
+ | name | string | no | |
1887
+ | company_type | string | no | |
1888
+ | uid | number | no | |
1889
+ | modified_on | string | no | |
1890
+ | business_type | string | no | |
1891
+ | created_on | string | no | |
1892
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1893
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1974
1894
 
1975
1895
  ---
1976
1896
 
@@ -2006,30 +1926,30 @@ Returns a success response
2006
1926
 
2007
1927
  | Properties | Type | Nullable | Description |
2008
1928
  | ---------- | ---- | -------- | ----------- |
2009
- | documents | [[Document](#Document)] | no | |
2010
- | 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
- | modified_by | [UserSerializer](#UserSerializer) | no | |
2016
- | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
1929
+ | verified_on | string | no | |
1930
+ | stage | string | no | |
2017
1931
  | display_name | string | yes | |
2018
- | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2019
- | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1932
+ | _custom_json | string | no | |
1933
+ | phone_number | string | no | |
2020
1934
  | warnings | string | no | |
1935
+ | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1936
+ | name | string | yes | |
2021
1937
  | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2022
1938
  | notification_emails | [string] | no | |
2023
- | uid | number | no | |
2024
- | verified_on | string | no | |
2025
- | modified_on | string | no | |
2026
- | code | string | yes | |
2027
1939
  | 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 | |
1940
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1941
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1942
+ | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
1943
+ | code | string | yes | |
1944
+ | modified_on | string | no | |
1945
+ | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2032
1946
  | address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
1947
+ | company | [GetCompanySerializer](#GetCompanySerializer) | no | |
1948
+ | store_type | string | no | |
1949
+ | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
1950
+ | documents | [[Document](#Document)] | no | |
1951
+ | uid | number | no | |
1952
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2033
1953
  | created_on | string | no | |
2034
1954
 
2035
1955
  ---
@@ -2041,8 +1961,8 @@ Returns a success response
2041
1961
 
2042
1962
  | Properties | Type | Nullable | Description |
2043
1963
  | ---------- | ---- | -------- | ----------- |
2044
- | items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
2045
1964
  | page | [Page](#Page) | no | |
1965
+ | items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
2046
1966
 
2047
1967
  ---
2048
1968
 
@@ -2053,17 +1973,17 @@ Returns a success response
2053
1973
 
2054
1974
  | Properties | Type | Nullable | Description |
2055
1975
  | ---------- | ---- | -------- | ----------- |
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 | |
1976
+ | country_code | string | no | |
1977
+ | country | string | no | |
2062
1978
  | pincode | number | no | |
2063
1979
  | state | string | no | |
2064
- | country | string | no | |
1980
+ | landmark | string | no | |
1981
+ | address_type | string | no | |
1982
+ | longitude | number | yes | |
2065
1983
  | address2 | string | no | |
2066
- | country_code | string | no | |
1984
+ | address1 | string | no | |
1985
+ | latitude | number | yes | |
1986
+ | city | string | no | |
2067
1987
 
2068
1988
  ---
2069
1989
 
@@ -2074,24 +1994,24 @@ Returns a success response
2074
1994
 
2075
1995
  | Properties | Type | Nullable | Description |
2076
1996
  | ---------- | ---- | -------- | ----------- |
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 | |
1997
+ | company | number | yes | |
2083
1998
  | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1999
+ | store_type | string | no | |
2084
2000
  | warnings | string | no | |
2001
+ | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2002
+ | code | string | yes | |
2085
2003
  | name | string | yes | |
2086
- | company | number | yes | |
2087
2004
  | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2088
- | notification_emails | [string] | no | |
2089
- | _custom_json | string | no | |
2005
+ | stage | string | no | |
2006
+ | display_name | string | yes | |
2007
+ | documents | [[Document](#Document)] | no | |
2090
2008
  | uid | number | no | |
2091
- | address | [AddressSerializer](#AddressSerializer) | yes | |
2092
- | store_type | string | no | |
2093
2009
  | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2094
- | code | string | yes | |
2010
+ | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2011
+ | _custom_json | string | no | |
2012
+ | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2013
+ | notification_emails | [string] | no | |
2014
+ | address | [AddressSerializer](#AddressSerializer) | yes | |
2095
2015
 
2096
2016
  ---
2097
2017
 
@@ -2107,87 +2027,5 @@ Returns a success response
2107
2027
  ---
2108
2028
 
2109
2029
 
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)
2125
-
2126
- | Properties | Type | Nullable | Description |
2127
- | ---------- | ---- | -------- | ----------- |
2128
- | item_id | number | no | |
2129
- | size | string | no | |
2130
- | ignored_stores | [number] | no | |
2131
-
2132
- ---
2133
-
2134
-
2135
-
2136
-
2137
- #### [_AssignStoreArticle](#_AssignStoreArticle)
2138
-
2139
- | Properties | Type | Nullable | Description |
2140
- | ---------- | ---- | -------- | ----------- |
2141
- | quantity | number | no | |
2142
- | article_assignment | [_ArticleAssignment](#_ArticleAssignment) | no | |
2143
- | meta | string | no | |
2144
- | group_id | string | no | |
2145
- | query | [_ArticleQuery](#_ArticleQuery) | no | |
2146
-
2147
- ---
2148
-
2149
-
2150
-
2151
-
2152
- #### [AssignStoreRequestValidator](#AssignStoreRequestValidator)
2153
-
2154
- | Properties | Type | Nullable | Description |
2155
- | ---------- | ---- | -------- | ----------- |
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 | |
2163
-
2164
- ---
2165
-
2166
-
2167
-
2168
-
2169
- #### [AssignStoreResponseSerializer](#AssignStoreResponseSerializer)
2170
-
2171
- | Properties | Type | Nullable | Description |
2172
- | ---------- | ---- | -------- | ----------- |
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 | |
2188
-
2189
- ---
2190
-
2191
-
2192
2030
 
2193
2031