@gofynd/fdk-client-javascript 0.1.37 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (353) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +315 -289
  5. package/documentation/application/CATALOG.md +427 -404
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +45 -45
  9. package/documentation/application/ORDER.md +287 -287
  10. package/documentation/application/PAYMENT.md +278 -278
  11. package/documentation/application/POSCART.md +318 -292
  12. package/documentation/application/REWARDS.md +1 -0
  13. package/documentation/application/USER.md +19 -14
  14. package/documentation/platform/CART.md +465 -462
  15. package/documentation/platform/CATALOG.md +2691 -2624
  16. package/documentation/platform/COMPANYPROFILE.md +186 -348
  17. package/documentation/platform/DISCOUNT.md +86 -0
  18. package/documentation/platform/FILESTORAGE.md +2 -0
  19. package/documentation/platform/LEAD.md +60 -60
  20. package/documentation/platform/ORDER.md +1299 -1621
  21. package/documentation/platform/PAYMENT.md +89 -89
  22. package/documentation/platform/REWARDS.md +145 -0
  23. package/documentation/platform/USER.md +24 -14
  24. package/index.d.ts +4 -1
  25. package/index.js +6 -3
  26. package/package.json +9 -9
  27. package/platform.d.ts +2 -1
  28. package/platform.js +3 -2
  29. package/public.d.ts +1 -0
  30. package/public.js +3 -2
  31. package/sdk/application/ApplicationAPIClient.js +3 -1
  32. package/sdk/application/ApplicationClient.d.ts +16 -16
  33. package/sdk/application/ApplicationClient.js +32 -16
  34. package/sdk/application/ApplicationConfig.js +3 -2
  35. package/sdk/application/ApplicationModels.d.ts +0 -832
  36. package/sdk/application/ApplicationModels.js +3 -10574
  37. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  38. package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
  39. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  40. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  41. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
  42. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  43. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
  44. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  45. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  46. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
  47. package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
  48. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  49. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  50. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
  51. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
  52. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  53. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  54. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
  55. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
  56. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  57. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  58. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
  59. package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
  60. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  61. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  62. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
  63. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
  64. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  65. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  66. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
  67. package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
  68. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  69. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  70. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
  71. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
  72. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  73. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  74. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
  75. package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
  76. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  77. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  78. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
  79. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
  80. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  81. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  82. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
  83. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  84. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
  85. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  86. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  87. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
  88. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
  89. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  90. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  91. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
  92. package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
  93. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  94. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  95. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
  96. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
  97. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  98. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  99. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
  100. package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
  101. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  102. package/sdk/application/User/UserApplicationModel.js +998 -0
  103. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
  104. package/sdk/application/index.d.ts +18 -0
  105. package/sdk/application/index.js +33 -0
  106. package/sdk/common/AxiosHelper.js +23 -10
  107. package/sdk/common/Logger.d.ts +2 -0
  108. package/sdk/common/Logger.js +6 -0
  109. package/sdk/common/curlHelper.d.ts +2 -0
  110. package/sdk/common/curlHelper.js +95 -0
  111. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  112. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
  113. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  114. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  115. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
  116. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  118. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  119. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
  120. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  121. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  122. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  123. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
  124. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  125. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  126. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  127. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  128. package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
  129. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  130. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  131. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  132. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  133. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  134. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
  135. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  136. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  137. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
  138. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
  139. package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
  140. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
  141. package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
  142. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  143. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  144. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  145. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  146. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
  147. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  148. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  149. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
  150. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  151. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  152. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  153. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  154. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
  155. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  156. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  157. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  158. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  159. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  160. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
  161. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  162. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  163. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
  164. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  165. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  166. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  167. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  168. package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
  169. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  170. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  171. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  172. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  173. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  174. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
  175. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  176. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  177. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  178. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  179. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  180. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
  181. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  182. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  183. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
  184. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  185. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  186. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  187. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
  188. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  189. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  190. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  191. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  192. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
  193. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  194. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  195. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
  196. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  197. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  198. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  199. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  200. package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
  201. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  202. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  203. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
  204. package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
  205. package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
  206. package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
  207. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
  208. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
  209. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  210. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
  211. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  212. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  213. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  214. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  215. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  216. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
  217. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  218. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  219. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
  220. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  221. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  222. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  223. package/sdk/platform/PlatformAPIClient.js +2 -1
  224. package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
  225. package/sdk/platform/PlatformApplicationClient.js +3811 -13957
  226. package/sdk/platform/PlatformClient.d.ts +2982 -3013
  227. package/sdk/platform/PlatformClient.js +3806 -3231
  228. package/sdk/platform/PlatformConfig.js +2 -1
  229. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  230. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
  231. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  232. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  233. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  234. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  235. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  236. package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
  237. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  238. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  239. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  240. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  241. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  242. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
  243. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  244. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  245. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  246. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  247. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  248. package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
  249. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  250. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  251. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  252. package/sdk/platform/User/UserPlatformModel.js +998 -0
  253. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
  254. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  255. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  256. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  257. package/sdk/platform/index.d.ts +24 -0
  258. package/sdk/platform/index.js +45 -0
  259. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
  260. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  261. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  262. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
  263. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
  264. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  265. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  266. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
  267. package/sdk/public/PublicClient.d.ts +3 -3
  268. package/sdk/public/PublicClient.js +8 -3
  269. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
  270. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  271. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  272. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
  273. package/sdk/public/index.d.ts +5 -0
  274. package/sdk/public/index.js +7 -0
  275. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  276. package/sdk/platform/PlatformApplicationModels.js +0 -22658
  277. package/sdk/platform/PlatformModels.d.ts +0 -1477
  278. package/sdk/platform/PlatformModels.js +0 -20646
  279. package/sdk/platform/models/CartValidator.d.ts +0 -0
  280. package/sdk/platform/models/CartValidator.js +0 -0
  281. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  282. package/sdk/platform/models/ContentValidator.js +0 -0
  283. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  284. package/sdk/platform/models/PartnerValidator.js +0 -0
  285. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  286. package/sdk/platform/models/RewardsValidator.js +0 -0
  287. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  288. package/sdk/platform/models/ShareValidator.js +0 -0
  289. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  290. package/sdk/platform/models/ThemeValidator.js +0 -0
  291. package/sdk/platform/models/UserValidator.d.ts +0 -0
  292. package/sdk/platform/models/UserValidator.js +0 -0
  293. package/sdk/public/PublicModels.d.ts +0 -50
  294. package/sdk/public/PublicModels.js +0 -712
  295. package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  296. package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  297. package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  298. package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  299. package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  300. package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  301. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  302. package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  303. package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  304. package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  305. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  306. package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  307. package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  308. package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  309. package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
  310. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
  311. package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  312. package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  313. package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  314. package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  315. package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  316. package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  317. package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  318. package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  319. package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  320. package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  321. package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  322. package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  323. package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  324. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  325. package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  326. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  327. package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  328. package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  329. package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  330. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
  331. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
  332. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  348. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  349. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  350. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  351. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -25,8 +25,6 @@ Handles all platform order and shipment api(s)
25
25
  * [getBulkInvoiceLabel](#getbulkinvoicelabel)
26
26
  * [getBulkShipmentExcelFile](#getbulkshipmentexcelfile)
27
27
  * [getBulkList](#getbulklist)
28
- * [getManifestList](#getmanifestlist)
29
- * [getManifestDetailsWithShipments](#getmanifestdetailswithshipments)
30
28
  * [getBulkActionFailedReport](#getbulkactionfailedreport)
31
29
  * [getShipmentReasons](#getshipmentreasons)
32
30
  * [bulkActionProcessXlsxFile](#bulkactionprocessxlsxfile)
@@ -1611,6 +1609,10 @@ We are processing the report!
1611
1609
  // Promise
1612
1610
  const promise = client.order.getOrders({ lane : value,
1613
1611
  searchType : value,
1612
+ bagStatus : value,
1613
+ timeToDispatch : value,
1614
+ paymentMethods : value,
1615
+ tags : value,
1614
1616
  searchValue : value,
1615
1617
  fromDate : value,
1616
1618
  toDate : value,
@@ -1625,6 +1627,10 @@ const promise = client.order.getOrders({ lane : value,
1625
1627
  // Async/Await
1626
1628
  const data = await client.order.getOrders({ lane : value,
1627
1629
  searchType : value,
1630
+ bagStatus : value,
1631
+ timeToDispatch : value,
1632
+ paymentMethods : value,
1633
+ tags : value,
1628
1634
  searchValue : value,
1629
1635
  fromDate : value,
1630
1636
  toDate : value,
@@ -1645,6 +1651,10 @@ const data = await client.order.getOrders({ lane : value,
1645
1651
  | --------- | ----- | -------- | ----------- |
1646
1652
  | lane | string | no | |
1647
1653
  | searchType | string | no | |
1654
+ | bagStatus | string | no | |
1655
+ | timeToDispatch | string | no | |
1656
+ | paymentMethods | string | no | |
1657
+ | tags | string | no | |
1648
1658
  | searchValue | string | no | |
1649
1659
  | fromDate | string | no | |
1650
1660
  | toDate | string | no | |
@@ -3114,259 +3124,6 @@ We are processing the file!
3114
3124
 
3115
3125
 
3116
3126
 
3117
- ---
3118
-
3119
-
3120
- ### getManifestList
3121
-
3122
-
3123
-
3124
-
3125
- ```javascript
3126
- // Promise
3127
- const promise = client.order.getManifestList({ status : value,
3128
- storeId : value,
3129
- pageNo : value,
3130
- pageSize : value,
3131
- searchValue : value,
3132
- fromDate : value,
3133
- toDate : value });
3134
-
3135
- // Async/Await
3136
- const data = await client.order.getManifestList({ status : value,
3137
- storeId : value,
3138
- pageNo : value,
3139
- pageSize : value,
3140
- searchValue : value,
3141
- fromDate : value,
3142
- toDate : value });
3143
- ```
3144
-
3145
-
3146
-
3147
-
3148
-
3149
- | Argument | Type | Required | Description |
3150
- | --------- | ----- | -------- | ----------- |
3151
- | status | string | no | |
3152
- | storeId | number | no | |
3153
- | pageNo | number | no | |
3154
- | pageSize | number | no | |
3155
- | searchValue | string | no | |
3156
- | fromDate | string | no | |
3157
- | toDate | string | no | |
3158
-
3159
-
3160
-
3161
-
3162
-
3163
- *Returned Response:*
3164
-
3165
-
3166
-
3167
-
3168
- [GeneratedManifestResponse](#GeneratedManifestResponse)
3169
-
3170
- We are processing the file!
3171
-
3172
-
3173
-
3174
-
3175
- <details>
3176
- <summary><i>&nbsp; Example:</i></summary>
3177
-
3178
- ```json
3179
- {
3180
- "items": [
3181
- {
3182
- "is_active": true,
3183
- "manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
3184
- "company_id": 1,
3185
- "created_at": "26-11-2022",
3186
- "created_by": "nehashetye_gofynd_com_71847",
3187
- "filters": {
3188
- "lane": "ready_for_dispatch",
3189
- "dp_ids": 30,
3190
- "stores": 357,
3191
- "dp_name": "Delhivery",
3192
- "date_range": {
3193
- "to_date": "18-11-2022",
3194
- "from_date": "20-05-2022"
3195
- },
3196
- "store_name": "reliance",
3197
- "sales_channels": "62186fce51e60369e2b093e6",
3198
- "sales_channel_name": "fynd"
3199
- },
3200
- "status": "process"
3201
- }
3202
- ],
3203
- "page": {
3204
- "current": "1",
3205
- "total": 1,
3206
- "has_previous": false,
3207
- "has_next": false,
3208
- "type": "number",
3209
- "size": "100"
3210
- }
3211
- }
3212
- ```
3213
- </details>
3214
-
3215
-
3216
-
3217
-
3218
-
3219
-
3220
-
3221
-
3222
-
3223
- ---
3224
-
3225
-
3226
- ### getManifestDetailsWithShipments
3227
-
3228
-
3229
-
3230
-
3231
- ```javascript
3232
- // Promise
3233
- const promise = client.order.getManifestDetailsWithShipments({ manifestId : value,
3234
- storeId : value,
3235
- fromDate : value,
3236
- toDate : value,
3237
- page : value,
3238
- pageSize : value,
3239
- lane : value,
3240
- dpIds : value,
3241
- searchType : value,
3242
- searchValue : value });
3243
-
3244
- // Async/Await
3245
- const data = await client.order.getManifestDetailsWithShipments({ manifestId : value,
3246
- storeId : value,
3247
- fromDate : value,
3248
- toDate : value,
3249
- page : value,
3250
- pageSize : value,
3251
- lane : value,
3252
- dpIds : value,
3253
- searchType : value,
3254
- searchValue : value });
3255
- ```
3256
-
3257
-
3258
-
3259
-
3260
-
3261
- | Argument | Type | Required | Description |
3262
- | --------- | ----- | -------- | ----------- |
3263
- | manifestId | string | yes | |
3264
- | fromDate | string | no | |
3265
- | toDate | string | no | |
3266
- | storeId | number | yes | |
3267
- | page | number | no | |
3268
- | pageSize | number | no | |
3269
- | lane | string | no | |
3270
- | dpIds | number | no | |
3271
- | searchType | string | no | |
3272
- | searchValue | string | no | |
3273
-
3274
-
3275
-
3276
-
3277
-
3278
- *Returned Response:*
3279
-
3280
-
3281
-
3282
-
3283
- [ManifestDetailResponse](#ManifestDetailResponse)
3284
-
3285
- We are processing the file!
3286
-
3287
-
3288
-
3289
-
3290
- <details>
3291
- <summary><i>&nbsp; Example:</i></summary>
3292
-
3293
- ```json
3294
- {
3295
- "manifest_details": [
3296
- {
3297
- "is_active": true,
3298
- "manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
3299
- "company_id": 1,
3300
- "created_at": "26-11-2022",
3301
- "created_by": "nehashetye_gofynd_com_71847",
3302
- "filters": {
3303
- "lane": "ready_for_dispatch",
3304
- "dp_ids": 30,
3305
- "stores": 357,
3306
- "dp_name": "Delhivery",
3307
- "date_range": {
3308
- "to_date": "18-11-2022",
3309
- "from_date": "20-05-2022"
3310
- },
3311
- "store_name": "reliance",
3312
- "sales_channels": "62186fce51e60369e2b093e6",
3313
- "sales_channel_name": "fynd"
3314
- },
3315
- "meta": {
3316
- "filters": {
3317
- "lane": "ready_for_dispatch",
3318
- "dp_ids": 30,
3319
- "stores": 357,
3320
- "dp_name": "Delhivery",
3321
- "date_range": {
3322
- "to_date": "18-11-2022",
3323
- "from_date": "20-05-2022"
3324
- },
3325
- "store_name": "reliance",
3326
- "sales_channels": "62186fce51e60369e2b093e6",
3327
- "sales_channel_name": "fynd"
3328
- },
3329
- "total_shipment_prices_count": {
3330
- "total_price": 4792,
3331
- "shipment_count": 8
3332
- }
3333
- },
3334
- "status": "process",
3335
- "uid": 11,
3336
- "user_id": "5f23c85bf4439a812561443a",
3337
- "id": "6381ca603a81bc8a08f340de"
3338
- }
3339
- ],
3340
- "items": [
3341
- {
3342
- "shipment_id": "16631665711791409923",
3343
- "order_id": "FYMP6321E86B01D585CA",
3344
- "invoice_id": "1111111111111112",
3345
- "awb": null,
3346
- "item_qty": 1
3347
- }
3348
- ],
3349
- "page": {
3350
- "current": 1,
3351
- "total": 1,
3352
- "has_previous": false,
3353
- "has_next": false,
3354
- "type": "number",
3355
- "size": 10
3356
- },
3357
- "additional_shipment_count": 0
3358
- }
3359
- ```
3360
- </details>
3361
-
3362
-
3363
-
3364
-
3365
-
3366
-
3367
-
3368
-
3369
-
3370
3127
  ---
3371
3128
 
3372
3129
 
@@ -5079,196 +4836,196 @@ Sms Sent successfully
5079
4836
 
5080
4837
 
5081
4838
 
5082
- #### [UserDataInfo](#UserDataInfo)
4839
+ #### [FilterInfoOption](#FilterInfoOption)
5083
4840
 
5084
4841
  | Properties | Type | Nullable | Description |
5085
4842
  | ---------- | ---- | -------- | ----------- |
5086
- | uid | number | no | |
5087
- | avis_user_id | string | no | |
5088
- | email | string | no | |
5089
- | last_name | string | no | |
4843
+ | text | string | yes | |
4844
+ | value | string | no | |
5090
4845
  | name | string | no | |
5091
- | is_anonymous_user | boolean | no | |
5092
- | gender | string | no | |
5093
- | first_name | string | no | |
5094
- | mobile | string | no | |
5095
4846
 
5096
4847
  ---
5097
4848
 
5098
4849
 
5099
4850
 
5100
4851
 
5101
- #### [GSTDetailsData](#GSTDetailsData)
4852
+ #### [FiltersInfo](#FiltersInfo)
5102
4853
 
5103
4854
  | Properties | Type | Nullable | Description |
5104
4855
  | ---------- | ---- | -------- | ----------- |
5105
- | brand_calculated_amount | number | yes | |
5106
- | value_of_good | number | yes | |
5107
- | gstin_code | string | yes | |
5108
- | tax_collected_at_source | number | yes | |
5109
- | gst_fee | number | yes | |
4856
+ | text | string | yes | |
4857
+ | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
4858
+ | type | string | yes | |
4859
+ | value | string | yes | |
5110
4860
 
5111
4861
  ---
5112
4862
 
5113
4863
 
5114
4864
 
5115
4865
 
5116
- #### [Prices](#Prices)
4866
+ #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
5117
4867
 
5118
4868
  | Properties | Type | Nullable | Description |
5119
4869
  | ---------- | ---- | -------- | ----------- |
5120
- | discount | number | no | |
5121
- | cod_charges | number | no | |
5122
- | refund_credit | number | no | |
5123
- | delivery_charge | number | no | |
5124
- | cashback_applied | number | no | |
5125
- | amount_paid | number | no | |
5126
- | tax_collected_at_source | number | no | |
5127
- | price_effective | number | no | |
5128
- | value_of_good | number | no | |
5129
- | refund_amount | number | no | |
5130
- | amount_paid_roundoff | number | no | |
5131
- | fynd_credits | number | no | |
5132
- | coupon_value | number | no | |
5133
- | cashback | number | no | |
5134
- | price_marked | number | no | |
5135
- | promotion_effective_discount | number | no | |
4870
+ | code | string | yes | |
4871
+ | id | string | yes | |
5136
4872
 
5137
4873
  ---
5138
4874
 
5139
4875
 
5140
4876
 
5141
4877
 
5142
- #### [PlatformItem](#PlatformItem)
4878
+ #### [ShipmentStatus](#ShipmentStatus)
5143
4879
 
5144
4880
  | Properties | Type | Nullable | Description |
5145
4881
  | ---------- | ---- | -------- | ----------- |
5146
- | department_id | number | no | |
5147
- | code | string | no | |
5148
- | image | [string] | no | |
5149
- | l1_category | [string] | no | |
5150
- | color | string | no | |
5151
- | name | string | no | |
5152
- | id | number | no | |
5153
- | l3_category | number | no | |
5154
- | size | string | no | |
5155
- | images | [string] | no | |
5156
- | can_return | boolean | no | |
5157
- | l3_category_name | string | no | |
5158
- | can_cancel | boolean | no | |
4882
+ | title | string | yes | |
4883
+ | status | string | yes | |
4884
+ | actual_status | string | yes | |
4885
+ | ops_status | string | yes | |
4886
+ | hex_code | string | yes | |
5159
4887
 
5160
4888
  ---
5161
4889
 
5162
4890
 
5163
4891
 
5164
4892
 
5165
- #### [BagUnit](#BagUnit)
4893
+ #### [PaymentModeInfo](#PaymentModeInfo)
5166
4894
 
5167
4895
  | Properties | Type | Nullable | Description |
5168
4896
  | ---------- | ---- | -------- | ----------- |
5169
- | item_quantity | number | yes | |
5170
- | ordering_channel | string | yes | |
5171
- | shipment_id | string | yes | |
5172
- | total_shipment_bags | number | yes | |
5173
- | status | string | yes | |
5174
- | gst | [GSTDetailsData](#GSTDetailsData) | no | |
5175
- | prices | [Prices](#Prices) | no | |
5176
- | bag_id | number | yes | |
5177
- | item | [PlatformItem](#PlatformItem) | no | |
5178
- | can_return | boolean | no | |
5179
- | can_cancel | boolean | no | |
4897
+ | logo | string | yes | |
4898
+ | type | string | yes | |
5180
4899
 
5181
4900
  ---
5182
4901
 
5183
4902
 
5184
4903
 
5185
4904
 
5186
- #### [PaymentModeInfo](#PaymentModeInfo)
4905
+ #### [PlatformItem](#PlatformItem)
5187
4906
 
5188
4907
  | Properties | Type | Nullable | Description |
5189
4908
  | ---------- | ---- | -------- | ----------- |
5190
- | type | string | yes | |
5191
- | logo | string | yes | |
4909
+ | can_cancel | boolean | no | |
4910
+ | l1_category | [string] | no | |
4911
+ | name | string | no | |
4912
+ | l3_category_name | string | no | |
4913
+ | color | string | no | |
4914
+ | size | string | no | |
4915
+ | images | [string] | no | |
4916
+ | l3_category | number | no | |
4917
+ | id | number | no | |
4918
+ | image | [string] | no | |
4919
+ | can_return | boolean | no | |
4920
+ | code | string | no | |
4921
+ | department_id | number | no | |
5192
4922
 
5193
4923
  ---
5194
4924
 
5195
4925
 
5196
4926
 
5197
4927
 
5198
- #### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
4928
+ #### [Prices](#Prices)
5199
4929
 
5200
4930
  | Properties | Type | Nullable | Description |
5201
4931
  | ---------- | ---- | -------- | ----------- |
5202
- | id | string | yes | |
5203
- | code | string | yes | |
5204
-
4932
+ | cashback | number | no | |
4933
+ | coupon_value | number | no | |
4934
+ | price_effective | number | no | |
4935
+ | amount_paid | number | no | |
4936
+ | discount | number | no | |
4937
+ | cashback_applied | number | no | |
4938
+ | cod_charges | number | no | |
4939
+ | fynd_credits | number | no | |
4940
+ | refund_amount | number | no | |
4941
+ | price_marked | number | no | |
4942
+ | tax_collected_at_source | number | no | |
4943
+ | delivery_charge | number | no | |
4944
+ | amount_paid_roundoff | number | no | |
4945
+ | promotion_effective_discount | number | no | |
4946
+ | refund_credit | number | no | |
4947
+ | value_of_good | number | no | |
4948
+
5205
4949
  ---
5206
4950
 
5207
4951
 
5208
4952
 
5209
4953
 
5210
- #### [ShipmentStatus](#ShipmentStatus)
4954
+ #### [GSTDetailsData](#GSTDetailsData)
5211
4955
 
5212
4956
  | Properties | Type | Nullable | Description |
5213
4957
  | ---------- | ---- | -------- | ----------- |
5214
- | ops_status | string | yes | |
5215
- | actual_status | string | yes | |
5216
- | title | string | yes | |
5217
- | status | string | yes | |
5218
- | hex_code | string | yes | |
4958
+ | gst_fee | number | yes | |
4959
+ | tax_collected_at_source | number | yes | |
4960
+ | value_of_good | number | yes | |
4961
+ | gstin_code | string | yes | |
4962
+ | brand_calculated_amount | number | yes | |
5219
4963
 
5220
4964
  ---
5221
4965
 
5222
4966
 
5223
4967
 
5224
4968
 
5225
- #### [ShipmentItem](#ShipmentItem)
4969
+ #### [BagUnit](#BagUnit)
5226
4970
 
5227
4971
  | Properties | Type | Nullable | Description |
5228
4972
  | ---------- | ---- | -------- | ----------- |
5229
- | sla | string | no | |
5230
- | total_bags_count | number | yes | |
5231
- | payment_methods | string | no | |
5232
- | created_at | string | yes | |
5233
- | user | [UserDataInfo](#UserDataInfo) | no | |
5234
- | bags | [[BagUnit](#BagUnit)] | no | |
5235
- | payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
4973
+ | can_cancel | boolean | no | |
4974
+ | shipment_id | string | yes | |
4975
+ | item | [PlatformItem](#PlatformItem) | no | |
4976
+ | status | string | yes | |
4977
+ | ordering_channel | string | yes | |
4978
+ | total_shipment_bags | number | yes | |
4979
+ | item_quantity | number | yes | |
4980
+ | can_return | boolean | no | |
5236
4981
  | prices | [Prices](#Prices) | no | |
5237
- | id | string | yes | |
5238
- | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5239
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5240
- | application | string | no | |
5241
- | shipment_created_at | number | yes | |
5242
- | fulfilling_centre | string | yes | |
5243
- | total_shipments_in_order | number | yes | |
5244
- | channel | string | no | |
4982
+ | gst | [GSTDetailsData](#GSTDetailsData) | no | |
4983
+ | bag_id | number | yes | |
5245
4984
 
5246
4985
  ---
5247
4986
 
5248
4987
 
5249
4988
 
5250
4989
 
5251
- #### [FilterInfoOption](#FilterInfoOption)
4990
+ #### [UserDataInfo](#UserDataInfo)
5252
4991
 
5253
4992
  | Properties | Type | Nullable | Description |
5254
4993
  | ---------- | ---- | -------- | ----------- |
5255
- | value | string | no | |
4994
+ | last_name | string | no | |
4995
+ | mobile | string | no | |
5256
4996
  | name | string | no | |
5257
- | text | string | yes | |
4997
+ | is_anonymous_user | boolean | no | |
4998
+ | uid | number | no | |
4999
+ | avis_user_id | string | no | |
5000
+ | email | string | no | |
5001
+ | first_name | string | no | |
5002
+ | gender | string | no | |
5258
5003
 
5259
5004
  ---
5260
5005
 
5261
5006
 
5262
5007
 
5263
5008
 
5264
- #### [FiltersInfo](#FiltersInfo)
5009
+ #### [ShipmentItem](#ShipmentItem)
5265
5010
 
5266
5011
  | Properties | Type | Nullable | Description |
5267
5012
  | ---------- | ---- | -------- | ----------- |
5268
- | value | string | yes | |
5269
- | type | string | yes | |
5270
- | options | [[FilterInfoOption](#FilterInfoOption)] | no | |
5271
- | text | string | yes | |
5013
+ | fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
5014
+ | application | string | no | |
5015
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
5016
+ | payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
5017
+ | total_bags_count | number | yes | |
5018
+ | channel | string | no | |
5019
+ | bags | [[BagUnit](#BagUnit)] | no | |
5020
+ | created_at | string | yes | |
5021
+ | total_shipments_in_order | number | yes | |
5022
+ | sla | string | no | |
5023
+ | shipment_created_at | number | yes | |
5024
+ | id | string | yes | |
5025
+ | user | [UserDataInfo](#UserDataInfo) | no | |
5026
+ | fulfilling_centre | string | yes | |
5027
+ | prices | [Prices](#Prices) | no | |
5028
+ | payment_methods | string | no | |
5272
5029
 
5273
5030
  ---
5274
5031
 
@@ -5279,10 +5036,10 @@ Sms Sent successfully
5279
5036
 
5280
5037
  | Properties | Type | Nullable | Description |
5281
5038
  | ---------- | ---- | -------- | ----------- |
5282
- | items | [[ShipmentItem](#ShipmentItem)] | no | |
5283
- | applied_filters | string | no | |
5284
5039
  | page | string | no | |
5285
5040
  | filters | [[FiltersInfo](#FiltersInfo)] | no | |
5041
+ | items | [[ShipmentItem](#ShipmentItem)] | no | |
5042
+ | applied_filters | string | no | |
5286
5043
 
5287
5044
  ---
5288
5045
 
@@ -5293,252 +5050,221 @@ Sms Sent successfully
5293
5050
 
5294
5051
  | Properties | Type | Nullable | Description |
5295
5052
  | ---------- | ---- | -------- | ----------- |
5296
- | success | boolean | no | |
5297
5053
  | message | string | no | |
5054
+ | success | boolean | no | |
5298
5055
 
5299
5056
  ---
5300
5057
 
5301
5058
 
5302
5059
 
5303
5060
 
5304
- #### [ShipmentPayments](#ShipmentPayments)
5061
+ #### [FulfillingStore](#FulfillingStore)
5305
5062
 
5306
5063
  | Properties | Type | Nullable | Description |
5307
5064
  | ---------- | ---- | -------- | ----------- |
5308
- | mode | string | yes | |
5309
- | source | string | no | |
5310
- | logo | string | no | |
5065
+ | state | string | yes | |
5066
+ | phone | string | yes | |
5067
+ | store_name | string | yes | |
5068
+ | pincode | string | yes | |
5069
+ | fulfillment_channel | string | yes | |
5070
+ | city | string | yes | |
5071
+ | address | string | yes | |
5072
+ | id | number | yes | |
5073
+ | meta | string | yes | |
5074
+ | contact_person | string | yes | |
5075
+ | code | string | yes | |
5076
+ | country | string | yes | |
5311
5077
 
5312
5078
  ---
5313
5079
 
5314
5080
 
5315
5081
 
5316
5082
 
5317
- #### [BagStateMapper](#BagStateMapper)
5083
+ #### [BagConfigs](#BagConfigs)
5318
5084
 
5319
5085
  | Properties | Type | Nullable | Description |
5320
5086
  | ---------- | ---- | -------- | ----------- |
5321
- | notify_customer | boolean | no | |
5322
- | app_facing | boolean | no | |
5323
- | journey_type | string | yes | |
5324
- | app_state_name | string | no | |
5325
- | name | string | yes | |
5326
- | app_display_name | string | no | |
5327
- | is_active | boolean | no | |
5328
- | state_type | string | yes | |
5329
- | display_name | string | yes | |
5330
- | bs_id | number | yes | |
5087
+ | is_returnable | boolean | yes | |
5088
+ | is_active | boolean | yes | |
5089
+ | is_customer_return_allowed | boolean | yes | |
5090
+ | enable_tracking | boolean | yes | |
5091
+ | can_be_cancelled | boolean | yes | |
5092
+ | allow_force_return | boolean | yes | |
5331
5093
 
5332
5094
  ---
5333
5095
 
5334
5096
 
5335
5097
 
5336
5098
 
5337
- #### [BagStatusHistory](#BagStatusHistory)
5099
+ #### [DiscountRules](#DiscountRules)
5338
5100
 
5339
5101
  | Properties | Type | Nullable | Description |
5340
5102
  | ---------- | ---- | -------- | ----------- |
5341
- | forward | boolean | no | |
5342
- | bag_state_mapper | [BagStateMapper](#BagStateMapper) | yes | |
5343
- | created_at | string | yes | |
5344
- | shipment_id | string | yes | |
5345
- | delivery_awb_number | string | no | |
5346
- | kafka_sync | boolean | no | |
5347
- | reasons | [string] | no | |
5348
- | app_display_name | boolean | no | |
5349
- | updated_at | string | no | |
5350
- | store_id | number | yes | |
5351
- | bsh_id | number | yes | |
5352
- | status | string | yes | |
5353
- | bag_id | number | yes | |
5354
- | state_type | string | no | |
5355
- | display_name | boolean | no | |
5356
- | delivery_partner_id | number | no | |
5357
- | state_id | number | yes | |
5103
+ | type | string | no | |
5104
+ | value | number | no | |
5358
5105
 
5359
5106
  ---
5360
5107
 
5361
5108
 
5362
5109
 
5363
5110
 
5364
- #### [TrackingList](#TrackingList)
5111
+ #### [ItemCriterias](#ItemCriterias)
5365
5112
 
5366
5113
  | Properties | Type | Nullable | Description |
5367
5114
  | ---------- | ---- | -------- | ----------- |
5368
- | time | string | no | |
5369
- | status | string | yes | |
5370
- | text | string | yes | |
5371
- | is_current | boolean | no | |
5372
- | is_passed | boolean | no | |
5115
+ | item_brand | [number] | no | |
5373
5116
 
5374
5117
  ---
5375
5118
 
5376
5119
 
5377
5120
 
5378
5121
 
5379
- #### [ShipmentStatusData](#ShipmentStatusData)
5122
+ #### [BuyRules](#BuyRules)
5380
5123
 
5381
5124
  | Properties | Type | Nullable | Description |
5382
5125
  | ---------- | ---- | -------- | ----------- |
5383
- | created_at | string | no | |
5384
- | shipment_id | string | no | |
5385
- | bag_list | [number] | no | |
5386
- | status | string | no | |
5387
- | id | number | no | |
5126
+ | cart_conditions | string | no | |
5127
+ | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5388
5128
 
5389
5129
  ---
5390
5130
 
5391
5131
 
5392
5132
 
5393
5133
 
5394
- #### [UserDetailsData](#UserDetailsData)
5134
+ #### [AppliedPromos](#AppliedPromos)
5395
5135
 
5396
5136
  | Properties | Type | Nullable | Description |
5397
5137
  | ---------- | ---- | -------- | ----------- |
5398
- | city | string | yes | |
5399
- | phone | string | yes | |
5400
- | pincode | string | yes | |
5401
- | email | string | yes | |
5402
- | name | string | yes | |
5403
- | address | string | yes | |
5404
- | state | string | yes | |
5405
- | country | string | yes | |
5138
+ | promotion_name | string | no | |
5139
+ | promotion_type | string | no | |
5140
+ | amount | number | no | |
5141
+ | mrp_promotion | boolean | no | |
5142
+ | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5143
+ | promo_id | string | no | |
5144
+ | article_quantity | number | no | |
5145
+ | buy_rules | [[BuyRules](#BuyRules)] | no | |
5406
5146
 
5407
5147
  ---
5408
5148
 
5409
5149
 
5410
5150
 
5411
5151
 
5412
- #### [DPDetailsData](#DPDetailsData)
5152
+ #### [BagGST](#BagGST)
5413
5153
 
5414
5154
  | Properties | Type | Nullable | Description |
5415
5155
  | ---------- | ---- | -------- | ----------- |
5416
- | eway_bill_id | string | no | |
5417
- | track_url | string | no | |
5418
- | pincode | string | no | |
5419
- | name | string | no | |
5156
+ | gst_fee | number | no | |
5157
+ | is_default_hsn_code | boolean | no | |
5158
+ | brand_calculated_amount | number | no | |
5420
5159
  | gst_tag | string | no | |
5421
- | id | string | no | |
5422
- | country | string | no | |
5423
- | awb_no | string | no | |
5160
+ | gst_tax_percentage | number | no | |
5161
+ | gstin_code | string | no | |
5162
+ | hsn_code | string | no | |
5163
+ | value_of_good | number | no | |
5424
5164
 
5425
5165
  ---
5426
5166
 
5427
5167
 
5428
5168
 
5429
5169
 
5430
- #### [ItemCriterias](#ItemCriterias)
5170
+ #### [OrderBagArticle](#OrderBagArticle)
5431
5171
 
5432
5172
  | Properties | Type | Nullable | Description |
5433
5173
  | ---------- | ---- | -------- | ----------- |
5434
- | item_brand | [number] | no | |
5174
+ | uid | string | no | |
5175
+ | identifiers | string | no | |
5176
+ | return_config | string | no | |
5435
5177
 
5436
5178
  ---
5437
5179
 
5438
5180
 
5439
5181
 
5440
5182
 
5441
- #### [BuyRules](#BuyRules)
5183
+ #### [BagStateMapper](#BagStateMapper)
5442
5184
 
5443
5185
  | Properties | Type | Nullable | Description |
5444
5186
  | ---------- | ---- | -------- | ----------- |
5445
- | item_criteria | [ItemCriterias](#ItemCriterias) | no | |
5446
- | cart_conditions | string | no | |
5187
+ | app_display_name | string | no | |
5188
+ | name | string | yes | |
5189
+ | display_name | string | yes | |
5190
+ | app_state_name | string | no | |
5191
+ | bs_id | number | yes | |
5192
+ | is_active | boolean | no | |
5193
+ | app_facing | boolean | no | |
5194
+ | state_type | string | yes | |
5195
+ | journey_type | string | yes | |
5196
+ | notify_customer | boolean | no | |
5447
5197
 
5448
5198
  ---
5449
5199
 
5450
5200
 
5451
5201
 
5452
5202
 
5453
- #### [DiscountRules](#DiscountRules)
5203
+ #### [CurrentStatus](#CurrentStatus)
5454
5204
 
5455
5205
  | Properties | Type | Nullable | Description |
5456
5206
  | ---------- | ---- | -------- | ----------- |
5457
- | value | number | no | |
5458
- | type | string | no | |
5207
+ | current_status_id | number | yes | |
5208
+ | store_id | number | no | |
5209
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5210
+ | kafka_sync | boolean | no | |
5211
+ | shipment_id | string | no | |
5212
+ | state_id | number | no | |
5213
+ | status | string | no | |
5214
+ | delivery_awb_number | string | no | |
5215
+ | state_type | string | no | |
5216
+ | delivery_partner_id | number | no | |
5217
+ | updated_at | number | no | |
5218
+ | bag_id | number | no | |
5219
+ | created_at | string | no | |
5459
5220
 
5460
5221
  ---
5461
5222
 
5462
5223
 
5463
5224
 
5464
5225
 
5465
- #### [AppliedPromos](#AppliedPromos)
5226
+ #### [Identifier](#Identifier)
5466
5227
 
5467
5228
  | Properties | Type | Nullable | Description |
5468
5229
  | ---------- | ---- | -------- | ----------- |
5469
- | promotion_name | string | no | |
5470
- | amount | number | no | |
5471
- | buy_rules | [[BuyRules](#BuyRules)] | no | |
5472
- | promo_id | string | no | |
5473
- | discount_rules | [[DiscountRules](#DiscountRules)] | no | |
5474
- | mrp_promotion | boolean | no | |
5475
- | article_quantity | number | no | |
5476
- | promotion_type | string | no | |
5230
+ | ean | string | no | |
5477
5231
 
5478
5232
  ---
5479
5233
 
5480
5234
 
5481
5235
 
5482
5236
 
5483
- #### [BagConfigs](#BagConfigs)
5237
+ #### [FinancialBreakup](#FinancialBreakup)
5484
5238
 
5485
5239
  | Properties | Type | Nullable | Description |
5486
5240
  | ---------- | ---- | -------- | ----------- |
5487
- | enable_tracking | boolean | yes | |
5488
- | can_be_cancelled | boolean | yes | |
5489
- | is_customer_return_allowed | boolean | yes | |
5490
- | is_active | boolean | yes | |
5491
- | allow_force_return | boolean | yes | |
5492
- | is_returnable | boolean | yes | |
5493
-
5494
- ---
5495
-
5496
-
5497
-
5498
-
5499
- #### [Identifier](#Identifier)
5500
-
5501
- | Properties | Type | Nullable | Description |
5502
- | ---------- | ---- | -------- | ----------- |
5503
- | ean | string | no | |
5504
-
5505
- ---
5506
-
5507
-
5508
-
5509
-
5510
- #### [FinancialBreakup](#FinancialBreakup)
5511
-
5512
- | Properties | Type | Nullable | Description |
5513
- | ---------- | ---- | -------- | ----------- |
5514
- | coupon_value | number | yes | |
5515
- | gst_fee | string | yes | |
5516
- | hsn_code | string | yes | |
5517
- | delivery_charge | number | yes | |
5518
- | transfer_price | number | yes | |
5519
- | amount_paid | number | yes | |
5520
5241
  | price_effective | number | yes | |
5521
- | total_units | number | yes | |
5242
+ | item_name | string | yes | |
5243
+ | cashback | number | yes | |
5522
5244
  | discount | number | yes | |
5245
+ | amount_paid | number | yes | |
5246
+ | identifiers | [Identifier](#Identifier) | yes | |
5247
+ | cod_charges | number | yes | |
5248
+ | promotion_effective_discount | number | yes | |
5523
5249
  | refund_credit | number | yes | |
5524
- | item_name | string | yes | |
5525
- | cashback_applied | number | yes | |
5526
- | gst_tax_percentage | number | yes | |
5527
5250
  | brand_calculated_amount | number | yes | |
5528
- | value_of_good | number | yes | |
5529
- | tax_collected_at_source | number | no | |
5530
- | cashback | number | yes | |
5251
+ | gst_fee | number | yes | |
5531
5252
  | size | string | yes | |
5532
- | promotion_effective_discount | number | yes | |
5533
- | pm_price_split | string | yes | |
5534
- | cod_charges | number | yes | |
5535
- | identifiers | [Identifier](#Identifier) | yes | |
5536
- | gst_tag | string | yes | |
5537
5253
  | coupon_effective_discount | number | yes | |
5538
- | amount_paid_roundoff | number | no | |
5254
+ | tax_collected_at_source | number | no | |
5255
+ | delivery_charge | number | yes | |
5539
5256
  | added_to_fynd_cash | boolean | yes | |
5257
+ | coupon_value | number | yes | |
5258
+ | cashback_applied | number | yes | |
5540
5259
  | fynd_credits | number | yes | |
5260
+ | total_units | number | yes | |
5541
5261
  | price_marked | number | yes | |
5262
+ | gst_tag | string | yes | |
5263
+ | gst_tax_percentage | number | yes | |
5264
+ | amount_paid_roundoff | number | no | |
5265
+ | transfer_price | number | yes | |
5266
+ | hsn_code | string | yes | |
5267
+ | value_of_good | number | yes | |
5542
5268
 
5543
5269
  ---
5544
5270
 
@@ -5549,24 +5275,24 @@ Sms Sent successfully
5549
5275
 
5550
5276
  | Properties | Type | Nullable | Description |
5551
5277
  | ---------- | ---- | -------- | ----------- |
5552
- | area | string | no | |
5553
- | city | string | no | |
5554
- | phone | string | no | |
5555
- | created_at | string | no | |
5556
- | address_category | string | no | |
5557
- | pincode | string | no | |
5278
+ | address1 | string | no | |
5558
5279
  | landmark | string | no | |
5280
+ | state | string | no | |
5281
+ | address_type | string | no | |
5282
+ | address2 | string | no | |
5283
+ | phone | string | no | |
5559
5284
  | longitude | number | no | |
5285
+ | area | string | no | |
5286
+ | pincode | string | no | |
5560
5287
  | email | string | no | |
5288
+ | version | string | no | |
5289
+ | city | string | no | |
5290
+ | created_at | string | no | |
5561
5291
  | latitude | number | no | |
5562
- | address2 | string | no | |
5292
+ | address_category | string | no | |
5563
5293
  | updated_at | string | no | |
5564
- | address1 | string | no | |
5565
5294
  | contact_person | string | no | |
5566
- | address_type | string | no | |
5567
- | state | string | no | |
5568
5295
  | country | string | no | |
5569
- | version | string | no | |
5570
5296
 
5571
5297
  ---
5572
5298
 
@@ -5577,73 +5303,100 @@ Sms Sent successfully
5577
5303
 
5578
5304
  | Properties | Type | Nullable | Description |
5579
5305
  | ---------- | ---- | -------- | ----------- |
5580
- | company | string | yes | |
5581
- | modified_on | number | no | |
5582
- | id | number | yes | |
5583
- | brand_name | string | yes | |
5584
- | created_on | number | yes | |
5585
5306
  | logo | string | yes | |
5307
+ | modified_on | string | no | |
5308
+ | brand_name | string | yes | |
5309
+ | id | number | yes | |
5310
+ | company | string | no | |
5311
+ | created_on | string | yes | |
5586
5312
 
5587
5313
  ---
5588
5314
 
5589
5315
 
5590
5316
 
5591
5317
 
5592
- #### [BagGST](#BagGST)
5318
+ #### [OrderBags](#OrderBags)
5593
5319
 
5594
5320
  | Properties | Type | Nullable | Description |
5595
5321
  | ---------- | ---- | -------- | ----------- |
5596
- | is_default_hsn_code | boolean | no | |
5597
- | gst_tax_percentage | number | no | |
5598
- | gst_tag | string | no | |
5599
- | brand_calculated_amount | number | no | |
5600
- | value_of_good | number | no | |
5601
- | gstin_code | string | no | |
5602
- | gst_fee | number | no | |
5603
- | hsn_code | string | no | |
5322
+ | line_number | number | no | |
5323
+ | parent_promo_bags | string | no | |
5324
+ | bag_configs | [BagConfigs](#BagConfigs) | no | |
5325
+ | identifier | string | no | |
5326
+ | seller_identifier | string | no | |
5327
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5328
+ | quantity | number | no | |
5329
+ | bag_id | number | yes | |
5330
+ | gst_details | [BagGST](#BagGST) | no | |
5331
+ | entity_type | string | no | |
5332
+ | display_name | string | no | |
5333
+ | article | [OrderBagArticle](#OrderBagArticle) | no | |
5334
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
5335
+ | financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
5336
+ | can_cancel | boolean | no | |
5337
+ | item | [PlatformItem](#PlatformItem) | no | |
5338
+ | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5339
+ | can_return | boolean | no | |
5340
+ | brand | [OrderBrandName](#OrderBrandName) | no | |
5341
+ | prices | [Prices](#Prices) | no | |
5604
5342
 
5605
5343
  ---
5606
5344
 
5607
5345
 
5608
5346
 
5609
5347
 
5610
- #### [OrderBagArticle](#OrderBagArticle)
5348
+ #### [ShipmentPayments](#ShipmentPayments)
5611
5349
 
5612
5350
  | Properties | Type | Nullable | Description |
5613
5351
  | ---------- | ---- | -------- | ----------- |
5614
- | uid | string | no | |
5615
- | return_config | string | no | |
5616
- | identifiers | string | no | |
5352
+ | source | string | no | |
5353
+ | logo | string | no | |
5354
+ | mode | string | no | |
5617
5355
 
5618
5356
  ---
5619
5357
 
5620
5358
 
5621
5359
 
5622
5360
 
5623
- #### [OrderBags](#OrderBags)
5361
+ #### [UserDetailsData](#UserDetailsData)
5624
5362
 
5625
5363
  | Properties | Type | Nullable | Description |
5626
5364
  | ---------- | ---- | -------- | ----------- |
5627
- | identifier | string | no | |
5628
- | prices | [Prices](#Prices) | no | |
5365
+ | state | string | yes | |
5366
+ | name | string | yes | |
5367
+ | phone | string | yes | |
5368
+ | pincode | string | yes | |
5369
+ | email | string | no | |
5370
+ | city | string | yes | |
5371
+ | address | string | yes | |
5372
+ | country | string | yes | |
5373
+
5374
+ ---
5375
+
5376
+
5377
+
5378
+
5379
+ #### [BagStatusHistory](#BagStatusHistory)
5380
+
5381
+ | Properties | Type | Nullable | Description |
5382
+ | ---------- | ---- | -------- | ----------- |
5383
+ | app_display_name | string | no | |
5384
+ | store_id | number | no | |
5385
+ | bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
5386
+ | forward | boolean | no | |
5387
+ | kafka_sync | boolean | no | |
5388
+ | shipment_id | string | no | |
5629
5389
  | display_name | string | no | |
5630
- | can_cancel | boolean | no | |
5631
- | quantity | number | no | |
5632
- | parent_promo_bags | string | no | |
5633
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
5634
- | bag_configs | [BagConfigs](#BagConfigs) | no | |
5635
- | current_status | string | no | |
5636
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
5637
- | delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
5638
- | seller_identifier | string | no | |
5639
- | item | [PlatformItem](#PlatformItem) | no | |
5640
- | brand | [OrderBrandName](#OrderBrandName) | no | |
5641
- | gst_details | [BagGST](#BagGST) | no | |
5642
- | entity_type | string | no | |
5643
- | line_number | number | no | |
5644
- | bag_id | number | yes | |
5645
- | can_return | boolean | no | |
5646
- | article | [OrderBagArticle](#OrderBagArticle) | no | |
5390
+ | state_id | number | no | |
5391
+ | status | string | yes | |
5392
+ | delivery_awb_number | string | no | |
5393
+ | reasons | [string] | no | |
5394
+ | state_type | string | no | |
5395
+ | delivery_partner_id | number | no | |
5396
+ | bsh_id | number | no | |
5397
+ | updated_at | string | no | |
5398
+ | bag_id | number | no | |
5399
+ | created_at | string | no | |
5647
5400
 
5648
5401
  ---
5649
5402
 
@@ -5654,37 +5407,63 @@ Sms Sent successfully
5654
5407
 
5655
5408
  | Properties | Type | Nullable | Description |
5656
5409
  | ---------- | ---- | -------- | ----------- |
5410
+ | fynd_order_id | string | yes | |
5411
+ | affiliate_id | string | no | |
5412
+ | ordering_channel_logo | string | no | |
5413
+ | tax_details | string | no | |
5657
5414
  | cod_charges | string | no | |
5415
+ | order_date | string | no | |
5658
5416
  | ordering_channel | string | no | |
5659
- | ordering_channel_logo | string | no | |
5660
- | order_value | string | no | |
5661
5417
  | source | string | no | |
5662
- | fynd_order_id | string | yes | |
5663
- | order_date | string | no | |
5664
- | tax_details | string | no | |
5665
- | affiliate_id | string | no | |
5418
+ | order_value | string | no | |
5666
5419
 
5667
5420
  ---
5668
5421
 
5669
5422
 
5670
5423
 
5671
5424
 
5672
- #### [FulfillingStore](#FulfillingStore)
5425
+ #### [TrackingList](#TrackingList)
5673
5426
 
5674
5427
  | Properties | Type | Nullable | Description |
5675
5428
  | ---------- | ---- | -------- | ----------- |
5676
- | code | string | yes | |
5677
- | phone | string | yes | |
5678
- | store_name | string | yes | |
5679
- | city | string | yes | |
5680
- | pincode | string | yes | |
5681
- | address | string | yes | |
5682
- | contact_person | string | yes | |
5683
- | id | string | yes | |
5684
- | meta | string | yes | |
5685
- | country | string | yes | |
5686
- | state | string | yes | |
5687
- | fulfillment_channel | string | yes | |
5429
+ | text | string | yes | |
5430
+ | is_current | boolean | no | |
5431
+ | status | string | yes | |
5432
+ | time | string | no | |
5433
+ | is_passed | boolean | no | |
5434
+
5435
+ ---
5436
+
5437
+
5438
+
5439
+
5440
+ #### [DPDetailsData](#DPDetailsData)
5441
+
5442
+ | Properties | Type | Nullable | Description |
5443
+ | ---------- | ---- | -------- | ----------- |
5444
+ | awb_no | string | no | |
5445
+ | name | string | no | |
5446
+ | eway_bill_id | string | no | |
5447
+ | pincode | string | no | |
5448
+ | id | number | no | |
5449
+ | track_url | string | no | |
5450
+ | gst_tag | string | no | |
5451
+ | country | string | no | |
5452
+
5453
+ ---
5454
+
5455
+
5456
+
5457
+
5458
+ #### [ShipmentStatusData](#ShipmentStatusData)
5459
+
5460
+ | Properties | Type | Nullable | Description |
5461
+ | ---------- | ---- | -------- | ----------- |
5462
+ | shipment_id | string | no | |
5463
+ | bag_list | [string] | no | |
5464
+ | status | string | no | |
5465
+ | id | number | no | |
5466
+ | created_at | string | no | |
5688
5467
 
5689
5468
  ---
5690
5469
 
@@ -5695,95 +5474,102 @@ Sms Sent successfully
5695
5474
 
5696
5475
  | Properties | Type | Nullable | Description |
5697
5476
  | ---------- | ---- | -------- | ----------- |
5698
- | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5699
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5700
- | fyndstore_emp | string | yes | |
5701
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5702
- | payment_mode | string | no | |
5703
- | lock_status | string | yes | |
5704
- | items | [string] | yes | |
5705
- | vertical | string | no | |
5706
- | operational_status | string | no | |
5707
- | delivery_slot | string | no | |
5708
- | prices | [Prices](#Prices) | no | |
5709
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5710
- | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5711
- | journey_type | string | no | |
5712
- | ordering_store | string | yes | |
5477
+ | pay_button | string | no | |
5478
+ | order_status | string | yes | |
5479
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5480
+ | order_created_time | string | no | |
5481
+ | bags | [[OrderBags](#OrderBags)] | no | |
5713
5482
  | is_packaging_order | boolean | yes | |
5714
- | secured_delivery_flag | string | no | |
5483
+ | is_not_fynd_source | boolean | yes | |
5484
+ | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5485
+ | user_id | string | yes | |
5486
+ | tracking_url | string | yes | |
5487
+ | forward_order_status | [string] | no | |
5488
+ | credit_note_id | string | yes | |
5715
5489
  | coupon | string | no | |
5716
- | can_cancel | boolean | no | |
5717
- | enable_tracking | boolean | no | |
5490
+ | affiliate_shipment_id | string | yes | |
5718
5491
  | is_fynd_coupon | boolean | yes | |
5719
- | go_green | boolean | no | |
5720
- | shipment_id | string | yes | |
5492
+ | is_invoiced | boolean | yes | |
5493
+ | refund_text | string | no | |
5494
+ | payment_mode | string | no | |
5721
5495
  | due_date | string | no | |
5722
- | company | string | yes | |
5723
- | is_not_fynd_source | boolean | yes | |
5724
- | pay_button | string | no | |
5725
- | order_type | string | yes | |
5726
- | current_shipment_status | string | yes | |
5496
+ | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5497
+ | priority_text | string | no | |
5498
+ | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5499
+ | forward_tracking_list | [string] | no | |
5500
+ | platform_logo | boolean | yes | |
5501
+ | forward_shipment_status | [string] | no | |
5502
+ | lock_status | string | yes | |
5727
5503
  | shipment_status | string | no | |
5728
- | tracking_url | string | yes | |
5729
- | user_info | string | no | |
5730
- | bank_data | string | no | |
5731
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5732
- | delivery_status | [string] | yes | |
5733
- | refund_details | string | no | |
5504
+ | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5734
5505
  | picked_date | string | no | |
5735
- | forward_order_status | [string] | no | |
5736
- | enable_dp_tracking | string | no | |
5737
- | shipment_quantity | number | no | |
5506
+ | order | [OrderDetailsData](#OrderDetailsData) | no | |
5507
+ | secured_delivery_flag | string | no | |
5508
+ | current_shipment_status | string | yes | |
5509
+ | user_agent | string | no | |
5510
+ | email_id | string | yes | |
5738
5511
  | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5739
- | bags | [[OrderBags](#OrderBags)] | no | |
5512
+ | escalation | string | no | |
5513
+ | ordering_store | string | yes | |
5514
+ | enable_dp_tracking | boolean | no | |
5515
+ | can_cancel | boolean | no | |
5516
+ | is_fynd_store | string | no | |
5517
+ | status_progress | number | yes | |
5740
5518
  | packaging_type | string | no | |
5741
- | email_id | string | yes | |
5742
- | total_bags | number | no | |
5743
- | credit_note_id | string | yes | |
5744
- | is_invoiced | boolean | yes | |
5745
- | custom_meta | [string] | no | |
5519
+ | refund_details | string | no | |
5520
+ | delivery_slot | string | no | |
5521
+ | vertical | string | no | |
5522
+ | shipment_images | [string] | no | |
5746
5523
  | can_break | string | yes | |
5747
- | forward_shipment_status | [string] | no | |
5748
- | affiliate_shipment_id | string | yes | |
5749
- | status_progress | number | yes | |
5750
- | is_fynd_store | string | no | |
5751
- | escalation | string | no | |
5752
- | order_status | string | yes | |
5753
- | user_id | string | yes | |
5754
- | total_items | number | no | |
5755
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5756
- | child_nodes | [string] | no | |
5757
- | replacement_details | string | no | |
5758
- | kirana_store_id | string | no | |
5759
- | priority_text | string | no | |
5524
+ | mid | string | no | |
5525
+ | items | [string] | yes | |
5526
+ | enable_tracking | boolean | no | |
5527
+ | tracking_list | [[TrackingList](#TrackingList)] | no | |
5528
+ | shipment_quantity | number | no | |
5529
+ | order_type | string | yes | |
5530
+ | can_return | boolean | no | |
5760
5531
  | is_pdsr | string | no | |
5761
- | order_created_time | string | no | |
5762
- | order | [OrderDetailsData](#OrderDetailsData) | no | |
5763
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5764
5532
  | invoice | string | yes | |
5765
- | mid | string | no | |
5766
- | platform_logo | boolean | yes | |
5533
+ | bank_data | string | no | |
5534
+ | fyndstore_emp | string | yes | |
5535
+ | kirana_store_id | string | no | |
5536
+ | total_items | number | no | |
5537
+ | shipment_id | string | yes | |
5538
+ | delivery_status | [string] | yes | |
5767
5539
  | beneficiary_details | boolean | no | |
5768
- | can_return | boolean | no | |
5769
- | refund_text | string | no | |
5770
- | user_agent | string | no | |
5771
- | shipment_images | [string] | no | |
5772
- | forward_tracking_list | [string] | no | |
5540
+ | user_info | string | no | |
5541
+ | child_nodes | [string] | no | |
5542
+ | custom_meta | [string] | no | |
5543
+ | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5544
+ | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5545
+ | total_bags | number | no | |
5546
+ | company | string | yes | |
5547
+ | journey_type | string | no | |
5548
+ | go_green | boolean | no | |
5549
+ | replacement_details | string | no | |
5550
+ | prices | [Prices](#Prices) | no | |
5551
+ | operational_status | string | no | |
5773
5552
 
5774
5553
  ---
5775
5554
 
5776
5555
 
5777
5556
 
5778
5557
 
5779
- #### [OrderDict](#OrderDict)
5558
+ #### [OrderingStoreDetails](#OrderingStoreDetails)
5780
5559
 
5781
5560
  | Properties | Type | Nullable | Description |
5782
5561
  | ---------- | ---- | -------- | ----------- |
5783
- | prices | [Prices](#Prices) | no | |
5784
- | order_date | string | yes | |
5785
- | fynd_order_id | string | yes | |
5786
- | shipment_count | number | yes | |
5562
+ | state | string | yes | |
5563
+ | phone | string | yes | |
5564
+ | code | string | yes | |
5565
+ | store_name | string | yes | |
5566
+ | pincode | string | yes | |
5567
+ | city | string | yes | |
5568
+ | address | string | yes | |
5569
+ | meta | string | yes | |
5570
+ | contact_person | string | yes | |
5571
+ | ordering_store_id | number | yes | |
5572
+ | country | string | yes | |
5787
5573
 
5788
5574
  ---
5789
5575
 
@@ -5794,37 +5580,79 @@ Sms Sent successfully
5794
5580
 
5795
5581
  | Properties | Type | Nullable | Description |
5796
5582
  | ---------- | ---- | -------- | ----------- |
5583
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5584
+ | bags | [[OrderBags](#OrderBags)] | no | |
5797
5585
  | payments | [ShipmentPayments](#ShipmentPayments) | no | |
5798
- | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5799
- | tracking_list | [[TrackingList](#TrackingList)] | no | |
5586
+ | coupon | string | no | |
5800
5587
  | payment_mode | string | no | |
5801
- | vertical | string | no | |
5802
- | operational_status | string | no | |
5803
- | delivery_slot | string | no | |
5804
- | prices | [Prices](#Prices) | no | |
5805
- | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5806
5588
  | delivery_details | [UserDetailsData](#UserDetailsData) | no | |
5807
- | journey_type | string | no | |
5808
- | coupon | string | no | |
5809
- | shipment_id | string | yes | |
5589
+ | priority_text | string | no | |
5590
+ | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5591
+ | platform_logo | string | no | |
5810
5592
  | shipment_status | string | no | |
5811
- | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5593
+ | bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
5812
5594
  | picked_date | string | no | |
5813
- | enable_dp_tracking | string | no | |
5814
- | shipment_quantity | number | no | |
5815
- | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5816
- | bags | [[OrderBags](#OrderBags)] | no | |
5817
- | packaging_type | string | no | |
5818
- | total_bags | number | no | |
5819
- | custom_meta | [string] | no | |
5820
- | total_items | number | no | |
5821
- | gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
5822
- | priority_text | string | no | |
5823
5595
  | order | [OrderDetailsData](#OrderDetailsData) | no | |
5824
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
5825
- | platform_logo | string | no | |
5826
5596
  | user_agent | string | no | |
5597
+ | billing_details | [UserDetailsData](#UserDetailsData) | no | |
5598
+ | ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
5599
+ | enable_dp_tracking | boolean | no | |
5600
+ | packaging_type | string | no | |
5601
+ | delivery_slot | string | no | |
5602
+ | vertical | string | no | |
5827
5603
  | shipment_images | [string] | no | |
5604
+ | tracking_list | [[TrackingList](#TrackingList)] | no | |
5605
+ | shipment_quantity | number | no | |
5606
+ | total_items | number | no | |
5607
+ | shipment_id | string | yes | |
5608
+ | custom_meta | [string] | no | |
5609
+ | dp_details | [DPDetailsData](#DPDetailsData) | no | |
5610
+ | status | [ShipmentStatusData](#ShipmentStatusData) | no | |
5611
+ | total_bags | number | no | |
5612
+ | journey_type | string | no | |
5613
+ | prices | [Prices](#Prices) | no | |
5614
+ | operational_status | string | no | |
5615
+
5616
+ ---
5617
+
5618
+
5619
+
5620
+
5621
+ #### [OrderMeta](#OrderMeta)
5622
+
5623
+ | Properties | Type | Nullable | Description |
5624
+ | ---------- | ---- | -------- | ----------- |
5625
+ | comment | string | no | |
5626
+ | ordering_store | number | no | |
5627
+ | mongo_cart_id | number | no | |
5628
+ | order_child_entities | [string] | no | |
5629
+ | customer_note | string | no | |
5630
+ | order_tags | [string] | no | |
5631
+ | staff | string | no | |
5632
+ | order_platform | string | no | |
5633
+ | currency_symbol | string | no | |
5634
+ | files | [string] | no | |
5635
+ | employee_id | number | no | |
5636
+ | payment_type | string | no | |
5637
+ | order_type | string | no | |
5638
+ | cart_id | number | no | |
5639
+ | extra_meta | string | no | |
5640
+
5641
+ ---
5642
+
5643
+
5644
+
5645
+
5646
+ #### [OrderDict](#OrderDict)
5647
+
5648
+ | Properties | Type | Nullable | Description |
5649
+ | ---------- | ---- | -------- | ----------- |
5650
+ | fynd_order_id | string | yes | |
5651
+ | tax_details | string | no | |
5652
+ | order_date | string | yes | |
5653
+ | meta | [OrderMeta](#OrderMeta) | no | |
5654
+ | prices | [Prices](#Prices) | no | |
5655
+ | payment_methods | string | no | |
5828
5656
 
5829
5657
  ---
5830
5658
 
@@ -5835,10 +5663,9 @@ Sms Sent successfully
5835
5663
 
5836
5664
  | Properties | Type | Nullable | Description |
5837
5665
  | ---------- | ---- | -------- | ----------- |
5838
- | order | [OrderDict](#OrderDict) | no | |
5839
- | success | boolean | yes | |
5840
- | custom_meta | [string] | no | |
5841
5666
  | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5667
+ | success | boolean | yes | |
5668
+ | order | [OrderDict](#OrderDict) | no | |
5842
5669
 
5843
5670
  ---
5844
5671
 
@@ -5849,11 +5676,11 @@ Sms Sent successfully
5849
5676
 
5850
5677
  | Properties | Type | Nullable | Description |
5851
5678
  | ---------- | ---- | -------- | ----------- |
5852
- | actions | [string] | no | |
5853
- | total_items | number | no | |
5854
5679
  | text | string | no | |
5680
+ | total_items | number | no | |
5855
5681
  | value | string | no | |
5856
5682
  | index | number | no | |
5683
+ | actions | [string] | no | |
5857
5684
 
5858
5685
  ---
5859
5686
 
@@ -5864,10 +5691,10 @@ Sms Sent successfully
5864
5691
 
5865
5692
  | Properties | Type | Nullable | Description |
5866
5693
  | ---------- | ---- | -------- | ----------- |
5867
- | value | string | yes | |
5868
- | total_items | number | no | |
5869
- | options | [[SubLane](#SubLane)] | no | |
5870
5694
  | text | string | yes | |
5695
+ | options | [[SubLane](#SubLane)] | no | |
5696
+ | total_items | number | no | |
5697
+ | value | string | yes | |
5871
5698
 
5872
5699
  ---
5873
5700
 
@@ -5885,13 +5712,16 @@ Sms Sent successfully
5885
5712
 
5886
5713
 
5887
5714
 
5888
- #### [PlatformBreakupValues](#PlatformBreakupValues)
5715
+ #### [Page](#Page)
5889
5716
 
5890
5717
  | Properties | Type | Nullable | Description |
5891
5718
  | ---------- | ---- | -------- | ----------- |
5892
- | value | string | no | |
5893
- | name | string | no | |
5894
- | display | string | no | |
5719
+ | has_previous | boolean | no | |
5720
+ | size | number | no | |
5721
+ | type | string | no | |
5722
+ | total | number | no | |
5723
+ | has_next | boolean | no | |
5724
+ | current | number | no | |
5895
5725
 
5896
5726
  ---
5897
5727
 
@@ -5902,44 +5732,41 @@ Sms Sent successfully
5902
5732
 
5903
5733
  | Properties | Type | Nullable | Description |
5904
5734
  | ---------- | ---- | -------- | ----------- |
5905
- | name | string | no | |
5906
5735
  | logo | string | no | |
5736
+ | name | string | no | |
5907
5737
 
5908
5738
  ---
5909
5739
 
5910
5740
 
5911
5741
 
5912
5742
 
5913
- #### [PlatformOrderItems](#PlatformOrderItems)
5743
+ #### [PlatformBreakupValues](#PlatformBreakupValues)
5914
5744
 
5915
5745
  | Properties | Type | Nullable | Description |
5916
5746
  | ---------- | ---- | -------- | ----------- |
5917
- | payment_mode | string | no | |
5918
- | order_value | number | no | |
5919
- | total_order_value | number | no | |
5920
- | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5921
- | meta | string | no | |
5922
- | order_created_time | string | no | |
5923
- | order_id | string | no | |
5924
- | user_info | [UserDataInfo](#UserDataInfo) | no | |
5925
- | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
5926
- | channel | [PlatformChannel](#PlatformChannel) | no | |
5747
+ | display | string | no | |
5748
+ | value | string | no | |
5749
+ | name | string | no | |
5927
5750
 
5928
5751
  ---
5929
5752
 
5930
5753
 
5931
5754
 
5932
5755
 
5933
- #### [Page](#Page)
5756
+ #### [PlatformOrderItems](#PlatformOrderItems)
5934
5757
 
5935
5758
  | Properties | Type | Nullable | Description |
5936
5759
  | ---------- | ---- | -------- | ----------- |
5937
- | has_previous | boolean | no | |
5938
- | current | number | no | |
5939
- | has_next | boolean | no | |
5940
- | type | string | no | |
5941
- | total | number | no | |
5942
- | size | number | no | |
5760
+ | payment_mode | string | no | |
5761
+ | shipments | [[PlatformShipment](#PlatformShipment)] | no | |
5762
+ | user_info | [UserDataInfo](#UserDataInfo) | no | |
5763
+ | order_created_time | string | no | |
5764
+ | channel | [PlatformChannel](#PlatformChannel) | no | |
5765
+ | total_order_value | number | no | |
5766
+ | order_id | string | no | |
5767
+ | breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
5768
+ | meta | string | no | |
5769
+ | order_value | number | no | |
5943
5770
 
5944
5771
  ---
5945
5772
 
@@ -5950,12 +5777,12 @@ Sms Sent successfully
5950
5777
 
5951
5778
  | Properties | Type | Nullable | Description |
5952
5779
  | ---------- | ---- | -------- | ----------- |
5953
- | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
5954
- | message | string | no | |
5780
+ | lane | string | no | |
5955
5781
  | page | [Page](#Page) | no | |
5956
- | success | boolean | no | |
5957
5782
  | total_count | number | no | |
5958
- | lane | string | no | |
5783
+ | success | boolean | no | |
5784
+ | message | string | no | |
5785
+ | items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
5959
5786
 
5960
5787
  ---
5961
5788
 
@@ -5966,8 +5793,8 @@ Sms Sent successfully
5966
5793
 
5967
5794
  | Properties | Type | Nullable | Description |
5968
5795
  | ---------- | ---- | -------- | ----------- |
5969
- | value | number | no | |
5970
5796
  | text | string | no | |
5797
+ | value | number | no | |
5971
5798
 
5972
5799
  ---
5973
5800
 
@@ -5978,10 +5805,10 @@ Sms Sent successfully
5978
5805
 
5979
5806
  | Properties | Type | Nullable | Description |
5980
5807
  | ---------- | ---- | -------- | ----------- |
5981
- | value | number | yes | |
5982
5808
  | options | [[Options](#Options)] | no | |
5983
- | text | string | yes | |
5809
+ | value | number | yes | |
5984
5810
  | key | string | yes | |
5811
+ | text | string | yes | |
5985
5812
 
5986
5813
  ---
5987
5814
 
@@ -6003,16 +5830,16 @@ Sms Sent successfully
6003
5830
 
6004
5831
  | Properties | Type | Nullable | Description |
6005
5832
  | ---------- | ---- | -------- | ----------- |
6006
- | updated_time | string | no | |
6007
5833
  | awb | string | no | |
6008
- | reason | string | no | |
6009
- | shipment_type | string | no | |
6010
- | updated_at | string | no | |
5834
+ | updated_time | string | no | |
5835
+ | account_name | string | no | |
6011
5836
  | status | string | no | |
5837
+ | last_location_recieved_at | string | no | |
6012
5838
  | raw_status | string | no | |
6013
5839
  | meta | string | no | |
6014
- | account_name | string | no | |
6015
- | last_location_recieved_at | string | no | |
5840
+ | reason | string | no | |
5841
+ | updated_at | string | no | |
5842
+ | shipment_type | string | no | |
6016
5843
 
6017
5844
  ---
6018
5845
 
@@ -6046,8 +5873,8 @@ Sms Sent successfully
6046
5873
 
6047
5874
  | Properties | Type | Nullable | Description |
6048
5875
  | ---------- | ---- | -------- | ----------- |
6049
- | success | boolean | no | |
6050
5876
  | message | string | no | |
5877
+ | success | boolean | no | |
6051
5878
 
6052
5879
  ---
6053
5880
 
@@ -6058,351 +5885,202 @@ Sms Sent successfully
6058
5885
 
6059
5886
  | Properties | Type | Nullable | Description |
6060
5887
  | ---------- | ---- | -------- | ----------- |
6061
- | report_requested_at | string | no | |
6062
- | report_type | string | no | |
6063
- | report_created_at | string | no | |
6064
- | report_id | string | no | |
6065
5888
  | request_details | string | no | |
5889
+ | display_name | string | no | |
5890
+ | report_id | string | no | |
6066
5891
  | status | string | no | |
6067
- | report_name | string | no | |
6068
5892
  | s3_key | string | no | |
6069
- | display_name | string | no | |
6070
-
6071
- ---
6072
-
6073
-
6074
-
6075
-
6076
- #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
6077
-
6078
- | Properties | Type | Nullable | Description |
6079
- | ---------- | ---- | -------- | ----------- |
6080
- | item_id | string | no | |
6081
- | jio_code | string | no | |
6082
- | article_id | string | no | |
6083
- | company_id | string | no | |
6084
-
6085
- ---
6086
-
6087
-
6088
-
6089
-
6090
- #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
6091
-
6092
- | Properties | Type | Nullable | Description |
6093
- | ---------- | ---- | -------- | ----------- |
6094
- | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
6095
-
6096
- ---
6097
-
6098
-
6099
-
6100
-
6101
- #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
6102
-
6103
- | Properties | Type | Nullable | Description |
6104
- | ---------- | ---- | -------- | ----------- |
6105
- | value | string | no | |
6106
- | type | string | no | |
6107
- | message | string | no | |
6108
-
6109
- ---
6110
-
6111
-
6112
-
6113
-
6114
- #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
6115
-
6116
- | Properties | Type | Nullable | Description |
6117
- | ---------- | ---- | -------- | ----------- |
6118
- | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
6119
- | trace_id | string | no | |
6120
- | identifier | string | no | |
6121
- | success | boolean | no | |
6122
- | data | [string] | no | |
6123
-
6124
- ---
6125
-
6126
-
6127
-
6128
-
6129
- #### [BulkInvoicingResponse](#BulkInvoicingResponse)
6130
-
6131
- | Properties | Type | Nullable | Description |
6132
- | ---------- | ---- | -------- | ----------- |
6133
- | success | boolean | yes | |
6134
- | message | string | no | |
6135
-
6136
- ---
6137
-
6138
-
6139
-
6140
-
6141
- #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
6142
-
6143
- | Properties | Type | Nullable | Description |
6144
- | ---------- | ---- | -------- | ----------- |
6145
- | invoice_status | string | no | |
6146
- | batch_id | string | yes | |
6147
- | store_name | string | no | |
6148
- | company_id | string | no | |
6149
- | store_code | string | no | |
6150
- | do_invoice_label_generated | boolean | yes | |
6151
- | store_id | string | no | |
6152
- | label | string | no | |
6153
- | invoice | string | no | |
6154
- | data | string | no | |
6155
-
6156
- ---
6157
-
6158
-
6159
-
6160
-
6161
- #### [FileUploadResponse](#FileUploadResponse)
6162
-
6163
- | Properties | Type | Nullable | Description |
6164
- | ---------- | ---- | -------- | ----------- |
6165
- | expiry | number | no | |
6166
- | url | string | no | |
6167
-
6168
- ---
6169
-
6170
-
6171
-
6172
-
6173
- #### [URL](#URL)
6174
-
6175
- | Properties | Type | Nullable | Description |
6176
- | ---------- | ---- | -------- | ----------- |
6177
- | url | string | no | |
6178
-
6179
- ---
6180
-
6181
-
6182
-
6183
-
6184
- #### [FileResponse](#FileResponse)
6185
-
6186
- | Properties | Type | Nullable | Description |
6187
- | ---------- | ---- | -------- | ----------- |
6188
- | content_type | string | no | |
6189
- | file_path | string | no | |
6190
- | tags | [string] | no | |
6191
- | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6192
- | method | string | no | |
6193
- | operation | string | no | |
6194
- | cdn | [URL](#URL) | no | |
6195
- | file_name | string | no | |
6196
- | namespace | string | no | |
6197
- | size | number | no | |
6198
-
6199
- ---
6200
-
6201
-
6202
-
6203
-
6204
- #### [BulkListingPage](#BulkListingPage)
6205
-
6206
- | Properties | Type | Nullable | Description |
6207
- | ---------- | ---- | -------- | ----------- |
6208
- | has_previous | boolean | no | |
6209
- | current | number | no | |
6210
- | has_next | boolean | no | |
6211
- | type | string | no | |
6212
- | total | number | no | |
6213
- | size | number | no | |
5893
+ | report_name | string | no | |
5894
+ | report_type | string | no | |
5895
+ | report_created_at | string | no | |
5896
+ | report_requested_at | string | no | |
6214
5897
 
6215
5898
  ---
6216
5899
 
6217
5900
 
6218
5901
 
6219
5902
 
6220
- #### [bulkListingData](#bulkListingData)
5903
+ #### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
6221
5904
 
6222
5905
  | Properties | Type | Nullable | Description |
6223
5906
  | ---------- | ---- | -------- | ----------- |
6224
- | processing | number | no | |
6225
- | successful | number | no | |
6226
- | status | string | no | |
6227
- | file_name | string | no | |
6228
- | batch_id | string | no | |
6229
- | store_name | string | no | |
6230
- | store_code | string | no | |
6231
- | processing_shipments | [string] | no | |
6232
- | company_id | number | no | |
6233
- | failed_shipments | [string] | no | |
6234
- | user_name | string | no | |
6235
- | excel_url | string | no | |
6236
- | id | string | no | |
6237
- | successful_shipments | [string] | no | |
6238
- | user_id | string | no | |
6239
- | failed | number | no | |
6240
- | store_id | number | no | |
6241
- | total | number | no | |
6242
- | uploaded_on | string | no | |
5907
+ | article_id | string | no | |
5908
+ | item_id | string | no | |
5909
+ | jio_code | string | no | |
5910
+ | company_id | string | no | |
6243
5911
 
6244
5912
  ---
6245
5913
 
6246
5914
 
6247
5915
 
6248
5916
 
6249
- #### [BulkListingResponse](#BulkListingResponse)
5917
+ #### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
6250
5918
 
6251
5919
  | Properties | Type | Nullable | Description |
6252
5920
  | ---------- | ---- | -------- | ----------- |
6253
- | page | [BulkListingPage](#BulkListingPage) | no | |
6254
- | success | boolean | no | |
6255
- | data | [[bulkListingData](#bulkListingData)] | no | |
6256
- | error | string | no | |
5921
+ | data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
6257
5922
 
6258
5923
  ---
6259
5924
 
6260
5925
 
6261
5926
 
6262
5927
 
6263
- #### [DateRange](#DateRange)
5928
+ #### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
6264
5929
 
6265
5930
  | Properties | Type | Nullable | Description |
6266
5931
  | ---------- | ---- | -------- | ----------- |
6267
- | from_date | string | no | |
6268
- | to_date | string | no | |
5932
+ | message | string | no | |
5933
+ | type | string | no | |
5934
+ | value | string | no | |
6269
5935
 
6270
5936
  ---
6271
5937
 
6272
5938
 
6273
5939
 
6274
5940
 
6275
- #### [ManifestFilter](#ManifestFilter)
5941
+ #### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
6276
5942
 
6277
5943
  | Properties | Type | Nullable | Description |
6278
5944
  | ---------- | ---- | -------- | ----------- |
6279
- | dp_name | string | no | |
6280
- | store_name | string | no | |
6281
- | sales_channel_name | string | no | |
6282
- | stores | string | no | |
6283
- | date_range | [DateRange](#DateRange) | no | |
6284
- | dp_ids | string | no | |
6285
- | sales_channels | string | no | |
6286
- | lane | string | no | |
5945
+ | trace_id | string | no | |
5946
+ | identifier | string | no | |
5947
+ | success | boolean | no | |
5948
+ | error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
5949
+ | data | [string] | no | |
6287
5950
 
6288
5951
  ---
6289
5952
 
6290
5953
 
6291
5954
 
6292
5955
 
6293
- #### [GeneratedManifestItem](#GeneratedManifestItem)
5956
+ #### [BulkInvoicingResponse](#BulkInvoicingResponse)
6294
5957
 
6295
5958
  | Properties | Type | Nullable | Description |
6296
5959
  | ---------- | ---- | -------- | ----------- |
6297
- | company_id | number | no | |
6298
- | created_at | string | no | |
6299
- | is_active | boolean | no | |
6300
- | created_by | string | no | |
6301
- | status | string | no | |
6302
- | manifest_id | string | no | |
6303
- | filters | [ManifestFilter](#ManifestFilter) | no | |
5960
+ | message | string | no | |
5961
+ | success | boolean | yes | |
6304
5962
 
6305
5963
  ---
6306
5964
 
6307
5965
 
6308
5966
 
6309
5967
 
6310
- #### [ManifestPage](#ManifestPage)
5968
+ #### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
6311
5969
 
6312
5970
  | Properties | Type | Nullable | Description |
6313
5971
  | ---------- | ---- | -------- | ----------- |
6314
- | has_previous | boolean | no | |
6315
- | current | string | no | |
6316
- | has_next | boolean | no | |
6317
- | type | string | no | |
6318
- | total | number | no | |
6319
- | size | string | no | |
5972
+ | batch_id | string | yes | |
5973
+ | store_id | string | no | |
5974
+ | store_code | string | no | |
5975
+ | invoice_status | string | no | |
5976
+ | store_name | string | no | |
5977
+ | company_id | string | no | |
5978
+ | data | string | no | |
5979
+ | invoice | string | no | |
5980
+ | label | string | no | |
5981
+ | do_invoice_label_generated | boolean | yes | |
6320
5982
 
6321
5983
  ---
6322
5984
 
6323
5985
 
6324
5986
 
6325
5987
 
6326
- #### [GeneratedManifestResponse](#GeneratedManifestResponse)
5988
+ #### [URL](#URL)
6327
5989
 
6328
5990
  | Properties | Type | Nullable | Description |
6329
5991
  | ---------- | ---- | -------- | ----------- |
6330
- | items | [[GeneratedManifestItem](#GeneratedManifestItem)] | no | |
6331
- | page | [ManifestPage](#ManifestPage) | no | |
5992
+ | url | string | no | |
6332
5993
 
6333
5994
  ---
6334
5995
 
6335
5996
 
6336
5997
 
6337
5998
 
6338
- #### [ManifestDetailItem](#ManifestDetailItem)
5999
+ #### [FileUploadResponse](#FileUploadResponse)
6339
6000
 
6340
6001
  | Properties | Type | Nullable | Description |
6341
6002
  | ---------- | ---- | -------- | ----------- |
6342
- | shipment_id | string | no | |
6343
- | awb | string | no | |
6344
- | invoice_id | string | no | |
6345
- | order_id | string | no | |
6346
- | item_qty | number | no | |
6003
+ | expiry | number | no | |
6004
+ | url | string | no | |
6347
6005
 
6348
6006
  ---
6349
6007
 
6350
6008
 
6351
6009
 
6352
6010
 
6353
- #### [ManifestDetailTotalShipmentPricesCount](#ManifestDetailTotalShipmentPricesCount)
6011
+ #### [FileResponse](#FileResponse)
6354
6012
 
6355
6013
  | Properties | Type | Nullable | Description |
6356
6014
  | ---------- | ---- | -------- | ----------- |
6357
- | total_price | number | no | |
6358
- | shipment_count | number | no | |
6015
+ | operation | string | no | |
6016
+ | method | string | no | |
6017
+ | cdn | [URL](#URL) | no | |
6018
+ | size | number | no | |
6019
+ | file_path | string | no | |
6020
+ | tags | [string] | no | |
6021
+ | content_type | string | no | |
6022
+ | upload | [FileUploadResponse](#FileUploadResponse) | no | |
6023
+ | namespace | string | no | |
6024
+ | file_name | string | no | |
6359
6025
 
6360
6026
  ---
6361
6027
 
6362
6028
 
6363
6029
 
6364
6030
 
6365
- #### [ManifestDetailMeta](#ManifestDetailMeta)
6031
+ #### [BulkListingPage](#BulkListingPage)
6366
6032
 
6367
6033
  | Properties | Type | Nullable | Description |
6368
6034
  | ---------- | ---- | -------- | ----------- |
6369
- | filters | [ManifestFilter](#ManifestFilter) | no | |
6370
- | total_shipment_prices_count | [ManifestDetailTotalShipmentPricesCount](#ManifestDetailTotalShipmentPricesCount) | no | |
6035
+ | has_previous | boolean | no | |
6036
+ | size | number | no | |
6037
+ | type | string | no | |
6038
+ | total | number | no | |
6039
+ | has_next | boolean | no | |
6040
+ | current | number | no | |
6371
6041
 
6372
6042
  ---
6373
6043
 
6374
6044
 
6375
6045
 
6376
6046
 
6377
- #### [ManifestDetail](#ManifestDetail)
6047
+ #### [bulkListingData](#bulkListingData)
6378
6048
 
6379
6049
  | Properties | Type | Nullable | Description |
6380
6050
  | ---------- | ---- | -------- | ----------- |
6381
- | uid | number | no | |
6051
+ | batch_id | string | no | |
6052
+ | store_id | number | no | |
6053
+ | store_code | string | no | |
6054
+ | failed | number | no | |
6055
+ | store_name | string | no | |
6056
+ | user_id | string | no | |
6057
+ | excel_url | string | no | |
6058
+ | file_name | string | no | |
6059
+ | processing_shipments | [string] | no | |
6060
+ | successful | number | no | |
6061
+ | id | string | no | |
6062
+ | user_name | string | no | |
6063
+ | successful_shipments | [string] | no | |
6064
+ | uploaded_on | string | no | |
6382
6065
  | company_id | number | no | |
6383
- | created_at | string | no | |
6384
- | user_id | number | no | |
6385
- | is_active | boolean | no | |
6386
- | created_by | string | no | |
6387
- | meta | [ManifestDetailMeta](#ManifestDetailMeta) | no | |
6388
6066
  | status | string | no | |
6389
- | id | number | no | |
6390
- | manifest_id | string | no | |
6391
- | filters | [ManifestFilter](#ManifestFilter) | no | |
6067
+ | total | number | no | |
6068
+ | failed_shipments | [string] | no | |
6069
+ | processing | number | no | |
6392
6070
 
6393
6071
  ---
6394
6072
 
6395
6073
 
6396
6074
 
6397
6075
 
6398
- #### [ManifestDetailResponse](#ManifestDetailResponse)
6076
+ #### [BulkListingResponse](#BulkListingResponse)
6399
6077
 
6400
6078
  | Properties | Type | Nullable | Description |
6401
6079
  | ---------- | ---- | -------- | ----------- |
6402
- | items | [[ManifestDetailItem](#ManifestDetailItem)] | no | |
6403
- | page | [ManifestPage](#ManifestPage) | no | |
6404
- | additional_shipment_count | number | no | |
6405
- | manifest_details | [[ManifestDetail](#ManifestDetail)] | no | |
6080
+ | error | string | no | |
6081
+ | page | [BulkListingPage](#BulkListingPage) | no | |
6082
+ | success | boolean | no | |
6083
+ | data | [[bulkListingData](#bulkListingData)] | no | |
6406
6084
 
6407
6085
  ---
6408
6086
 
@@ -6413,8 +6091,8 @@ Sms Sent successfully
6413
6091
 
6414
6092
  | Properties | Type | Nullable | Description |
6415
6093
  | ---------- | ---- | -------- | ----------- |
6416
- | id | number | no | |
6417
6094
  | display_name | string | no | |
6095
+ | id | number | no | |
6418
6096
 
6419
6097
  ---
6420
6098
 
@@ -6425,10 +6103,10 @@ Sms Sent successfully
6425
6103
 
6426
6104
  | Properties | Type | Nullable | Description |
6427
6105
  | ---------- | ---- | -------- | ----------- |
6428
- | id | number | no | |
6429
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
6430
- | qc_type | [string] | no | |
6431
6106
  | display_name | string | no | |
6107
+ | qc_type | [string] | no | |
6108
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
6109
+ | id | number | no | |
6432
6110
 
6433
6111
  ---
6434
6112
 
@@ -6439,8 +6117,8 @@ Sms Sent successfully
6439
6117
 
6440
6118
  | Properties | Type | Nullable | Description |
6441
6119
  | ---------- | ---- | -------- | ----------- |
6442
- | success | boolean | no | |
6443
6120
  | reasons | [[Reason](#Reason)] | no | |
6121
+ | success | boolean | no | |
6444
6122
 
6445
6123
  ---
6446
6124
 
@@ -6462,8 +6140,8 @@ Sms Sent successfully
6462
6140
 
6463
6141
  | Properties | Type | Nullable | Description |
6464
6142
  | ---------- | ---- | -------- | ----------- |
6465
- | status | boolean | no | |
6466
6143
  | message | string | no | |
6144
+ | status | boolean | no | |
6467
6145
 
6468
6146
  ---
6469
6147
 
@@ -6474,13 +6152,13 @@ Sms Sent successfully
6474
6152
 
6475
6153
  | Properties | Type | Nullable | Description |
6476
6154
  | ---------- | ---- | -------- | ----------- |
6477
- | batch_id | string | no | |
6478
6155
  | total_shipments_count | number | no | |
6479
- | company_id | string | no | |
6156
+ | batch_id | string | no | |
6480
6157
  | successful_shipment_ids | [string] | no | |
6158
+ | company_id | string | no | |
6481
6159
  | successful_shipments_count | number | no | |
6482
- | processing_shipments_count | number | no | |
6483
6160
  | failed_shipments_count | number | no | |
6161
+ | processing_shipments_count | number | no | |
6484
6162
 
6485
6163
  ---
6486
6164
 
@@ -6491,287 +6169,293 @@ Sms Sent successfully
6491
6169
 
6492
6170
  | Properties | Type | Nullable | Description |
6493
6171
  | ---------- | ---- | -------- | ----------- |
6494
- | error | [string] | no | |
6495
- | user_id | string | no | |
6496
- | status | boolean | no | |
6497
6172
  | failed_records | [string] | no | |
6498
- | message | string | no | |
6499
- | uploaded_by | string | no | |
6500
6173
  | uploaded_on | string | no | |
6501
6174
  | success | string | no | |
6175
+ | status | boolean | no | |
6176
+ | error | [string] | no | |
6177
+ | uploaded_by | string | no | |
6178
+ | user_id | string | no | |
6502
6179
  | data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
6180
+ | message | string | no | |
6503
6181
 
6504
6182
  ---
6505
6183
 
6506
6184
 
6507
6185
 
6508
6186
 
6509
- #### [ArticleDetails](#ArticleDetails)
6187
+ #### [AffiliateMeta](#AffiliateMeta)
6510
6188
 
6511
6189
  | Properties | Type | Nullable | Description |
6512
6190
  | ---------- | ---- | -------- | ----------- |
6513
- | status | string | no | |
6191
+ | box_type | string | no | |
6192
+ | order_item_id | string | no | |
6193
+ | coupon_code | string | no | |
6194
+ | employee_discount | number | no | |
6195
+ | channel_shipment_id | string | no | |
6196
+ | is_priority | boolean | no | |
6197
+ | channel_order_id | string | no | |
6198
+ | loyalty_discount | number | no | |
6199
+ | quantity | number | no | |
6200
+ | due_date | string | no | |
6201
+ | size_level_total_qty | number | no | |
6514
6202
 
6515
6203
  ---
6516
6204
 
6517
6205
 
6518
6206
 
6519
6207
 
6520
- #### [Dates](#Dates)
6208
+ #### [AffiliateBagDetails](#AffiliateBagDetails)
6521
6209
 
6522
6210
  | Properties | Type | Nullable | Description |
6523
6211
  | ---------- | ---- | -------- | ----------- |
6524
- | delivery_date | any | no | |
6525
- | order_created | string | no | |
6212
+ | affiliate_order_id | string | yes | |
6213
+ | employee_discount | number | no | |
6214
+ | loyalty_discount | number | no | |
6215
+ | affiliate_bag_id | string | yes | |
6216
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6526
6217
 
6527
6218
  ---
6528
6219
 
6529
6220
 
6530
6221
 
6531
6222
 
6532
- #### [B2BPODetails](#B2BPODetails)
6223
+ #### [BagGSTDetails](#BagGSTDetails)
6533
6224
 
6534
6225
  | Properties | Type | Nullable | Description |
6535
6226
  | ---------- | ---- | -------- | ----------- |
6536
- | docker_number | string | no | |
6537
- | po_line_amount | number | no | |
6538
- | item_base_price | number | no | |
6539
- | partial_can_ret | boolean | no | |
6540
- | total_gst_percentage | number | no | |
6541
- | po_tax_amount | number | no | |
6227
+ | gst_fee | number | yes | |
6228
+ | igst_tax_percentage | number | yes | |
6229
+ | hsn_code_id | string | yes | |
6230
+ | cgst_gst_fee | string | yes | |
6231
+ | is_default_hsn_code | boolean | no | |
6232
+ | brand_calculated_amount | number | yes | |
6233
+ | sgst_tax_percentage | number | yes | |
6234
+ | sgst_gst_fee | string | yes | |
6235
+ | igst_gst_fee | string | yes | |
6236
+ | gst_tag | string | yes | |
6237
+ | gst_tax_percentage | number | yes | |
6238
+ | tax_collected_at_source | number | yes | |
6239
+ | cgst_tax_percentage | number | yes | |
6240
+ | gstin_code | string | no | |
6241
+ | hsn_code | string | yes | |
6242
+ | value_of_good | number | yes | |
6542
6243
 
6543
6244
  ---
6544
6245
 
6545
6246
 
6546
6247
 
6547
6248
 
6548
- #### [BagMeta](#BagMeta)
6249
+ #### [ReturnConfig](#ReturnConfig)
6549
6250
 
6550
6251
  | Properties | Type | Nullable | Description |
6551
6252
  | ---------- | ---- | -------- | ----------- |
6552
- | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
6253
+ | time | number | no | |
6254
+ | returnable | boolean | no | |
6255
+ | unit | string | no | |
6553
6256
 
6554
6257
  ---
6555
6258
 
6556
6259
 
6557
6260
 
6558
6261
 
6559
- #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
6262
+ #### [Dimensions](#Dimensions)
6560
6263
 
6561
6264
  | Properties | Type | Nullable | Description |
6562
6265
  | ---------- | ---- | -------- | ----------- |
6563
- | enable_tracking | boolean | yes | |
6564
- | can_be_cancelled | boolean | yes | |
6565
- | is_customer_return_allowed | boolean | yes | |
6566
- | is_active | boolean | yes | |
6567
- | is_returnable | boolean | yes | |
6266
+ | length | number | no | |
6267
+ | unit | string | no | |
6268
+ | width | number | no | |
6269
+ | height | number | no | |
6270
+ | is_default | boolean | no | |
6568
6271
 
6569
6272
  ---
6570
6273
 
6571
6274
 
6572
6275
 
6573
6276
 
6574
- #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6277
+ #### [Weight](#Weight)
6575
6278
 
6576
6279
  | Properties | Type | Nullable | Description |
6577
6280
  | ---------- | ---- | -------- | ----------- |
6578
- | user | string | no | |
6579
- | username | string | no | |
6580
- | password | string | no | |
6281
+ | shipping | number | no | |
6282
+ | unit | string | no | |
6283
+ | is_default | boolean | no | |
6581
6284
 
6582
6285
  ---
6583
6286
 
6584
6287
 
6585
6288
 
6586
6289
 
6587
- #### [Document](#Document)
6290
+ #### [Article](#Article)
6588
6291
 
6589
6292
  | Properties | Type | Nullable | Description |
6590
6293
  | ---------- | ---- | -------- | ----------- |
6591
- | url | string | no | |
6592
- | legal_name | string | yes | |
6593
- | verified | boolean | yes | |
6594
- | value | string | yes | |
6595
- | ds_type | string | yes | |
6294
+ | raw_meta | any | no | |
6295
+ | child_details | string | no | |
6296
+ | uid | string | yes | |
6297
+ | identifiers | [Identifier](#Identifier) | yes | |
6298
+ | size | string | yes | |
6299
+ | _id | string | yes | |
6300
+ | seller_identifier | string | yes | |
6301
+ | a_set | string | no | |
6302
+ | return_config | [ReturnConfig](#ReturnConfig) | no | |
6303
+ | dimensions | [Dimensions](#Dimensions) | no | |
6304
+ | weight | [Weight](#Weight) | no | |
6305
+ | esp_modified | any | no | |
6306
+ | code | string | no | |
6307
+ | is_set | boolean | no | |
6596
6308
 
6597
6309
  ---
6598
6310
 
6599
6311
 
6600
6312
 
6601
6313
 
6602
- #### [StoreDocuments](#StoreDocuments)
6314
+ #### [ArticleDetails](#ArticleDetails)
6603
6315
 
6604
6316
  | Properties | Type | Nullable | Description |
6605
6317
  | ---------- | ---- | -------- | ----------- |
6606
- | gst | [Document](#Document) | no | |
6318
+ | status | string | no | |
6607
6319
 
6608
6320
  ---
6609
6321
 
6610
6322
 
6611
6323
 
6612
6324
 
6613
- #### [StoreEwaybill](#StoreEwaybill)
6325
+ #### [EInvoice](#EInvoice)
6614
6326
 
6615
6327
  | Properties | Type | Nullable | Description |
6616
6328
  | ---------- | ---- | -------- | ----------- |
6617
- | enabled | boolean | no | |
6329
+ | signed_invoice | string | no | |
6330
+ | acknowledge_date | string | no | |
6331
+ | acknowledge_no | number | no | |
6332
+ | error_message | string | no | |
6333
+ | irn | string | no | |
6334
+ | error_code | string | no | |
6335
+ | signed_qr_code | string | no | |
6618
6336
 
6619
6337
  ---
6620
6338
 
6621
6339
 
6622
6340
 
6623
6341
 
6624
- #### [StoreEinvoice](#StoreEinvoice)
6342
+ #### [EinvoiceInfo](#EinvoiceInfo)
6625
6343
 
6626
6344
  | Properties | Type | Nullable | Description |
6627
6345
  | ---------- | ---- | -------- | ----------- |
6628
- | user | string | no | |
6629
- | enabled | boolean | yes | |
6630
- | username | string | no | |
6631
- | password | string | no | |
6346
+ | invoice | [EInvoice](#EInvoice) | no | |
6347
+ | credit_note | [EInvoice](#EInvoice) | no | |
6632
6348
 
6633
6349
  ---
6634
6350
 
6635
6351
 
6636
6352
 
6637
6353
 
6638
- #### [StoreGstCredentials](#StoreGstCredentials)
6354
+ #### [LockData](#LockData)
6639
6355
 
6640
6356
  | Properties | Type | Nullable | Description |
6641
6357
  | ---------- | ---- | -------- | ----------- |
6642
- | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6643
- | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6358
+ | mto | boolean | no | |
6359
+ | locked | boolean | no | |
6360
+ | lock_message | string | no | |
6644
6361
 
6645
6362
  ---
6646
6363
 
6647
6364
 
6648
6365
 
6649
6366
 
6650
- #### [StoreMeta](#StoreMeta)
6367
+ #### [ShipmentTimeStamp](#ShipmentTimeStamp)
6651
6368
 
6652
6369
  | Properties | Type | Nullable | Description |
6653
6370
  | ---------- | ---- | -------- | ----------- |
6654
- | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6655
- | ewaybill_portal_details | string | no | |
6656
- | documents | [StoreDocuments](#StoreDocuments) | no | |
6657
- | additional_contact_details | string | no | |
6658
- | notification_emails | [string] | no | |
6659
- | stage | string | yes | |
6660
- | timing | [string] | no | |
6661
- | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6662
- | product_return_config | string | no | |
6663
- | display_name | string | yes | |
6664
- | gst_number | string | no | |
6371
+ | t_min | string | no | |
6372
+ | t_max | string | no | |
6665
6373
 
6666
6374
  ---
6667
6375
 
6668
6376
 
6669
6377
 
6670
6378
 
6671
- #### [StoreAddress](#StoreAddress)
6379
+ #### [BuyerDetails](#BuyerDetails)
6672
6380
 
6673
6381
  | Properties | Type | Nullable | Description |
6674
6382
  | ---------- | ---- | -------- | ----------- |
6675
- | address_category | string | yes | |
6676
- | created_at | string | yes | |
6677
- | email | string | no | |
6678
- | address2 | string | no | |
6679
- | contact_person | string | yes | |
6680
- | address1 | string | yes | |
6681
- | country_code | string | yes | |
6682
- | city | string | yes | |
6683
- | pincode | number | yes | |
6684
- | updated_at | string | yes | |
6685
- | address_type | string | yes | |
6686
- | area | string | no | |
6687
6383
  | state | string | yes | |
6688
- | landmark | string | no | |
6689
- | longitude | number | yes | |
6690
- | latitude | number | yes | |
6691
- | country | string | yes | |
6692
- | phone | string | yes | |
6693
- | version | string | no | |
6384
+ | gstin | string | yes | |
6385
+ | name | string | yes | |
6386
+ | pincode | number | yes | |
6387
+ | ajio_site_id | string | no | |
6388
+ | city | string | yes | |
6389
+ | address | string | yes | |
6694
6390
 
6695
6391
  ---
6696
6392
 
6697
6393
 
6698
6394
 
6699
6395
 
6700
- #### [Store](#Store)
6396
+ #### [DebugInfo](#DebugInfo)
6701
6397
 
6702
6398
  | Properties | Type | Nullable | Description |
6703
6399
  | ---------- | ---- | -------- | ----------- |
6704
- | code | string | no | |
6705
- | created_at | string | yes | |
6706
- | store_active_from | string | no | |
6707
- | alohomora_user_id | number | no | |
6708
- | mall_area | string | no | |
6709
- | order_integration_id | string | no | |
6710
- | address2 | string | no | |
6711
- | contact_person | string | yes | |
6712
- | address1 | string | yes | |
6713
- | meta | [StoreMeta](#StoreMeta) | yes | |
6714
- | packaging_material_count | number | no | |
6715
- | city | string | yes | |
6716
- | parent_store_id | number | no | |
6717
- | pincode | string | yes | |
6718
- | is_enabled_for_recon | boolean | no | |
6719
- | is_active | boolean | no | |
6720
- | updated_at | string | no | |
6721
- | state | string | yes | |
6722
- | brand_id | any | no | |
6723
- | company_id | number | yes | |
6724
- | vat_no | string | no | |
6725
- | location_type | string | yes | |
6726
- | longitude | number | yes | |
6727
- | name | string | yes | |
6728
- | latitude | number | yes | |
6729
- | store_email | string | yes | |
6730
- | login_username | string | yes | |
6731
- | country | string | yes | |
6732
- | brand_store_tags | [string] | no | |
6733
- | store_address_json | [StoreAddress](#StoreAddress) | no | |
6734
- | s_id | string | yes | |
6735
- | is_archived | boolean | no | |
6736
- | phone | number | yes | |
6737
- | mall_name | string | no | |
6738
- | fulfillment_channel | string | yes | |
6400
+ | stormbreaker_uuid | string | no | |
6739
6401
 
6740
6402
  ---
6741
6403
 
6742
6404
 
6743
6405
 
6744
6406
 
6745
- #### [AffiliateMeta](#AffiliateMeta)
6407
+ #### [Formatted](#Formatted)
6746
6408
 
6747
6409
  | Properties | Type | Nullable | Description |
6748
6410
  | ---------- | ---- | -------- | ----------- |
6749
- | loyalty_discount | number | no | |
6750
- | channel_order_id | string | no | |
6751
- | channel_shipment_id | string | no | |
6752
- | quantity | number | no | |
6753
- | due_date | string | no | |
6754
- | is_priority | boolean | no | |
6755
- | size_level_total_qty | number | no | |
6756
- | box_type | string | no | |
6757
- | coupon_code | string | no | |
6758
- | employee_discount | number | no | |
6759
- | order_item_id | string | no | |
6411
+ | f_min | string | no | |
6412
+ | f_max | string | no | |
6760
6413
 
6761
6414
  ---
6762
6415
 
6763
6416
 
6764
6417
 
6765
6418
 
6766
- #### [AffiliateBagDetails](#AffiliateBagDetails)
6419
+ #### [ShipmentMeta](#ShipmentMeta)
6767
6420
 
6768
6421
  | Properties | Type | Nullable | Description |
6769
6422
  | ---------- | ---- | -------- | ----------- |
6770
- | affiliate_order_id | string | yes | |
6771
- | loyalty_discount | number | no | |
6772
- | affiliate_bag_id | string | yes | |
6773
- | employee_discount | number | no | |
6774
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6423
+ | ewaybill_info | string | no | |
6424
+ | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
6425
+ | return_affiliate_shipment_id | string | no | |
6426
+ | lock_data | [LockData](#LockData) | no | |
6427
+ | bag_weight | string | no | |
6428
+ | forward_affiliate_shipment_id | string | no | |
6429
+ | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
6430
+ | dp_name | string | no | |
6431
+ | due_date | string | no | |
6432
+ | forward_affiliate_order_id | string | no | |
6433
+ | shipment_volumetric_weight | number | no | |
6434
+ | assign_dp_from_sb | boolean | no | |
6435
+ | fulfilment_priority_text | string | no | |
6436
+ | auto_trigger_dp_assignment_acf | boolean | yes | |
6437
+ | weight | number | yes | |
6438
+ | awb_number | string | no | |
6439
+ | same_store_available | boolean | yes | |
6440
+ | return_awb_number | string | no | |
6441
+ | box_type | string | no | |
6442
+ | store_invoice_updated_date | string | no | |
6443
+ | return_store_node | number | no | |
6444
+ | shipment_weight | number | no | |
6445
+ | order_type | string | no | |
6446
+ | external | string | no | |
6447
+ | return_details | string | no | |
6448
+ | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
6449
+ | dp_sort_key | string | no | |
6450
+ | po_number | string | no | |
6451
+ | packaging_name | string | no | |
6452
+ | dp_id | string | no | |
6453
+ | dp_options | string | no | |
6454
+ | debug_info | [DebugInfo](#DebugInfo) | no | |
6455
+ | formatted | [Formatted](#Formatted) | no | |
6456
+ | b2c_buyer_details | string | no | |
6457
+ | return_affiliate_order_id | string | no | |
6458
+ | marketplace_store_id | string | no | |
6775
6459
 
6776
6460
  ---
6777
6461
 
@@ -6782,179 +6466,210 @@ Sms Sent successfully
6782
6466
 
6783
6467
  | Properties | Type | Nullable | Description |
6784
6468
  | ---------- | ---- | -------- | ----------- |
6785
- | invoice_a4 | string | no | |
6786
- | b2b | string | no | |
6787
- | invoice_a6 | string | no | |
6788
- | invoice_pos | string | no | |
6789
- | label_a4 | string | no | |
6469
+ | label_type | string | yes | |
6790
6470
  | label_a6 | string | no | |
6471
+ | po_invoice | string | no | |
6472
+ | label_a4 | string | no | |
6473
+ | invoice_a6 | string | no | |
6791
6474
  | label_pos | string | no | |
6792
- | label | string | no | |
6475
+ | invoice_a4 | string | no | |
6476
+ | credit_note_url | string | no | |
6477
+ | invoice_pos | string | no | |
6478
+ | b2b | string | no | |
6793
6479
  | invoice | string | no | |
6794
- | label_type | string | yes | |
6480
+ | label | string | no | |
6795
6481
  | invoice_type | string | yes | |
6796
- | po_invoice | string | no | |
6797
- | credit_note_url | string | no | |
6798
6482
 
6799
6483
  ---
6800
6484
 
6801
6485
 
6802
6486
 
6803
6487
 
6804
- #### [EInvoice](#EInvoice)
6488
+ #### [AffiliateDetails](#AffiliateDetails)
6805
6489
 
6806
6490
  | Properties | Type | Nullable | Description |
6807
6491
  | ---------- | ---- | -------- | ----------- |
6808
- | irn | string | no | |
6809
- | error_message | string | no | |
6810
- | acknowledge_no | number | no | |
6811
- | error_code | string | no | |
6812
- | signed_invoice | string | no | |
6813
- | signed_qr_code | string | no | |
6814
- | acknowledge_date | string | no | |
6492
+ | affiliate_order_id | string | yes | |
6493
+ | affiliate_id | string | no | |
6494
+ | affiliate_store_id | string | yes | |
6495
+ | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
6496
+ | company_affiliate_tag | string | no | |
6497
+ | affiliate_shipment_id | string | yes | |
6498
+ | affiliate_bag_id | string | yes | |
6499
+ | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6500
+ | ad_id | string | no | |
6501
+ | pdf_links | [PDFLinks](#PDFLinks) | no | |
6815
6502
 
6816
6503
  ---
6817
6504
 
6818
6505
 
6819
6506
 
6820
6507
 
6821
- #### [EinvoiceInfo](#EinvoiceInfo)
6508
+ #### [StoreAddress](#StoreAddress)
6822
6509
 
6823
6510
  | Properties | Type | Nullable | Description |
6824
6511
  | ---------- | ---- | -------- | ----------- |
6825
- | credit_note | [EInvoice](#EInvoice) | no | |
6826
- | invoice | [EInvoice](#EInvoice) | no | |
6512
+ | country_code | string | yes | |
6513
+ | address_category | string | yes | |
6514
+ | pincode | number | yes | |
6515
+ | country | string | yes | |
6516
+ | phone | string | yes | |
6517
+ | area | string | no | |
6518
+ | version | string | no | |
6519
+ | city | string | yes | |
6520
+ | contact_person | string | yes | |
6521
+ | created_at | string | yes | |
6522
+ | landmark | string | no | |
6523
+ | state | string | yes | |
6524
+ | longitude | number | yes | |
6525
+ | latitude | number | yes | |
6526
+ | address1 | string | yes | |
6527
+ | address_type | string | yes | |
6528
+ | address2 | string | no | |
6529
+ | email | string | no | |
6530
+ | updated_at | string | yes | |
6827
6531
 
6828
6532
  ---
6829
6533
 
6830
6534
 
6831
6535
 
6832
6536
 
6833
- #### [Formatted](#Formatted)
6537
+ #### [EInvoicePortalDetails](#EInvoicePortalDetails)
6834
6538
 
6835
6539
  | Properties | Type | Nullable | Description |
6836
6540
  | ---------- | ---- | -------- | ----------- |
6837
- | f_min | string | no | |
6838
- | f_max | string | no | |
6541
+ | user | string | no | |
6542
+ | username | string | no | |
6543
+ | password | string | no | |
6839
6544
 
6840
6545
  ---
6841
6546
 
6842
6547
 
6843
6548
 
6844
6549
 
6845
- #### [ShipmentTimeStamp](#ShipmentTimeStamp)
6550
+ #### [Document](#Document)
6846
6551
 
6847
6552
  | Properties | Type | Nullable | Description |
6848
6553
  | ---------- | ---- | -------- | ----------- |
6849
- | t_max | string | no | |
6850
- | t_min | string | no | |
6554
+ | ds_type | string | yes | |
6555
+ | url | string | no | |
6556
+ | value | string | yes | |
6557
+ | verified | boolean | yes | |
6558
+ | legal_name | string | yes | |
6851
6559
 
6852
6560
  ---
6853
6561
 
6854
6562
 
6855
6563
 
6856
6564
 
6857
- #### [DebugInfo](#DebugInfo)
6565
+ #### [StoreDocuments](#StoreDocuments)
6858
6566
 
6859
6567
  | Properties | Type | Nullable | Description |
6860
6568
  | ---------- | ---- | -------- | ----------- |
6861
- | stormbreaker_uuid | string | no | |
6569
+ | gst | [Document](#Document) | no | |
6862
6570
 
6863
6571
  ---
6864
6572
 
6865
6573
 
6866
6574
 
6867
6575
 
6868
- #### [BuyerDetails](#BuyerDetails)
6576
+ #### [StoreEinvoice](#StoreEinvoice)
6869
6577
 
6870
6578
  | Properties | Type | Nullable | Description |
6871
6579
  | ---------- | ---- | -------- | ----------- |
6872
- | gstin | string | yes | |
6873
- | city | string | yes | |
6874
- | pincode | number | yes | |
6875
- | name | string | yes | |
6876
- | address | string | yes | |
6877
- | ajio_site_id | string | no | |
6878
- | state | string | yes | |
6580
+ | password | string | no | |
6581
+ | enabled | boolean | yes | |
6582
+ | username | string | no | |
6583
+ | user | string | no | |
6584
+
6585
+ ---
6586
+
6587
+
6588
+
6589
+
6590
+ #### [StoreEwaybill](#StoreEwaybill)
6591
+
6592
+ | Properties | Type | Nullable | Description |
6593
+ | ---------- | ---- | -------- | ----------- |
6594
+ | enabled | boolean | no | |
6879
6595
 
6880
6596
  ---
6881
6597
 
6882
6598
 
6883
6599
 
6884
6600
 
6885
- #### [LockData](#LockData)
6601
+ #### [StoreGstCredentials](#StoreGstCredentials)
6886
6602
 
6887
6603
  | Properties | Type | Nullable | Description |
6888
6604
  | ---------- | ---- | -------- | ----------- |
6889
- | lock_message | string | no | |
6890
- | mto | boolean | no | |
6891
- | locked | boolean | no | |
6605
+ | e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
6606
+ | e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
6892
6607
 
6893
6608
  ---
6894
6609
 
6895
6610
 
6896
6611
 
6897
6612
 
6898
- #### [ShipmentMeta](#ShipmentMeta)
6613
+ #### [StoreMeta](#StoreMeta)
6899
6614
 
6900
6615
  | Properties | Type | Nullable | Description |
6901
6616
  | ---------- | ---- | -------- | ----------- |
6902
- | dp_sort_key | string | no | |
6903
- | assign_dp_from_sb | boolean | no | |
6904
- | dp_name | string | no | |
6905
- | return_affiliate_order_id | string | no | |
6906
- | box_type | string | no | |
6907
- | b2c_buyer_details | string | no | |
6908
- | shipment_weight | number | no | |
6909
- | return_details | string | no | |
6910
- | forward_affiliate_order_id | string | no | |
6911
- | due_date | string | no | |
6912
- | einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
6913
- | shipment_volumetric_weight | number | no | |
6914
- | order_type | string | no | |
6915
- | fulfilment_priority_text | string | no | |
6916
- | return_affiliate_shipment_id | string | no | |
6917
- | dp_id | string | no | |
6918
- | weight | number | yes | |
6919
- | store_invoice_updated_date | string | no | |
6920
- | dp_options | string | no | |
6921
- | same_store_available | boolean | yes | |
6922
- | auto_trigger_dp_assignment_acf | boolean | yes | |
6923
- | ewaybill_info | string | no | |
6924
- | return_store_node | number | no | |
6925
- | po_number | string | no | |
6926
- | formatted | [Formatted](#Formatted) | no | |
6927
- | bag_weight | string | no | |
6928
- | timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
6929
- | debug_info | [DebugInfo](#DebugInfo) | no | |
6930
- | forward_affiliate_shipment_id | string | no | |
6931
- | b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
6932
- | awb_number | string | no | |
6933
- | return_awb_number | string | no | |
6934
- | marketplace_store_id | string | no | |
6935
- | external | string | no | |
6936
- | packaging_name | string | no | |
6937
- | lock_data | [LockData](#LockData) | no | |
6617
+ | einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
6618
+ | notification_emails | [string] | no | |
6619
+ | display_name | string | yes | |
6620
+ | additional_contact_details | string | no | |
6621
+ | documents | [StoreDocuments](#StoreDocuments) | no | |
6622
+ | stage | string | yes | |
6623
+ | gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
6624
+ | ewaybill_portal_details | string | no | |
6625
+ | timing | [string] | no | |
6626
+ | product_return_config | string | no | |
6627
+ | gst_number | string | no | |
6938
6628
 
6939
6629
  ---
6940
6630
 
6941
6631
 
6942
6632
 
6943
6633
 
6944
- #### [AffiliateDetails](#AffiliateDetails)
6634
+ #### [Store](#Store)
6945
6635
 
6946
6636
  | Properties | Type | Nullable | Description |
6947
6637
  | ---------- | ---- | -------- | ----------- |
6948
- | affiliate_store_id | string | yes | |
6949
- | affiliate_order_id | string | yes | |
6950
- | ad_id | string | no | |
6951
- | affiliate_shipment_id | string | yes | |
6952
- | affiliate_bag_id | string | yes | |
6953
- | pdf_links | [PDFLinks](#PDFLinks) | no | |
6954
- | company_affiliate_tag | string | no | |
6955
- | shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
6956
- | affiliate_id | string | no | |
6957
- | affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
6638
+ | brand_store_tags | [string] | no | |
6639
+ | store_address_json | [StoreAddress](#StoreAddress) | no | |
6640
+ | order_integration_id | string | no | |
6641
+ | pincode | string | yes | |
6642
+ | parent_store_id | number | no | |
6643
+ | code | string | no | |
6644
+ | country | string | yes | |
6645
+ | login_username | string | yes | |
6646
+ | mall_name | string | no | |
6647
+ | phone | number | yes | |
6648
+ | is_archived | boolean | no | |
6649
+ | alohomora_user_id | number | no | |
6650
+ | is_active | boolean | no | |
6651
+ | city | string | yes | |
6652
+ | mall_area | string | no | |
6653
+ | packaging_material_count | number | no | |
6654
+ | vat_no | string | no | |
6655
+ | brand_id | any | no | |
6656
+ | contact_person | string | yes | |
6657
+ | created_at | string | yes | |
6658
+ | state | string | yes | |
6659
+ | is_enabled_for_recon | boolean | no | |
6660
+ | store_email | string | yes | |
6661
+ | location_type | string | yes | |
6662
+ | longitude | number | yes | |
6663
+ | latitude | number | yes | |
6664
+ | meta | [StoreMeta](#StoreMeta) | yes | |
6665
+ | address1 | string | yes | |
6666
+ | address2 | string | no | |
6667
+ | s_id | string | yes | |
6668
+ | name | string | yes | |
6669
+ | company_id | number | yes | |
6670
+ | fulfillment_channel | string | yes | |
6671
+ | store_active_from | string | no | |
6672
+ | updated_at | string | no | |
6958
6673
 
6959
6674
  ---
6960
6675
 
@@ -6965,15 +6680,15 @@ Sms Sent successfully
6965
6680
 
6966
6681
  | Properties | Type | Nullable | Description |
6967
6682
  | ---------- | ---- | -------- | ----------- |
6968
- | essential | string | no | |
6683
+ | primary_color_hex | string | no | |
6969
6684
  | name | string | no | |
6970
- | marketer_address | string | no | |
6971
- | gender | [string] | no | |
6972
6685
  | primary_color | string | no | |
6973
6686
  | brand_name | string | no | |
6974
6687
  | marketer_name | string | no | |
6975
6688
  | primary_material | string | no | |
6976
- | primary_color_hex | string | no | |
6689
+ | gender | [string] | no | |
6690
+ | essential | string | no | |
6691
+ | marketer_address | string | no | |
6977
6692
 
6978
6693
  ---
6979
6694
 
@@ -6984,144 +6699,107 @@ Sms Sent successfully
6984
6699
 
6985
6700
  | Properties | Type | Nullable | Description |
6986
6701
  | ---------- | ---- | -------- | ----------- |
6702
+ | l2_category | [string] | no | |
6703
+ | webstore_product_url | string | no | |
6704
+ | gender | string | no | |
6987
6705
  | code | string | no | |
6988
- | image | [string] | yes | |
6706
+ | attributes | [Attributes](#Attributes) | yes | |
6707
+ | l1_category_id | number | no | |
6989
6708
  | l1_category | [string] | no | |
6990
- | meta | string | no | |
6709
+ | slug_key | string | yes | |
6710
+ | brand_id | number | yes | |
6991
6711
  | item_id | number | yes | |
6992
- | l3_category_name | string | no | |
6993
- | can_return | boolean | no | |
6712
+ | l3_category | number | no | |
6713
+ | branch_url | string | no | |
6994
6714
  | can_cancel | boolean | no | |
6995
- | l2_category | [string] | no | |
6996
- | department_id | number | no | |
6715
+ | size | string | yes | |
6997
6716
  | l2_category_id | number | no | |
6998
- | brand_id | number | yes | |
6999
- | webstore_product_url | string | no | |
6717
+ | meta | string | no | |
6718
+ | can_return | boolean | no | |
6719
+ | last_updated_at | string | no | |
6720
+ | department_id | number | no | |
7000
6721
  | color | string | no | |
7001
6722
  | name | string | yes | |
7002
- | attributes | [Attributes](#Attributes) | yes | |
7003
- | l3_category | number | no | |
7004
- | gender | string | no | |
7005
- | branch_url | string | no | |
7006
- | last_updated_at | string | no | |
7007
- | size | string | yes | |
6723
+ | l3_category_name | string | no | |
7008
6724
  | brand | string | yes | |
7009
- | slug_key | string | yes | |
7010
- | l1_category_id | number | no | |
7011
-
7012
- ---
7013
-
7014
-
7015
-
7016
-
7017
- #### [Brand](#Brand)
7018
-
7019
- | Properties | Type | Nullable | Description |
7020
- | ---------- | ---- | -------- | ----------- |
7021
- | brand_id | number | yes | |
7022
- | company | string | yes | |
7023
- | pickup_location | string | no | |
7024
- | invoice_prefix | string | no | |
7025
- | start_date | string | no | |
7026
- | is_virtual_invoice | boolean | no | |
7027
- | modified_on | number | no | |
7028
- | script_last_ran | string | no | |
7029
- | brand_name | string | yes | |
7030
- | created_on | number | no | |
7031
- | credit_note_allowed | boolean | no | |
7032
- | logo | string | no | |
7033
- | credit_note_expiry_days | number | no | |
6725
+ | image | [string] | yes | |
7034
6726
 
7035
6727
  ---
7036
6728
 
7037
6729
 
7038
6730
 
7039
6731
 
7040
- #### [BagGSTDetails](#BagGSTDetails)
6732
+ #### [B2BPODetails](#B2BPODetails)
7041
6733
 
7042
6734
  | Properties | Type | Nullable | Description |
7043
6735
  | ---------- | ---- | -------- | ----------- |
7044
- | cgst_gst_fee | string | yes | |
7045
- | is_default_hsn_code | boolean | no | |
7046
- | cgst_tax_percentage | number | yes | |
7047
- | igst_gst_fee | string | yes | |
7048
- | sgst_gst_fee | string | yes | |
7049
- | gst_tax_percentage | number | yes | |
7050
- | gst_tag | string | yes | |
7051
- | brand_calculated_amount | number | yes | |
7052
- | gst_fee | number | yes | |
7053
- | value_of_good | number | yes | |
7054
- | igst_tax_percentage | number | yes | |
7055
- | sgst_tax_percentage | number | yes | |
7056
- | gstin_code | string | no | |
7057
- | tax_collected_at_source | number | yes | |
7058
- | hsn_code_id | string | yes | |
7059
- | hsn_code | string | yes | |
6736
+ | po_line_amount | number | no | |
6737
+ | docker_number | string | no | |
6738
+ | partial_can_ret | boolean | no | |
6739
+ | po_tax_amount | number | no | |
6740
+ | total_gst_percentage | number | no | |
6741
+ | item_base_price | number | no | |
7060
6742
 
7061
6743
  ---
7062
6744
 
7063
6745
 
7064
6746
 
7065
6747
 
7066
- #### [ReturnConfig](#ReturnConfig)
6748
+ #### [BagMeta](#BagMeta)
7067
6749
 
7068
6750
  | Properties | Type | Nullable | Description |
7069
6751
  | ---------- | ---- | -------- | ----------- |
7070
- | unit | string | no | |
7071
- | time | number | no | |
7072
- | returnable | boolean | no | |
6752
+ | b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
7073
6753
 
7074
6754
  ---
7075
6755
 
7076
6756
 
7077
6757
 
7078
6758
 
7079
- #### [Weight](#Weight)
6759
+ #### [Dates](#Dates)
7080
6760
 
7081
6761
  | Properties | Type | Nullable | Description |
7082
6762
  | ---------- | ---- | -------- | ----------- |
7083
- | is_default | boolean | no | |
7084
- | unit | string | no | |
7085
- | shipping | number | no | |
6763
+ | delivery_date | any | no | |
6764
+ | order_created | string | no | |
7086
6765
 
7087
6766
  ---
7088
6767
 
7089
6768
 
7090
6769
 
7091
6770
 
7092
- #### [Dimensions](#Dimensions)
6771
+ #### [Brand](#Brand)
7093
6772
 
7094
6773
  | Properties | Type | Nullable | Description |
7095
6774
  | ---------- | ---- | -------- | ----------- |
7096
- | unit | string | no | |
7097
- | height | number | no | |
7098
- | length | number | no | |
7099
- | is_default | boolean | no | |
7100
- | width | number | no | |
6775
+ | credit_note_allowed | boolean | no | |
6776
+ | is_virtual_invoice | boolean | no | |
6777
+ | script_last_ran | string | no | |
6778
+ | logo | string | no | |
6779
+ | created_on | number | no | |
6780
+ | modified_on | number | no | |
6781
+ | pickup_location | string | no | |
6782
+ | start_date | string | no | |
6783
+ | brand_name | string | yes | |
6784
+ | company | string | yes | |
6785
+ | brand_id | number | yes | |
6786
+ | credit_note_expiry_days | number | no | |
6787
+ | invoice_prefix | string | no | |
7101
6788
 
7102
6789
  ---
7103
6790
 
7104
6791
 
7105
6792
 
7106
6793
 
7107
- #### [Article](#Article)
6794
+ #### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
7108
6795
 
7109
6796
  | Properties | Type | Nullable | Description |
7110
6797
  | ---------- | ---- | -------- | ----------- |
7111
- | child_details | string | no | |
7112
- | _id | string | yes | |
7113
- | code | string | no | |
7114
- | uid | string | yes | |
7115
- | identifiers | [Identifier](#Identifier) | yes | |
7116
- | is_set | boolean | no | |
7117
- | return_config | [ReturnConfig](#ReturnConfig) | no | |
7118
- | raw_meta | any | no | |
7119
- | weight | [Weight](#Weight) | no | |
7120
- | a_set | string | no | |
7121
- | seller_identifier | string | yes | |
7122
- | esp_modified | any | no | |
7123
- | dimensions | [Dimensions](#Dimensions) | no | |
7124
- | size | string | yes | |
6798
+ | is_returnable | boolean | yes | |
6799
+ | is_active | boolean | yes | |
6800
+ | is_customer_return_allowed | boolean | yes | |
6801
+ | enable_tracking | boolean | yes | |
6802
+ | can_be_cancelled | boolean | yes | |
7125
6803
 
7126
6804
  ---
7127
6805
 
@@ -7132,45 +6810,45 @@ Sms Sent successfully
7132
6810
 
7133
6811
  | Properties | Type | Nullable | Description |
7134
6812
  | ---------- | ---- | -------- | ----------- |
7135
- | article_details | [ArticleDetails](#ArticleDetails) | no | |
7136
- | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
7137
- | dates | [Dates](#Dates) | no | |
7138
- | order_integration_id | string | no | |
7139
- | operational_status | string | no | |
7140
- | reasons | [string] | no | |
7141
- | bag_update_time | number | no | |
6813
+ | line_number | number | no | |
6814
+ | parent_promo_bags | string | no | |
7142
6815
  | identifier | string | no | |
7143
- | meta | [BagMeta](#BagMeta) | no | |
7144
- | prices | [Prices](#Prices) | yes | |
7145
- | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
7146
- | qc_required | any | no | |
7147
- | journey_type | string | yes | |
7148
- | display_name | string | no | |
7149
- | ordering_store | [Store](#Store) | no | |
7150
6816
  | affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
6817
+ | qc_required | any | no | |
6818
+ | order_integration_id | string | no | |
6819
+ | seller_identifier | string | no | |
6820
+ | applied_promos | [string] | no | |
7151
6821
  | quantity | number | no | |
7152
- | shipment_id | string | no | |
6822
+ | reasons | [string] | no | |
6823
+ | no_of_bags_order | number | no | |
7153
6824
  | b_type | string | no | |
7154
- | restore_coupon | boolean | no | |
7155
- | parent_promo_bags | string | no | |
7156
- | applied_promos | [string] | no | |
6825
+ | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
6826
+ | entity_type | string | no | |
6827
+ | display_name | string | no | |
6828
+ | article | [Article](#Article) | yes | |
6829
+ | article_details | [ArticleDetails](#ArticleDetails) | no | |
6830
+ | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
6831
+ | bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
7157
6832
  | b_id | number | yes | |
7158
- | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6833
+ | restore_promos | string | no | |
6834
+ | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
6835
+ | bag_update_time | number | no | |
7159
6836
  | current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
7160
6837
  | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
7161
- | seller_identifier | string | no | |
7162
- | affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
6838
+ | ordering_store | [Store](#Store) | no | |
7163
6839
  | item | [Item](#Item) | yes | |
7164
- | original_bag_list | [number] | no | |
7165
- | current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
7166
- | no_of_bags_order | number | no | |
6840
+ | meta | [BagMeta](#BagMeta) | no | |
6841
+ | bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
6842
+ | dates | [Dates](#Dates) | no | |
6843
+ | restore_coupon | boolean | no | |
6844
+ | shipment_id | string | no | |
7167
6845
  | brand | [Brand](#Brand) | yes | |
7168
6846
  | tags | [string] | no | |
7169
- | gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
7170
- | restore_promos | string | no | |
7171
- | entity_type | string | no | |
7172
- | line_number | number | no | |
7173
- | article | [Article](#Article) | yes | |
6847
+ | status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
6848
+ | original_bag_list | [number] | no | |
6849
+ | journey_type | string | yes | |
6850
+ | prices | [Prices](#Prices) | yes | |
6851
+ | operational_status | string | no | |
7174
6852
 
7175
6853
  ---
7176
6854
 
@@ -7181,8 +6859,8 @@ Sms Sent successfully
7181
6859
 
7182
6860
  | Properties | Type | Nullable | Description |
7183
6861
  | ---------- | ---- | -------- | ----------- |
7184
- | message | string | yes | |
7185
6862
  | error | string | yes | |
6863
+ | message | string | yes | |
7186
6864
 
7187
6865
  ---
7188
6866
 
@@ -7193,11 +6871,11 @@ Sms Sent successfully
7193
6871
 
7194
6872
  | Properties | Type | Nullable | Description |
7195
6873
  | ---------- | ---- | -------- | ----------- |
7196
- | item_total | number | yes | |
7197
6874
  | page_type | string | yes | |
7198
- | current | number | yes | |
7199
- | has_next | boolean | yes | |
7200
6875
  | size | number | yes | |
6876
+ | has_next | boolean | yes | |
6877
+ | item_total | number | yes | |
6878
+ | current | number | yes | |
7201
6879
 
7202
6880
  ---
7203
6881
 
@@ -7208,8 +6886,8 @@ Sms Sent successfully
7208
6886
 
7209
6887
  | Properties | Type | Nullable | Description |
7210
6888
  | ---------- | ---- | -------- | ----------- |
7211
- | items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
7212
6889
  | page | [Page1](#Page1) | yes | |
6890
+ | items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
7213
6891
 
7214
6892
  ---
7215
6893
 
@@ -7231,8 +6909,8 @@ Sms Sent successfully
7231
6909
 
7232
6910
  | Properties | Type | Nullable | Description |
7233
6911
  | ---------- | ---- | -------- | ----------- |
7234
- | status | number | no | |
7235
6912
  | message | string | no | |
6913
+ | status | number | no | |
7236
6914
  | shipment_id | string | no | |
7237
6915
  | error | string | no | |
7238
6916
 
@@ -7256,9 +6934,9 @@ Sms Sent successfully
7256
6934
 
7257
6935
  | Properties | Type | Nullable | Description |
7258
6936
  | ---------- | ---- | -------- | ----------- |
6937
+ | message | string | yes | |
7259
6938
  | status | number | yes | |
7260
6939
  | error_trace | string | no | |
7261
- | message | string | yes | |
7262
6940
 
7263
6941
  ---
7264
6942
 
@@ -7269,16 +6947,16 @@ Sms Sent successfully
7269
6947
 
7270
6948
  | Properties | Type | Nullable | Description |
7271
6949
  | ---------- | ---- | -------- | ----------- |
7272
- | affiliate_order_id | string | no | |
7273
- | bag_id | number | no | |
6950
+ | store_id | number | yes | |
6951
+ | fynd_order_id | string | no | |
7274
6952
  | affiliate_bag_id | string | no | |
7275
- | set_id | string | no | |
7276
- | affiliate_id | string | no | |
7277
- | reason_ids | [number] | no | |
7278
6953
  | item_id | string | no | |
6954
+ | reason_ids | [number] | no | |
6955
+ | affiliate_id | string | no | |
6956
+ | bag_id | number | no | |
6957
+ | set_id | string | no | |
7279
6958
  | mongo_article_id | string | no | |
7280
- | store_id | number | yes | |
7281
- | fynd_order_id | string | no | |
6959
+ | affiliate_order_id | string | no | |
7282
6960
 
7283
6961
  ---
7284
6962
 
@@ -7289,8 +6967,8 @@ Sms Sent successfully
7289
6967
 
7290
6968
  | Properties | Type | Nullable | Description |
7291
6969
  | ---------- | ---- | -------- | ----------- |
7292
- | success | boolean | no | |
7293
6970
  | message | string | no | |
6971
+ | success | boolean | no | |
7294
6972
 
7295
6973
  ---
7296
6974
 
@@ -7301,12 +6979,12 @@ Sms Sent successfully
7301
6979
 
7302
6980
  | Properties | Type | Nullable | Description |
7303
6981
  | ---------- | ---- | -------- | ----------- |
7304
- | affiliate_order_id | string | no | |
6982
+ | reason_text | string | yes | |
7305
6983
  | affiliate_bag_id | string | no | |
7306
- | affiliate_id | string | no | |
7307
6984
  | affiliate_shipment_id | string | no | |
6985
+ | affiliate_id | string | no | |
7308
6986
  | id | string | no | |
7309
- | reason_text | string | yes | |
6987
+ | affiliate_order_id | string | no | |
7310
6988
 
7311
6989
  ---
7312
6990
 
@@ -7318,8 +6996,8 @@ Sms Sent successfully
7318
6996
  | Properties | Type | Nullable | Description |
7319
6997
  | ---------- | ---- | -------- | ----------- |
7320
6998
  | entities | [[Entities](#Entities)] | yes | |
7321
- | action | string | yes | |
7322
6999
  | entity_type | string | yes | |
7000
+ | action | string | yes | |
7323
7001
  | action_type | string | yes | |
7324
7002
 
7325
7003
  ---
@@ -7327,26 +7005,26 @@ Sms Sent successfully
7327
7005
 
7328
7006
 
7329
7007
 
7330
- #### [OriginalFilter](#OriginalFilter)
7008
+ #### [Bags](#Bags)
7331
7009
 
7332
7010
  | Properties | Type | Nullable | Description |
7333
7011
  | ---------- | ---- | -------- | ----------- |
7334
- | affiliate_shipment_id | string | no | |
7335
- | affiliate_id | string | no | |
7012
+ | affiliate_bag_id | string | no | |
7013
+ | is_locked | boolean | no | |
7014
+ | bag_id | number | no | |
7015
+ | affiliate_order_id | string | no | |
7336
7016
 
7337
7017
  ---
7338
7018
 
7339
7019
 
7340
7020
 
7341
7021
 
7342
- #### [Bags](#Bags)
7022
+ #### [OriginalFilter](#OriginalFilter)
7343
7023
 
7344
7024
  | Properties | Type | Nullable | Description |
7345
7025
  | ---------- | ---- | -------- | ----------- |
7346
- | affiliate_order_id | string | no | |
7347
- | bag_id | number | no | |
7348
- | affiliate_bag_id | string | no | |
7349
- | is_locked | boolean | no | |
7026
+ | affiliate_id | string | no | |
7027
+ | affiliate_shipment_id | string | no | |
7350
7028
 
7351
7029
  ---
7352
7030
 
@@ -7357,15 +7035,15 @@ Sms Sent successfully
7357
7035
 
7358
7036
  | Properties | Type | Nullable | Description |
7359
7037
  | ---------- | ---- | -------- | ----------- |
7360
- | is_bag_locked | boolean | no | |
7361
- | lock_status | boolean | no | |
7362
- | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7363
7038
  | status | string | no | |
7364
- | affiliate_id | string | no | |
7365
7039
  | affiliate_shipment_id | string | no | |
7366
- | is_shipment_locked | boolean | no | |
7367
7040
  | bags | [[Bags](#Bags)] | no | |
7041
+ | affiliate_id | string | no | |
7042
+ | original_filter | [OriginalFilter](#OriginalFilter) | no | |
7368
7043
  | shipment_id | string | no | |
7044
+ | is_bag_locked | boolean | no | |
7045
+ | lock_status | boolean | no | |
7046
+ | is_shipment_locked | boolean | no | |
7369
7047
 
7370
7048
  ---
7371
7049
 
@@ -7376,9 +7054,9 @@ Sms Sent successfully
7376
7054
 
7377
7055
  | Properties | Type | Nullable | Description |
7378
7056
  | ---------- | ---- | -------- | ----------- |
7057
+ | message | string | no | |
7379
7058
  | check_response | [[CheckResponse](#CheckResponse)] | no | |
7380
7059
  | success | boolean | no | |
7381
- | message | string | no | |
7382
7060
 
7383
7061
  ---
7384
7062
 
@@ -7389,16 +7067,16 @@ Sms Sent successfully
7389
7067
 
7390
7068
  | Properties | Type | Nullable | Description |
7391
7069
  | ---------- | ---- | -------- | ----------- |
7392
- | platform_id | string | no | |
7393
- | from_datetime | string | no | |
7394
- | platform_name | string | no | |
7395
- | created_at | string | no | |
7396
7070
  | logo_url | string | no | |
7397
- | to_datetime | string | no | |
7071
+ | platform_id | string | no | |
7398
7072
  | company_id | number | no | |
7399
7073
  | title | string | no | |
7400
- | id | number | yes | |
7074
+ | to_datetime | string | no | |
7401
7075
  | description | string | no | |
7076
+ | platform_name | string | no | |
7077
+ | id | number | yes | |
7078
+ | from_datetime | string | no | |
7079
+ | created_at | string | no | |
7402
7080
 
7403
7081
  ---
7404
7082
 
@@ -7420,8 +7098,8 @@ Sms Sent successfully
7420
7098
 
7421
7099
  | Properties | Type | Nullable | Description |
7422
7100
  | ---------- | ---- | -------- | ----------- |
7423
- | success | boolean | yes | |
7424
7101
  | message | string | yes | |
7102
+ | success | boolean | yes | |
7425
7103
 
7426
7104
  ---
7427
7105
 
@@ -7440,50 +7118,48 @@ Sms Sent successfully
7440
7118
 
7441
7119
 
7442
7120
 
7443
- #### [Products](#Products)
7121
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7444
7122
 
7445
7123
  | Properties | Type | Nullable | Description |
7446
7124
  | ---------- | ---- | -------- | ----------- |
7447
- | identifier | string | no | |
7448
- | quantity | number | no | |
7449
- | line_number | number | no | |
7125
+ | filters | [string] | no | |
7126
+ | data | string | no | |
7450
7127
 
7451
7128
  ---
7452
7129
 
7453
7130
 
7454
7131
 
7455
7132
 
7456
- #### [ProductsReasonsData](#ProductsReasonsData)
7133
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7457
7134
 
7458
7135
  | Properties | Type | Nullable | Description |
7459
7136
  | ---------- | ---- | -------- | ----------- |
7460
- | reason_id | number | no | |
7461
- | reason_text | string | no | |
7137
+ | line_number | number | no | |
7138
+ | identifier | string | no | |
7462
7139
 
7463
7140
  ---
7464
7141
 
7465
7142
 
7466
7143
 
7467
7144
 
7468
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
7145
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
7469
7146
 
7470
7147
  | Properties | Type | Nullable | Description |
7471
7148
  | ---------- | ---- | -------- | ----------- |
7472
- | identifier | string | no | |
7473
- | quantity | number | no | |
7474
- | line_number | number | no | |
7149
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7150
+ | data | string | no | |
7475
7151
 
7476
7152
  ---
7477
7153
 
7478
7154
 
7479
7155
 
7480
7156
 
7481
- #### [ProductsReasons](#ProductsReasons)
7157
+ #### [DataUpdates](#DataUpdates)
7482
7158
 
7483
7159
  | Properties | Type | Nullable | Description |
7484
7160
  | ---------- | ---- | -------- | ----------- |
7485
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7486
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7161
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7162
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7487
7163
 
7488
7164
  ---
7489
7165
 
@@ -7506,68 +7182,70 @@ Sms Sent successfully
7506
7182
 
7507
7183
  | Properties | Type | Nullable | Description |
7508
7184
  | ---------- | ---- | -------- | ----------- |
7509
- | data | [EntityReasonData](#EntityReasonData) | no | |
7510
7185
  | filters | [string] | no | |
7186
+ | data | [EntityReasonData](#EntityReasonData) | no | |
7511
7187
 
7512
7188
  ---
7513
7189
 
7514
7190
 
7515
7191
 
7516
7192
 
7517
- #### [ReasonsData](#ReasonsData)
7193
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
7518
7194
 
7519
7195
  | Properties | Type | Nullable | Description |
7520
7196
  | ---------- | ---- | -------- | ----------- |
7521
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
7522
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7197
+ | line_number | number | no | |
7198
+ | identifier | string | no | |
7199
+ | quantity | number | no | |
7523
7200
 
7524
7201
  ---
7525
7202
 
7526
7203
 
7527
7204
 
7528
7205
 
7529
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
7206
+ #### [ProductsReasonsData](#ProductsReasonsData)
7530
7207
 
7531
7208
  | Properties | Type | Nullable | Description |
7532
7209
  | ---------- | ---- | -------- | ----------- |
7533
- | identifier | string | no | |
7534
- | line_number | number | no | |
7210
+ | reason_id | number | no | |
7211
+ | reason_text | string | no | |
7535
7212
 
7536
7213
  ---
7537
7214
 
7538
7215
 
7539
7216
 
7540
7217
 
7541
- #### [ProductsDataUpdates](#ProductsDataUpdates)
7218
+ #### [ProductsReasons](#ProductsReasons)
7542
7219
 
7543
7220
  | Properties | Type | Nullable | Description |
7544
7221
  | ---------- | ---- | -------- | ----------- |
7545
- | data | string | no | |
7546
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
7222
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
7223
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
7547
7224
 
7548
7225
  ---
7549
7226
 
7550
7227
 
7551
7228
 
7552
7229
 
7553
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
7230
+ #### [ReasonsData](#ReasonsData)
7554
7231
 
7555
7232
  | Properties | Type | Nullable | Description |
7556
7233
  | ---------- | ---- | -------- | ----------- |
7557
- | data | string | no | |
7558
- | filters | [string] | no | |
7234
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
7235
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
7559
7236
 
7560
7237
  ---
7561
7238
 
7562
7239
 
7563
7240
 
7564
7241
 
7565
- #### [DataUpdates](#DataUpdates)
7242
+ #### [Products](#Products)
7566
7243
 
7567
7244
  | Properties | Type | Nullable | Description |
7568
7245
  | ---------- | ---- | -------- | ----------- |
7569
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
7570
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
7246
+ | line_number | number | no | |
7247
+ | identifier | string | no | |
7248
+ | quantity | number | no | |
7571
7249
 
7572
7250
  ---
7573
7251
 
@@ -7578,10 +7256,10 @@ Sms Sent successfully
7578
7256
 
7579
7257
  | Properties | Type | Nullable | Description |
7580
7258
  | ---------- | ---- | -------- | ----------- |
7581
- | products | [[Products](#Products)] | no | |
7582
- | reasons | [ReasonsData](#ReasonsData) | no | |
7583
- | identifier | string | yes | |
7584
7259
  | data_updates | [DataUpdates](#DataUpdates) | no | |
7260
+ | identifier | string | yes | |
7261
+ | reasons | [ReasonsData](#ReasonsData) | no | |
7262
+ | products | [[Products](#Products)] | no | |
7585
7263
 
7586
7264
  ---
7587
7265
 
@@ -7606,10 +7284,10 @@ Sms Sent successfully
7606
7284
  | Properties | Type | Nullable | Description |
7607
7285
  | ---------- | ---- | -------- | ----------- |
7608
7286
  | task | boolean | no | |
7287
+ | force_transition | boolean | no | |
7609
7288
  | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
7610
7289
  | unlock_before_transition | boolean | no | |
7611
7290
  | lock_after_transition | boolean | no | |
7612
- | force_transition | boolean | no | |
7613
7291
 
7614
7292
  ---
7615
7293
 
@@ -7620,14 +7298,14 @@ Sms Sent successfully
7620
7298
 
7621
7299
  | Properties | Type | Nullable | Description |
7622
7300
  | ---------- | ---- | -------- | ----------- |
7623
- | identifier | string | no | |
7301
+ | final_state | string | no | |
7624
7302
  | status | number | no | |
7303
+ | meta | string | no | |
7304
+ | identifier | string | no | |
7625
7305
  | code | string | no | |
7626
7306
  | message | string | no | |
7627
7307
  | stack_trace | string | no | |
7628
- | final_state | string | no | |
7629
7308
  | exception | string | no | |
7630
- | meta | string | no | |
7631
7309
 
7632
7310
  ---
7633
7311
 
@@ -7656,66 +7334,45 @@ Sms Sent successfully
7656
7334
 
7657
7335
 
7658
7336
 
7659
- #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7660
-
7661
- | Properties | Type | Nullable | Description |
7662
- | ---------- | ---- | -------- | ----------- |
7663
- | marketplace_store_id | string | yes | |
7664
- | store_id | number | yes | |
7665
-
7666
- ---
7667
-
7668
-
7669
-
7670
-
7671
- #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7337
+ #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7672
7338
 
7673
7339
  | Properties | Type | Nullable | Description |
7674
7340
  | ---------- | ---- | -------- | ----------- |
7675
- | value | string | yes | |
7676
- | name | string | yes | |
7341
+ | post_order_reassignment | boolean | no | |
7677
7342
 
7678
7343
  ---
7679
7344
 
7680
7345
 
7681
7346
 
7682
7347
 
7683
- #### [AffiliateAppConfig](#AffiliateAppConfig)
7348
+ #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7684
7349
 
7685
7350
  | Properties | Type | Nullable | Description |
7686
7351
  | ---------- | ---- | -------- | ----------- |
7687
- | name | string | yes | |
7688
- | owner | string | yes | |
7689
- | secret | string | yes | |
7690
- | created_at | string | yes | |
7691
- | updated_at | string | yes | |
7692
- | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7693
- | token | string | yes | |
7694
- | id | string | yes | |
7695
- | description | string | no | |
7352
+ | dp_assignment | boolean | no | |
7696
7353
 
7697
7354
  ---
7698
7355
 
7699
7356
 
7700
7357
 
7701
7358
 
7702
- #### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
7359
+ #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7703
7360
 
7704
7361
  | Properties | Type | Nullable | Description |
7705
7362
  | ---------- | ---- | -------- | ----------- |
7706
- | dp_assignment | boolean | no | |
7363
+ | mode_of_payment | string | no | |
7364
+ | source | string | no | |
7707
7365
 
7708
7366
  ---
7709
7367
 
7710
7368
 
7711
7369
 
7712
7370
 
7713
- #### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
7371
+ #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7714
7372
 
7715
7373
  | Properties | Type | Nullable | Description |
7716
7374
  | ---------- | ---- | -------- | ----------- |
7717
- | mode_of_payment | string | no | |
7718
- | source | string | no | |
7375
+ | store | string | no | |
7719
7376
 
7720
7377
  ---
7721
7378
 
@@ -7733,37 +7390,46 @@ Sms Sent successfully
7733
7390
 
7734
7391
 
7735
7392
 
7736
- #### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
7393
+ #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7737
7394
 
7738
7395
  | Properties | Type | Nullable | Description |
7739
7396
  | ---------- | ---- | -------- | ----------- |
7740
- | post_order_reassignment | boolean | no | |
7397
+ | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7398
+ | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7399
+ | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7400
+ | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7401
+ | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7741
7402
 
7742
7403
  ---
7743
7404
 
7744
7405
 
7745
7406
 
7746
7407
 
7747
- #### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
7408
+ #### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
7748
7409
 
7749
7410
  | Properties | Type | Nullable | Description |
7750
7411
  | ---------- | ---- | -------- | ----------- |
7751
- | store | string | no | |
7412
+ | name | string | yes | |
7413
+ | value | string | yes | |
7752
7414
 
7753
7415
  ---
7754
7416
 
7755
7417
 
7756
7418
 
7757
7419
 
7758
- #### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
7420
+ #### [AffiliateAppConfig](#AffiliateAppConfig)
7759
7421
 
7760
7422
  | Properties | Type | Nullable | Description |
7761
7423
  | ---------- | ---- | -------- | ----------- |
7762
- | logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
7763
- | payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
7764
- | order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
7765
- | article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
7766
- | inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
7424
+ | secret | string | yes | |
7425
+ | meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
7426
+ | name | string | yes | |
7427
+ | updated_at | string | yes | |
7428
+ | description | string | no | |
7429
+ | owner | string | yes | |
7430
+ | id | string | yes | |
7431
+ | token | string | yes | |
7432
+ | created_at | string | yes | |
7767
7433
 
7768
7434
  ---
7769
7435
 
@@ -7774,8 +7440,8 @@ Sms Sent successfully
7774
7440
 
7775
7441
  | Properties | Type | Nullable | Description |
7776
7442
  | ---------- | ---- | -------- | ----------- |
7777
- | app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
7778
7443
  | inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
7444
+ | app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
7779
7445
 
7780
7446
  ---
7781
7447
 
@@ -7787,8 +7453,20 @@ Sms Sent successfully
7787
7453
  | Properties | Type | Nullable | Description |
7788
7454
  | ---------- | ---- | -------- | ----------- |
7789
7455
  | token | string | yes | |
7790
- | id | string | yes | |
7791
7456
  | config | [AffiliateConfig](#AffiliateConfig) | no | |
7457
+ | id | string | yes | |
7458
+
7459
+ ---
7460
+
7461
+
7462
+
7463
+
7464
+ #### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
7465
+
7466
+ | Properties | Type | Nullable | Description |
7467
+ | ---------- | ---- | -------- | ----------- |
7468
+ | store_id | number | yes | |
7469
+ | marketplace_store_id | string | yes | |
7792
7470
 
7793
7471
  ---
7794
7472
 
@@ -7799,12 +7477,12 @@ Sms Sent successfully
7799
7477
 
7800
7478
  | Properties | Type | Nullable | Description |
7801
7479
  | ---------- | ---- | -------- | ----------- |
7802
- | article_lookup | string | no | |
7803
- | store_lookup | string | no | |
7480
+ | affiliate | [Affiliate](#Affiliate) | yes | |
7481
+ | create_user | boolean | no | |
7804
7482
  | bag_end_state | string | no | |
7483
+ | store_lookup | string | no | |
7484
+ | article_lookup | string | no | |
7805
7485
  | affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
7806
- | create_user | boolean | no | |
7807
- | affiliate | [Affiliate](#Affiliate) | yes | |
7808
7486
 
7809
7487
  ---
7810
7488
 
@@ -7815,163 +7493,163 @@ Sms Sent successfully
7815
7493
 
7816
7494
  | Properties | Type | Nullable | Description |
7817
7495
  | ---------- | ---- | -------- | ----------- |
7818
- | mobile | number | yes | |
7496
+ | phone | number | yes | |
7497
+ | city | string | yes | |
7819
7498
  | state | string | yes | |
7499
+ | last_name | string | yes | |
7500
+ | mobile | number | yes | |
7501
+ | email | string | yes | |
7502
+ | address1 | string | no | |
7820
7503
  | address2 | string | no | |
7821
7504
  | country | string | yes | |
7822
- | email | string | yes | |
7823
7505
  | pincode | string | yes | |
7824
- | phone | number | yes | |
7825
- | city | string | yes | |
7826
- | last_name | string | yes | |
7827
7506
  | first_name | string | yes | |
7828
- | address1 | string | no | |
7829
7507
 
7830
7508
  ---
7831
7509
 
7832
7510
 
7833
7511
 
7834
7512
 
7835
- #### [ArticleDetails1](#ArticleDetails1)
7513
+ #### [UserData](#UserData)
7836
7514
 
7837
7515
  | Properties | Type | Nullable | Description |
7838
7516
  | ---------- | ---- | -------- | ----------- |
7839
- | category | string | yes | |
7840
- | weight | string | yes | |
7841
- | quantity | number | yes | |
7842
- | attributes | string | yes | |
7843
- | _id | string | yes | |
7844
- | brand_id | number | yes | |
7845
- | dimension | string | yes | |
7517
+ | billing_user | [OrderUser](#OrderUser) | no | |
7518
+ | shipping_user | [OrderUser](#OrderUser) | no | |
7846
7519
 
7847
7520
  ---
7848
7521
 
7849
7522
 
7850
7523
 
7851
7524
 
7852
- #### [ShipmentDetails](#ShipmentDetails)
7525
+ #### [OrderPriority](#OrderPriority)
7853
7526
 
7854
7527
  | Properties | Type | Nullable | Description |
7855
7528
  | ---------- | ---- | -------- | ----------- |
7856
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7857
- | box_type | string | no | |
7858
- | affiliate_shipment_id | string | yes | |
7859
- | shipments | number | yes | |
7860
- | dp_id | number | no | |
7861
- | meta | string | no | |
7862
- | fulfillment_id | number | yes | |
7529
+ | fulfilment_priority_text | string | no | |
7530
+ | fulfilment_priority | number | no | |
7531
+ | affiliate_priority_code | string | no | |
7863
7532
 
7864
7533
  ---
7865
7534
 
7866
7535
 
7867
7536
 
7868
7537
 
7869
- #### [LocationDetails](#LocationDetails)
7538
+ #### [MarketPlacePdf](#MarketPlacePdf)
7870
7539
 
7871
7540
  | Properties | Type | Nullable | Description |
7872
7541
  | ---------- | ---- | -------- | ----------- |
7873
- | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7874
- | fulfillment_id | number | yes | |
7875
- | fulfillment_type | string | yes | |
7542
+ | invoice | string | no | |
7543
+ | label | string | no | |
7876
7544
 
7877
7545
  ---
7878
7546
 
7879
7547
 
7880
7548
 
7881
7549
 
7882
- #### [ShipmentConfig](#ShipmentConfig)
7550
+ #### [AffiliateBag](#AffiliateBag)
7883
7551
 
7884
7552
  | Properties | Type | Nullable | Description |
7885
7553
  | ---------- | ---- | -------- | ----------- |
7886
- | journey | string | yes | |
7554
+ | avl_qty | number | yes | |
7555
+ | store_id | number | yes | |
7556
+ | fynd_store_id | string | yes | |
7557
+ | unit_price | number | yes | |
7887
7558
  | identifier | string | yes | |
7888
- | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7889
- | to_pincode | string | yes | |
7890
- | action | string | yes | |
7891
- | payment_mode | string | yes | |
7892
- | location_details | [LocationDetails](#LocationDetails) | no | |
7893
- | source | string | yes | |
7559
+ | affiliate_store_id | string | yes | |
7560
+ | amount_paid | number | yes | |
7561
+ | affiliate_meta | string | yes | |
7562
+ | price_effective | number | yes | |
7563
+ | item_id | number | yes | |
7564
+ | seller_identifier | string | yes | |
7565
+ | modified_on | string | yes | |
7566
+ | delivery_charge | number | yes | |
7567
+ | discount | number | yes | |
7568
+ | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7569
+ | price_marked | number | yes | |
7570
+ | company_id | number | yes | |
7571
+ | transfer_price | number | yes | |
7572
+ | quantity | number | yes | |
7573
+ | hsn_code_id | string | yes | |
7574
+ | item_size | string | yes | |
7575
+ | sku | string | yes | |
7576
+ | _id | string | yes | |
7894
7577
 
7895
7578
  ---
7896
7579
 
7897
7580
 
7898
7581
 
7899
7582
 
7900
- #### [ShipmentData](#ShipmentData)
7583
+ #### [ArticleDetails1](#ArticleDetails1)
7901
7584
 
7902
7585
  | Properties | Type | Nullable | Description |
7903
7586
  | ---------- | ---- | -------- | ----------- |
7904
- | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7587
+ | brand_id | number | yes | |
7588
+ | attributes | string | yes | |
7589
+ | category | string | yes | |
7590
+ | quantity | number | yes | |
7591
+ | dimension | string | yes | |
7592
+ | weight | string | yes | |
7593
+ | _id | string | yes | |
7905
7594
 
7906
7595
  ---
7907
7596
 
7908
7597
 
7909
7598
 
7910
7599
 
7911
- #### [OrderPriority](#OrderPriority)
7600
+ #### [ShipmentDetails](#ShipmentDetails)
7912
7601
 
7913
7602
  | Properties | Type | Nullable | Description |
7914
7603
  | ---------- | ---- | -------- | ----------- |
7915
- | fulfilment_priority_text | string | no | |
7916
- | fulfilment_priority | number | no | |
7917
- | affiliate_priority_code | string | no | |
7604
+ | dp_id | number | no | |
7605
+ | meta | string | no | |
7606
+ | affiliate_shipment_id | string | yes | |
7607
+ | fulfillment_id | number | yes | |
7608
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7609
+ | shipments | number | yes | |
7610
+ | box_type | string | no | |
7918
7611
 
7919
7612
  ---
7920
7613
 
7921
7614
 
7922
7615
 
7923
7616
 
7924
- #### [MarketPlacePdf](#MarketPlacePdf)
7617
+ #### [LocationDetails](#LocationDetails)
7925
7618
 
7926
7619
  | Properties | Type | Nullable | Description |
7927
7620
  | ---------- | ---- | -------- | ----------- |
7928
- | invoice | string | no | |
7929
- | label | string | no | |
7621
+ | articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
7622
+ | fulfillment_type | string | yes | |
7623
+ | fulfillment_id | number | yes | |
7930
7624
 
7931
7625
  ---
7932
7626
 
7933
7627
 
7934
7628
 
7935
7629
 
7936
- #### [AffiliateBag](#AffiliateBag)
7630
+ #### [ShipmentConfig](#ShipmentConfig)
7937
7631
 
7938
7632
  | Properties | Type | Nullable | Description |
7939
7633
  | ---------- | ---- | -------- | ----------- |
7940
- | quantity | number | yes | |
7941
- | transfer_price | number | yes | |
7942
- | sku | string | yes | |
7943
- | unit_price | number | yes | |
7944
- | company_id | number | yes | |
7945
- | delivery_charge | number | yes | |
7946
- | price_effective | number | yes | |
7947
- | amount_paid | number | yes | |
7948
- | price_marked | number | yes | |
7949
- | item_size | string | yes | |
7950
- | item_id | number | yes | |
7951
- | store_id | number | yes | |
7952
- | discount | number | yes | |
7953
- | affiliate_meta | string | yes | |
7954
- | modified_on | string | yes | |
7634
+ | action | string | yes | |
7635
+ | to_pincode | string | yes | |
7636
+ | shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
7637
+ | payment_mode | string | yes | |
7955
7638
  | identifier | string | yes | |
7956
- | affiliate_store_id | string | yes | |
7957
- | pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
7958
- | hsn_code_id | string | yes | |
7959
- | fynd_store_id | string | yes | |
7960
- | avl_qty | number | yes | |
7961
- | seller_identifier | string | yes | |
7962
- | _id | string | yes | |
7639
+ | journey | string | yes | |
7640
+ | location_details | [LocationDetails](#LocationDetails) | no | |
7641
+ | source | string | yes | |
7963
7642
 
7964
7643
  ---
7965
7644
 
7966
7645
 
7967
7646
 
7968
7647
 
7969
- #### [UserData](#UserData)
7648
+ #### [ShipmentData](#ShipmentData)
7970
7649
 
7971
7650
  | Properties | Type | Nullable | Description |
7972
7651
  | ---------- | ---- | -------- | ----------- |
7973
- | shipping_user | [OrderUser](#OrderUser) | no | |
7974
- | billing_user | [OrderUser](#OrderUser) | no | |
7652
+ | shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
7975
7653
 
7976
7654
  ---
7977
7655
 
@@ -7982,21 +7660,21 @@ Sms Sent successfully
7982
7660
 
7983
7661
  | Properties | Type | Nullable | Description |
7984
7662
  | ---------- | ---- | -------- | ----------- |
7985
- | affiliate_order_id | string | no | |
7986
- | order_value | number | yes | |
7987
7663
  | cod_charges | number | yes | |
7988
- | billing_address | [OrderUser](#OrderUser) | yes | |
7989
- | shipment | [ShipmentData](#ShipmentData) | no | |
7990
- | order_priority | [OrderPriority](#OrderPriority) | no | |
7991
- | shipping_address | [OrderUser](#OrderUser) | yes | |
7664
+ | coupon | string | no | |
7665
+ | discount | number | yes | |
7666
+ | user | [UserData](#UserData) | yes | |
7992
7667
  | delivery_charges | number | yes | |
7668
+ | order_priority | [OrderPriority](#OrderPriority) | no | |
7669
+ | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7670
+ | shipment | [ShipmentData](#ShipmentData) | no | |
7671
+ | payment_mode | string | yes | |
7672
+ | billing_address | [OrderUser](#OrderUser) | yes | |
7993
7673
  | payment | string | no | |
7994
- | discount | number | yes | |
7674
+ | shipping_address | [OrderUser](#OrderUser) | yes | |
7995
7675
  | items | string | yes | |
7996
- | payment_mode | string | yes | |
7997
- | bags | [[AffiliateBag](#AffiliateBag)] | yes | |
7998
- | coupon | string | no | |
7999
- | user | [UserData](#UserData) | yes | |
7676
+ | order_value | number | yes | |
7677
+ | affiliate_order_id | string | no | |
8000
7678
 
8001
7679
  ---
8002
7680
 
@@ -8007,8 +7685,8 @@ Sms Sent successfully
8007
7685
 
8008
7686
  | Properties | Type | Nullable | Description |
8009
7687
  | ---------- | ---- | -------- | ----------- |
8010
- | order_config | [OrderConfig](#OrderConfig) | yes | |
8011
7688
  | affiliate_id | string | yes | |
7689
+ | order_config | [OrderConfig](#OrderConfig) | yes | |
8012
7690
  | order_info | [OrderInfo](#OrderInfo) | yes | |
8013
7691
 
8014
7692
  ---
@@ -8042,8 +7720,8 @@ Sms Sent successfully
8042
7720
 
8043
7721
  | Properties | Type | Nullable | Description |
8044
7722
  | ---------- | ---- | -------- | ----------- |
8045
- | success | boolean | no | |
8046
7723
  | message | string | no | |
7724
+ | success | boolean | no | |
8047
7725
 
8048
7726
  ---
8049
7727
 
@@ -8054,10 +7732,10 @@ Sms Sent successfully
8054
7732
 
8055
7733
  | Properties | Type | Nullable | Description |
8056
7734
  | ---------- | ---- | -------- | ----------- |
8057
- | description | string | yes | |
8058
7735
  | display_text | string | yes | |
8059
7736
  | id | number | yes | |
8060
7737
  | slug | string | yes | |
7738
+ | description | string | yes | |
8061
7739
 
8062
7740
  ---
8063
7741
 
@@ -8079,16 +7757,16 @@ Sms Sent successfully
8079
7757
 
8080
7758
  | Properties | Type | Nullable | Description |
8081
7759
  | ---------- | ---- | -------- | ----------- |
8082
- | createdat | string | yes | |
8083
- | l1_detail | string | no | |
8084
- | bag_id | number | no | |
7760
+ | ticket_id | string | no | |
8085
7761
  | ticket_url | string | no | |
8086
- | message | string | yes | |
7762
+ | user | string | yes | |
8087
7763
  | type | string | yes | |
7764
+ | createdat | string | yes | |
7765
+ | bag_id | number | no | |
8088
7766
  | l2_detail | string | no | |
8089
- | ticket_id | string | no | |
7767
+ | l1_detail | string | no | |
7768
+ | message | string | yes | |
8090
7769
  | l3_detail | string | no | |
8091
- | user | string | yes | |
8092
7770
 
8093
7771
  ---
8094
7772
 
@@ -8110,8 +7788,8 @@ Sms Sent successfully
8110
7788
 
8111
7789
  | Properties | Type | Nullable | Description |
8112
7790
  | ---------- | ---- | -------- | ----------- |
8113
- | success | boolean | no | |
8114
7791
  | message | string | no | |
7792
+ | success | boolean | no | |
8115
7793
 
8116
7794
  ---
8117
7795
 
@@ -8122,15 +7800,15 @@ Sms Sent successfully
8122
7800
 
8123
7801
  | Properties | Type | Nullable | Description |
8124
7802
  | ---------- | ---- | -------- | ----------- |
8125
- | amount_paid | number | yes | |
8126
- | message | string | yes | |
8127
- | country_code | string | yes | |
8128
- | phone_number | number | yes | |
8129
- | brand_name | string | yes | |
8130
7803
  | order_id | string | yes | |
8131
7804
  | customer_name | string | yes | |
7805
+ | phone_number | number | yes | |
8132
7806
  | payment_mode | string | yes | |
8133
7807
  | shipment_id | number | yes | |
7808
+ | brand_name | string | yes | |
7809
+ | message | string | yes | |
7810
+ | amount_paid | number | yes | |
7811
+ | country_code | string | yes | |
8134
7812
 
8135
7813
  ---
8136
7814
 
@@ -8150,40 +7828,40 @@ Sms Sent successfully
8150
7828
 
8151
7829
 
8152
7830
 
8153
- #### [Meta](#Meta)
7831
+ #### [OrderDetails](#OrderDetails)
8154
7832
 
8155
7833
  | Properties | Type | Nullable | Description |
8156
7834
  | ---------- | ---- | -------- | ----------- |
8157
- | kafka_emission_status | number | no | |
8158
- | state_manager_used | string | no | |
7835
+ | created_at | string | no | |
7836
+ | fynd_order_id | string | no | |
8159
7837
 
8160
7838
  ---
8161
7839
 
8162
7840
 
8163
7841
 
8164
7842
 
8165
- #### [ShipmentDetail](#ShipmentDetail)
7843
+ #### [Meta](#Meta)
8166
7844
 
8167
7845
  | Properties | Type | Nullable | Description |
8168
7846
  | ---------- | ---- | -------- | ----------- |
8169
- | status | string | no | |
8170
- | bag_list | [number] | no | |
8171
- | remarks | string | no | |
8172
- | meta | [Meta](#Meta) | yes | |
8173
- | id | number | yes | |
8174
- | shipment_id | string | no | |
7847
+ | state_manager_used | string | no | |
7848
+ | kafka_emission_status | number | no | |
8175
7849
 
8176
7850
  ---
8177
7851
 
8178
7852
 
8179
7853
 
8180
7854
 
8181
- #### [OrderDetails](#OrderDetails)
7855
+ #### [ShipmentDetail](#ShipmentDetail)
8182
7856
 
8183
7857
  | Properties | Type | Nullable | Description |
8184
7858
  | ---------- | ---- | -------- | ----------- |
8185
- | fynd_order_id | string | no | |
8186
- | created_at | string | no | |
7859
+ | bag_list | [number] | no | |
7860
+ | status | string | no | |
7861
+ | meta | [Meta](#Meta) | yes | |
7862
+ | remarks | string | no | |
7863
+ | shipment_id | string | no | |
7864
+ | id | number | yes | |
8187
7865
 
8188
7866
  ---
8189
7867
 
@@ -8194,9 +7872,9 @@ Sms Sent successfully
8194
7872
 
8195
7873
  | Properties | Type | Nullable | Description |
8196
7874
  | ---------- | ---- | -------- | ----------- |
8197
- | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
8198
- | errors | [string] | no | |
8199
7875
  | order_details | [OrderDetails](#OrderDetails) | yes | |
7876
+ | errors | [string] | no | |
7877
+ | shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
8200
7878
 
8201
7879
  ---
8202
7880
 
@@ -8219,10 +7897,10 @@ Sms Sent successfully
8219
7897
 
8220
7898
  | Properties | Type | Nullable | Description |
8221
7899
  | ---------- | ---- | -------- | ----------- |
8222
- | order_type | string | yes | |
8223
7900
  | qc_required | string | yes | |
8224
7901
  | dp_id | number | yes | |
8225
7902
  | shipment_ids | [string] | no | |
7903
+ | order_type | string | yes | |
8226
7904
 
8227
7905
  ---
8228
7906
 
@@ -8233,193 +7911,193 @@ Sms Sent successfully
8233
7911
 
8234
7912
  | Properties | Type | Nullable | Description |
8235
7913
  | ---------- | ---- | -------- | ----------- |
8236
- | success | string | yes | |
8237
7914
  | errors | [string] | no | |
7915
+ | success | string | yes | |
8238
7916
 
8239
7917
  ---
8240
7918
 
8241
7919
 
8242
7920
 
8243
7921
 
8244
- #### [Tax](#Tax)
7922
+ #### [TaxInfo](#TaxInfo)
8245
7923
 
8246
7924
  | Properties | Type | Nullable | Description |
8247
7925
  | ---------- | ---- | -------- | ----------- |
8248
- | rate | number | yes | |
8249
- | amount | string | yes | |
8250
- | breakup | [string] | no | |
8251
- | name | string | yes | |
7926
+ | b2b_gstin_number | string | no | |
7927
+ | gstin | string | no | |
8252
7928
 
8253
7929
  ---
8254
7930
 
8255
7931
 
8256
7932
 
8257
7933
 
8258
- #### [Charge](#Charge)
7934
+ #### [ShippingInfo](#ShippingInfo)
8259
7935
 
8260
7936
  | Properties | Type | Nullable | Description |
8261
7937
  | ---------- | ---- | -------- | ----------- |
8262
- | name | string | yes | |
8263
- | code | string | no | |
8264
- | type | string | yes | |
8265
- | tax | [Tax](#Tax) | no | |
8266
- | amount | string | yes | |
7938
+ | address_type | string | no | |
7939
+ | alternate_email | string | no | |
7940
+ | customer_code | string | no | |
7941
+ | first_name | string | yes | |
7942
+ | country_code | string | no | |
7943
+ | title | string | no | |
7944
+ | house_no | string | no | |
7945
+ | state | string | yes | |
7946
+ | geo_location | string | no | |
7947
+ | state_code | string | no | |
7948
+ | last_name | string | no | |
7949
+ | gender | string | no | |
7950
+ | pincode | string | yes | |
7951
+ | address1 | string | yes | |
7952
+ | alternate_mobile_number | string | no | |
7953
+ | external_customer_code | string | no | |
7954
+ | primary_email | string | yes | |
7955
+ | slot | [string] | no | |
7956
+ | primary_mobile_number | string | yes | |
7957
+ | middle_name | string | no | |
7958
+ | city | string | yes | |
7959
+ | floor_no | string | no | |
7960
+ | shipping_type | string | no | |
7961
+ | address2 | string | no | |
7962
+ | country | string | yes | |
7963
+ | landmark | string | no | |
8267
7964
 
8268
7965
  ---
8269
7966
 
8270
7967
 
8271
7968
 
8272
7969
 
8273
- #### [ShippingInfo](#ShippingInfo)
7970
+ #### [Tax](#Tax)
8274
7971
 
8275
7972
  | Properties | Type | Nullable | Description |
8276
7973
  | ---------- | ---- | -------- | ----------- |
8277
- | house_no | string | no | |
8278
- | country_code | string | no | |
8279
- | pincode | string | yes | |
8280
- | slot | [string] | no | |
8281
- | state_code | string | no | |
8282
- | customer_code | string | no | |
8283
- | alternate_mobile_number | string | no | |
8284
- | address1 | string | yes | |
8285
- | external_customer_code | string | no | |
8286
- | floor_no | string | no | |
8287
- | middle_name | string | no | |
8288
- | state | string | yes | |
8289
- | gender | string | no | |
8290
- | country | string | yes | |
8291
- | address_type | string | no | |
8292
- | title | string | no | |
8293
- | primary_email | string | yes | |
8294
- | landmark | string | no | |
8295
- | address2 | string | no | |
8296
- | shipping_type | string | no | |
8297
- | alternate_email | string | no | |
8298
- | primary_mobile_number | string | yes | |
8299
- | city | string | yes | |
8300
- | last_name | string | no | |
8301
- | geo_location | string | no | |
8302
- | first_name | string | yes | |
7974
+ | rate | number | yes | |
7975
+ | name | string | yes | |
7976
+ | breakup | [string] | no | |
7977
+ | amount | string | yes | |
8303
7978
 
8304
7979
  ---
8305
7980
 
8306
7981
 
8307
7982
 
8308
7983
 
8309
- #### [BillingInfo](#BillingInfo)
7984
+ #### [Charge](#Charge)
8310
7985
 
8311
7986
  | Properties | Type | Nullable | Description |
8312
7987
  | ---------- | ---- | -------- | ----------- |
8313
- | house_no | string | no | |
8314
- | country_code | string | no | |
8315
- | pincode | string | yes | |
8316
- | state_code | string | no | |
8317
- | customer_code | string | no | |
8318
- | alternate_mobile_number | string | no | |
8319
- | address1 | string | yes | |
8320
- | external_customer_code | string | no | |
8321
- | floor_no | string | no | |
8322
- | middle_name | string | no | |
8323
- | state | string | yes | |
8324
- | gender | string | no | |
8325
- | country | string | yes | |
8326
- | title | string | no | |
8327
- | primary_email | string | yes | |
8328
- | address2 | string | no | |
8329
- | alternate_email | string | no | |
8330
- | primary_mobile_number | string | yes | |
8331
- | city | string | yes | |
8332
- | last_name | string | no | |
8333
- | first_name | string | yes | |
7988
+ | tax | [Tax](#Tax) | no | |
7989
+ | type | string | yes | |
7990
+ | name | string | yes | |
7991
+ | amount | string | yes | |
7992
+ | code | string | no | |
8334
7993
 
8335
7994
  ---
8336
7995
 
8337
7996
 
8338
7997
 
8339
7998
 
8340
- #### [TaxInfo](#TaxInfo)
7999
+ #### [ProcessingDates](#ProcessingDates)
8341
8000
 
8342
8001
  | Properties | Type | Nullable | Description |
8343
8002
  | ---------- | ---- | -------- | ----------- |
8344
- | gstin | string | no | |
8345
- | b2b_gstin_number | string | no | |
8003
+ | confirm_by_date | string | no | |
8004
+ | pack_by_date | string | no | |
8005
+ | dispatch_by_date | string | no | |
8006
+ | dp_pickup_slot | string | no | |
8007
+ | dispatch_after_date | string | no | |
8008
+ | customer_pickup_slot | string | no | |
8346
8009
 
8347
8010
  ---
8348
8011
 
8349
8012
 
8350
8013
 
8351
8014
 
8352
- #### [PaymentMethod](#PaymentMethod)
8015
+ #### [LineItem](#LineItem)
8353
8016
 
8354
8017
  | Properties | Type | Nullable | Description |
8355
8018
  | ---------- | ---- | -------- | ----------- |
8356
- | collect_by | string | yes | |
8357
- | name | string | yes | |
8358
- | refund_by | string | yes | |
8359
- | mode | string | yes | |
8360
- | transaction_data | string | no | |
8019
+ | custom_messasge | string | no | |
8361
8020
  | meta | string | no | |
8362
- | amount | number | yes | |
8021
+ | seller_identifier | string | yes | |
8022
+ | quantity | number | no | |
8023
+ | charges | [[Charge](#Charge)] | no | |
8024
+ | external_line_id | string | no | |
8363
8025
 
8364
8026
  ---
8365
8027
 
8366
8028
 
8367
8029
 
8368
8030
 
8369
- #### [PaymentInfo](#PaymentInfo)
8031
+ #### [Shipment](#Shipment)
8370
8032
 
8371
8033
  | Properties | Type | Nullable | Description |
8372
8034
  | ---------- | ---- | -------- | ----------- |
8373
- | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8374
- | primary_mode | string | yes | |
8035
+ | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8036
+ | external_shipment_id | string | no | |
8037
+ | meta | string | no | |
8038
+ | location_id | number | yes | |
8039
+ | priority | number | no | |
8040
+ | line_items | [[LineItem](#LineItem)] | yes | |
8375
8041
 
8376
8042
  ---
8377
8043
 
8378
8044
 
8379
8045
 
8380
8046
 
8381
- #### [ProcessingDates](#ProcessingDates)
8047
+ #### [PaymentMethod](#PaymentMethod)
8382
8048
 
8383
8049
  | Properties | Type | Nullable | Description |
8384
8050
  | ---------- | ---- | -------- | ----------- |
8385
- | pack_by_date | string | no | |
8386
- | dispatch_by_date | string | no | |
8387
- | dispatch_after_date | string | no | |
8388
- | dp_pickup_slot | string | no | |
8389
- | confirm_by_date | string | no | |
8390
- | customer_pickup_slot | string | no | |
8051
+ | collect_by | string | yes | |
8052
+ | transaction_data | string | no | |
8053
+ | name | string | yes | |
8054
+ | meta | string | no | |
8055
+ | refund_by | string | yes | |
8056
+ | amount | number | yes | |
8057
+ | mode | string | yes | |
8391
8058
 
8392
8059
  ---
8393
8060
 
8394
8061
 
8395
8062
 
8396
8063
 
8397
- #### [LineItem](#LineItem)
8064
+ #### [PaymentInfo](#PaymentInfo)
8398
8065
 
8399
8066
  | Properties | Type | Nullable | Description |
8400
8067
  | ---------- | ---- | -------- | ----------- |
8401
- | quantity | number | no | |
8402
- | charges | [[Charge](#Charge)] | no | |
8403
- | external_line_id | string | no | |
8404
- | seller_identifier | string | yes | |
8405
- | meta | string | no | |
8406
- | custom_messasge | string | no | |
8068
+ | primary_mode | string | yes | |
8069
+ | payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
8407
8070
 
8408
8071
  ---
8409
8072
 
8410
8073
 
8411
8074
 
8412
8075
 
8413
- #### [Shipment](#Shipment)
8076
+ #### [BillingInfo](#BillingInfo)
8414
8077
 
8415
8078
  | Properties | Type | Nullable | Description |
8416
8079
  | ---------- | ---- | -------- | ----------- |
8417
- | processing_dates | [ProcessingDates](#ProcessingDates) | no | |
8418
- | location_id | number | yes | |
8419
- | external_shipment_id | string | no | |
8420
- | priority | number | no | |
8421
- | meta | string | no | |
8422
- | line_items | [[LineItem](#LineItem)] | yes | |
8080
+ | alternate_email | string | no | |
8081
+ | customer_code | string | no | |
8082
+ | first_name | string | yes | |
8083
+ | country_code | string | no | |
8084
+ | title | string | no | |
8085
+ | house_no | string | no | |
8086
+ | state | string | yes | |
8087
+ | state_code | string | no | |
8088
+ | last_name | string | no | |
8089
+ | gender | string | no | |
8090
+ | pincode | string | yes | |
8091
+ | address1 | string | yes | |
8092
+ | alternate_mobile_number | string | no | |
8093
+ | external_customer_code | string | no | |
8094
+ | primary_email | string | yes | |
8095
+ | primary_mobile_number | string | yes | |
8096
+ | middle_name | string | no | |
8097
+ | city | string | yes | |
8098
+ | floor_no | string | no | |
8099
+ | address2 | string | no | |
8100
+ | country | string | yes | |
8423
8101
 
8424
8102
  ---
8425
8103
 
@@ -8430,16 +8108,16 @@ Sms Sent successfully
8430
8108
 
8431
8109
  | Properties | Type | Nullable | Description |
8432
8110
  | ---------- | ---- | -------- | ----------- |
8433
- | charges | [[Charge](#Charge)] | no | |
8434
- | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8435
- | billing_info | [BillingInfo](#BillingInfo) | yes | |
8436
- | currency_info | string | no | |
8437
- | tax_info | [TaxInfo](#TaxInfo) | no | |
8438
8111
  | external_creation_date | string | no | |
8439
- | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8440
- | shipments | [[Shipment](#Shipment)] | yes | |
8441
- | external_order_id | string | no | |
8112
+ | tax_info | [TaxInfo](#TaxInfo) | no | |
8113
+ | currency_info | string | no | |
8442
8114
  | meta | string | no | |
8115
+ | external_order_id | string | no | |
8116
+ | shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
8117
+ | charges | [[Charge](#Charge)] | no | |
8118
+ | shipments | [[Shipment](#Shipment)] | yes | |
8119
+ | payment_info | [PaymentInfo](#PaymentInfo) | yes | |
8120
+ | billing_info | [BillingInfo](#BillingInfo) | yes | |
8443
8121
 
8444
8122
  ---
8445
8123
 
@@ -8450,51 +8128,51 @@ Sms Sent successfully
8450
8128
 
8451
8129
  | Properties | Type | Nullable | Description |
8452
8130
  | ---------- | ---- | -------- | ----------- |
8131
+ | request_id | string | no | |
8453
8132
  | status | number | yes | |
8133
+ | meta | string | no | |
8134
+ | info | any | no | |
8454
8135
  | code | string | no | |
8455
8136
  | message | string | yes | |
8456
8137
  | stack_trace | string | no | |
8457
8138
  | exception | string | no | |
8458
- | request_id | string | no | |
8459
- | meta | string | no | |
8460
- | info | any | no | |
8461
8139
 
8462
8140
  ---
8463
8141
 
8464
8142
 
8465
8143
 
8466
8144
 
8467
- #### [DpConfiguration](#DpConfiguration)
8145
+ #### [PaymentMethods](#PaymentMethods)
8468
8146
 
8469
8147
  | Properties | Type | Nullable | Description |
8470
8148
  | ---------- | ---- | -------- | ----------- |
8471
- | shipping_by | string | no | |
8149
+ | collect_by | string | no | |
8150
+ | refund_by | string | no | |
8151
+ | mode | string | no | |
8472
8152
 
8473
8153
  ---
8474
8154
 
8475
8155
 
8476
8156
 
8477
8157
 
8478
- #### [PaymentMethods](#PaymentMethods)
8158
+ #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8479
8159
 
8480
8160
  | Properties | Type | Nullable | Description |
8481
8161
  | ---------- | ---- | -------- | ----------- |
8482
- | collect_by | string | no | |
8483
- | refund_by | string | no | |
8484
- | mode | string | no | |
8162
+ | mode_of_payment | string | no | |
8163
+ | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8164
+ | source | string | no | |
8485
8165
 
8486
8166
  ---
8487
8167
 
8488
8168
 
8489
8169
 
8490
8170
 
8491
- #### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
8171
+ #### [DpConfiguration](#DpConfiguration)
8492
8172
 
8493
8173
  | Properties | Type | Nullable | Description |
8494
8174
  | ---------- | ---- | -------- | ----------- |
8495
- | payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
8496
- | mode_of_payment | string | no | |
8497
- | source | string | no | |
8175
+ | shipping_by | string | no | |
8498
8176
 
8499
8177
  ---
8500
8178
 
@@ -8505,12 +8183,12 @@ Sms Sent successfully
8505
8183
 
8506
8184
  | Properties | Type | Nullable | Description |
8507
8185
  | ---------- | ---- | -------- | ----------- |
8508
- | shipment_assignment | string | no | |
8509
- | location_reassignment | boolean | no | |
8510
- | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8511
- | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8512
8186
  | logo_url | string | no | |
8513
8187
  | lock_states | [string] | no | |
8188
+ | location_reassignment | boolean | no | |
8189
+ | payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
8190
+ | shipment_assignment | string | no | |
8191
+ | dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
8514
8192
 
8515
8193
  ---
8516
8194
 
@@ -8532,9 +8210,9 @@ Sms Sent successfully
8532
8210
 
8533
8211
  | Properties | Type | Nullable | Description |
8534
8212
  | ---------- | ---- | -------- | ----------- |
8213
+ | is_upserted | boolean | no | |
8535
8214
  | acknowledged | boolean | no | |
8536
8215
  | is_inserted | boolean | no | |
8537
- | is_upserted | boolean | no | |
8538
8216
 
8539
8217
  ---
8540
8218
 
@@ -8556,8 +8234,8 @@ Sms Sent successfully
8556
8234
 
8557
8235
  | Properties | Type | Nullable | Description |
8558
8236
  | ---------- | ---- | -------- | ----------- |
8559
- | manifest_id | string | yes | |
8560
8237
  | consent_url | string | yes | |
8238
+ | manifest_id | string | yes | |
8561
8239
 
8562
8240
  ---
8563
8241
 
@@ -8579,8 +8257,8 @@ Sms Sent successfully
8579
8257
 
8580
8258
  | Properties | Type | Nullable | Description |
8581
8259
  | ---------- | ---- | -------- | ----------- |
8582
- | success | boolean | no | |
8583
8260
  | message | [string] | no | |
8261
+ | success | boolean | no | |
8584
8262
 
8585
8263
  ---
8586
8264
 
@@ -8602,10 +8280,10 @@ Sms Sent successfully
8602
8280
 
8603
8281
  | Properties | Type | Nullable | Description |
8604
8282
  | ---------- | ---- | -------- | ----------- |
8605
- | end_date | string | yes | |
8606
8283
  | mobile | number | yes | |
8607
- | start_date | string | yes | |
8608
8284
  | order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
8285
+ | start_date | string | yes | |
8286
+ | end_date | string | yes | |
8609
8287
 
8610
8288
  ---
8611
8289