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