@gofynd/fdk-client-javascript 0.1.36 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (357) hide show
  1. package/README.md +24 -0
  2. package/application.d.ts +2 -1
  3. package/application.js +2 -1
  4. package/documentation/application/CART.md +313 -281
  5. package/documentation/application/CATALOG.md +458 -435
  6. package/documentation/application/FILESTORAGE.md +2 -0
  7. package/documentation/application/LEAD.md +18 -18
  8. package/documentation/application/LOGISTIC.md +424 -102
  9. package/documentation/application/ORDER.md +293 -293
  10. package/documentation/application/PAYMENT.md +278 -278
  11. package/documentation/application/POSCART.md +350 -318
  12. package/documentation/application/README.md +1 -1
  13. package/documentation/application/REWARDS.md +1 -0
  14. package/documentation/application/USER.md +19 -14
  15. package/documentation/platform/AUDITTRAIL.md +2 -2
  16. package/documentation/platform/CART.md +442 -439
  17. package/documentation/platform/CATALOG.md +2925 -2641
  18. package/documentation/platform/COMPANYPROFILE.md +228 -369
  19. package/documentation/platform/DISCOUNT.md +86 -0
  20. package/documentation/platform/FILESTORAGE.md +2 -0
  21. package/documentation/platform/LEAD.md +60 -60
  22. package/documentation/platform/ORDER.md +1296 -1618
  23. package/documentation/platform/PAYMENT.md +89 -89
  24. package/documentation/platform/REWARDS.md +145 -0
  25. package/documentation/platform/USER.md +24 -14
  26. package/index.d.ts +4 -1
  27. package/index.js +6 -3
  28. package/package.json +9 -9
  29. package/platform.d.ts +2 -1
  30. package/platform.js +3 -2
  31. package/public.d.ts +1 -0
  32. package/public.js +3 -2
  33. package/sdk/application/ApplicationAPIClient.js +6 -1
  34. package/sdk/application/ApplicationClient.d.ts +17 -16
  35. package/sdk/application/ApplicationClient.js +43 -17
  36. package/sdk/application/ApplicationConfig.d.ts +1 -0
  37. package/sdk/application/ApplicationConfig.js +4 -2
  38. package/sdk/application/ApplicationModels.d.ts +0 -827
  39. package/sdk/application/ApplicationModels.js +6 -10486
  40. package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
  41. package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
  42. package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
  43. package/sdk/application/Cart/CartApplicationModel.js +1136 -0
  44. package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
  45. package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
  46. package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
  47. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
  48. package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
  49. package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
  50. package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
  51. package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
  52. package/sdk/application/Common/CommonApplicationModel.js +228 -0
  53. package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
  54. package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
  55. package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
  56. package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
  57. package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
  58. package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
  59. package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
  60. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
  61. package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
  62. package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
  63. package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
  64. package/sdk/application/Content/ContentApplicationModel.js +1349 -0
  65. package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
  66. package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
  67. package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
  68. package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
  69. package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
  70. package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
  71. package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
  72. package/sdk/application/Lead/LeadApplicationModel.js +690 -0
  73. package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
  74. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +53 -0
  75. package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +64 -29
  76. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
  77. package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
  78. package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +2 -1
  79. package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +13 -7
  80. package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
  81. package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
  82. package/sdk/application/Order/OrderApplicationModel.js +872 -0
  83. package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
  84. package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
  85. package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
  86. package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
  87. package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
  88. package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
  89. package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
  90. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
  91. package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
  92. package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
  93. package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
  94. package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
  95. package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
  96. package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
  97. package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
  98. package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
  99. package/sdk/application/Share/ShareApplicationModel.js +178 -0
  100. package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
  101. package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
  102. package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
  103. package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
  104. package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
  105. package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
  106. package/sdk/application/User/UserApplicationModel.d.ts +95 -0
  107. package/sdk/application/User/UserApplicationModel.js +998 -0
  108. package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
  109. package/sdk/application/index.d.ts +18 -0
  110. package/sdk/application/index.js +33 -0
  111. package/sdk/common/AxiosHelper.js +23 -10
  112. package/sdk/common/Logger.d.ts +2 -0
  113. package/sdk/common/Logger.js +6 -0
  114. package/sdk/common/curlHelper.d.ts +2 -0
  115. package/sdk/common/curlHelper.js +95 -0
  116. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
  117. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
  118. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
  119. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
  120. package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
  121. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
  122. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
  123. package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
  124. package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
  125. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
  126. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
  127. package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
  128. package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
  129. package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
  130. package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
  131. package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
  132. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
  133. package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
  134. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
  135. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
  136. package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
  137. package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
  138. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
  139. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
  140. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
  141. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
  142. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +132 -123
  143. package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +354 -323
  144. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
  145. package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
  146. package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -14
  147. package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +91 -84
  148. package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
  149. package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
  150. package/sdk/platform/Common/CommonPlatformModel.js +228 -0
  151. package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
  152. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
  153. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
  154. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
  155. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
  156. package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
  157. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
  158. package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
  159. package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
  160. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
  161. package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
  162. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
  163. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
  164. package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
  165. package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
  166. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
  167. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
  168. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
  169. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
  170. package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
  171. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
  172. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
  173. package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
  174. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
  175. package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
  176. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
  177. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
  178. package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
  179. package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
  180. package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
  181. package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
  182. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
  183. package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
  184. package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
  185. package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
  186. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
  187. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
  188. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
  189. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
  190. package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
  191. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
  192. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
  193. package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
  194. package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
  195. package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
  196. package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
  197. package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
  198. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
  199. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
  200. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
  201. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
  202. package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
  203. package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
  204. package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
  205. package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
  206. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
  207. package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
  208. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
  209. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
  210. package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
  211. package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
  212. package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
  213. package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
  214. package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
  215. package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
  216. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
  217. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
  218. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
  219. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
  220. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
  221. package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
  222. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
  223. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
  224. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
  225. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
  226. package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
  227. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  228. package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
  229. package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
  230. package/sdk/platform/PlatformAPIClient.js +2 -1
  231. package/sdk/platform/PlatformApplicationClient.d.ts +2884 -18377
  232. package/sdk/platform/PlatformApplicationClient.js +3750 -13814
  233. package/sdk/platform/PlatformClient.d.ts +2898 -2861
  234. package/sdk/platform/PlatformClient.js +3714 -3057
  235. package/sdk/platform/PlatformConfig.js +2 -1
  236. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
  237. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
  238. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
  239. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
  240. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
  241. package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
  242. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
  243. package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
  244. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
  245. package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
  246. package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
  247. package/sdk/platform/Share/SharePlatformModel.js +170 -0
  248. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
  249. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
  250. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
  251. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
  252. package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
  253. package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
  254. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
  255. package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
  256. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
  257. package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
  258. package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
  259. package/sdk/platform/User/UserPlatformModel.js +998 -0
  260. package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
  261. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
  262. package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
  263. package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
  264. package/sdk/platform/index.d.ts +24 -0
  265. package/sdk/platform/index.js +45 -0
  266. package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
  267. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
  268. package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
  269. package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
  270. package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
  271. package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
  272. package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
  273. package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
  274. package/sdk/public/PublicClient.d.ts +3 -3
  275. package/sdk/public/PublicClient.js +8 -3
  276. package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
  277. package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
  278. package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
  279. package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
  280. package/sdk/public/index.d.ts +5 -0
  281. package/sdk/public/index.js +7 -0
  282. package/sdk/application/client/LogisticApplicationClient.d.ts +0 -42
  283. package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
  284. package/sdk/platform/PlatformApplicationModels.js +0 -22522
  285. package/sdk/platform/PlatformModels.d.ts +0 -1470
  286. package/sdk/platform/PlatformModels.js +0 -20510
  287. package/sdk/platform/models/CartValidator.d.ts +0 -0
  288. package/sdk/platform/models/CartValidator.js +0 -0
  289. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  290. package/sdk/platform/models/ContentValidator.js +0 -0
  291. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  292. package/sdk/platform/models/PartnerValidator.js +0 -0
  293. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  294. package/sdk/platform/models/RewardsValidator.js +0 -0
  295. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  296. package/sdk/platform/models/ShareValidator.js +0 -0
  297. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  298. package/sdk/platform/models/ThemeValidator.js +0 -0
  299. package/sdk/platform/models/UserValidator.d.ts +0 -0
  300. package/sdk/platform/models/UserValidator.js +0 -0
  301. package/sdk/public/PublicModels.d.ts +0 -50
  302. package/sdk/public/PublicModels.js +0 -712
  303. /package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
  304. /package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
  305. /package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
  306. /package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
  307. /package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
  308. /package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
  309. /package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
  310. /package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
  311. /package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
  312. /package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
  313. /package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
  314. /package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
  315. /package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
  316. /package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
  317. /package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
  318. /package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
  319. /package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
  320. /package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
  321. /package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
  322. /package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
  323. /package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
  324. /package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
  325. /package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
  326. /package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
  327. /package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
  328. /package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
  329. /package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
  330. /package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
  331. /package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
  332. /package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
  333. /package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
  334. /package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
  335. /package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
  336. /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
  337. /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
  338. /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
  339. /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
  340. /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
  341. /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
  342. /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
  343. /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
  344. /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
  345. /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
  346. /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
  347. /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
  348. /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
  349. /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
  350. /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
  351. /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
  352. /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
  353. /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
  354. /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
  355. /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
  356. /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
  357. /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
@@ -2485,307 +2485,305 @@ Successfully updateShipmentStatus!
2485
2485
 
2486
2486
 
2487
2487
 
2488
- #### [BreakupValues](#BreakupValues)
2488
+ #### [OrderStatuses](#OrderStatuses)
2489
2489
 
2490
2490
  | Properties | Type | Nullable | Description |
2491
2491
  | ---------- | ---- | -------- | ----------- |
2492
2492
  | value | number | no | |
2493
2493
  | display | string | no | |
2494
- | name | string | no | |
2494
+ | is_selected | boolean | no | |
2495
2495
 
2496
2496
  ---
2497
2497
 
2498
2498
 
2499
2499
 
2500
2500
 
2501
- #### [UserInfo](#UserInfo)
2501
+ #### [OrderFilters](#OrderFilters)
2502
2502
 
2503
2503
  | Properties | Type | Nullable | Description |
2504
2504
  | ---------- | ---- | -------- | ----------- |
2505
- | email | string | no | |
2506
- | mobile | string | no | |
2507
- | name | string | no | |
2508
- | gender | string | no | |
2505
+ | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2509
2506
 
2510
2507
  ---
2511
2508
 
2512
2509
 
2513
2510
 
2514
2511
 
2515
- #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2512
+ #### [BreakupValues](#BreakupValues)
2516
2513
 
2517
2514
  | Properties | Type | Nullable | Description |
2518
2515
  | ---------- | ---- | -------- | ----------- |
2519
- | level | string | no | |
2520
- | strategy | string | no | |
2516
+ | name | string | no | |
2517
+ | value | number | no | |
2518
+ | display | string | no | |
2521
2519
 
2522
2520
  ---
2523
2521
 
2524
2522
 
2525
2523
 
2526
2524
 
2527
- #### [BagsForReorder](#BagsForReorder)
2525
+ #### [UserInfo](#UserInfo)
2528
2526
 
2529
2527
  | Properties | Type | Nullable | Description |
2530
2528
  | ---------- | ---- | -------- | ----------- |
2531
- | item_size | string | no | |
2532
- | store_id | number | no | |
2533
- | seller_id | number | no | |
2534
- | quantity | number | no | |
2535
- | item_id | number | no | |
2536
- | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2529
+ | name | string | no | |
2530
+ | email | string | no | |
2531
+ | mobile | string | no | |
2532
+ | gender | string | no | |
2537
2533
 
2538
2534
  ---
2539
2535
 
2540
2536
 
2541
2537
 
2542
2538
 
2543
- #### [FulfillingCompany](#FulfillingCompany)
2539
+ #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2544
2540
 
2545
2541
  | Properties | Type | Nullable | Description |
2546
2542
  | ---------- | ---- | -------- | ----------- |
2547
- | id | number | no | |
2548
- | name | string | no | |
2543
+ | strategy | string | no | |
2544
+ | level | string | no | |
2549
2545
 
2550
2546
  ---
2551
2547
 
2552
2548
 
2553
2549
 
2554
2550
 
2555
- #### [FulfillingStore](#FulfillingStore)
2551
+ #### [BagsForReorder](#BagsForReorder)
2556
2552
 
2557
2553
  | Properties | Type | Nullable | Description |
2558
2554
  | ---------- | ---- | -------- | ----------- |
2559
- | id | number | no | |
2560
- | company_name | string | no | |
2561
- | name | string | no | |
2562
- | company_id | number | no | |
2563
- | code | string | no | |
2555
+ | seller_id | number | no | |
2556
+ | item_id | number | no | |
2557
+ | quantity | number | no | |
2558
+ | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2559
+ | item_size | string | no | |
2560
+ | store_id | number | no | |
2564
2561
 
2565
2562
  ---
2566
2563
 
2567
2564
 
2568
2565
 
2569
2566
 
2570
- #### [Invoice](#Invoice)
2567
+ #### [TimeStampData](#TimeStampData)
2571
2568
 
2572
2569
  | Properties | Type | Nullable | Description |
2573
2570
  | ---------- | ---- | -------- | ----------- |
2574
- | label_url | string | no | |
2575
- | invoice_url | string | no | |
2576
- | updated_date | string | no | |
2571
+ | min | string | no | |
2572
+ | max | string | no | |
2577
2573
 
2578
2574
  ---
2579
2575
 
2580
2576
 
2581
2577
 
2582
2578
 
2583
- #### [DeliveryAddress](#DeliveryAddress)
2579
+ #### [Promise](#Promise)
2584
2580
 
2585
2581
  | Properties | Type | Nullable | Description |
2586
2582
  | ---------- | ---- | -------- | ----------- |
2587
- | version | string | no | |
2588
- | country | string | no | |
2589
- | state | string | no | |
2590
- | area | string | no | |
2591
- | name | string | no | |
2592
- | contact_person | string | no | |
2593
- | pincode | string | no | |
2594
- | updated_at | string | no | |
2595
- | latitude | number | no | |
2596
- | city | string | no | |
2597
- | address_type | string | no | |
2598
- | phone | string | no | |
2599
- | address_category | string | no | |
2600
- | created_at | string | no | |
2601
- | address2 | string | no | |
2602
- | address1 | string | no | |
2603
- | landmark | string | no | |
2604
- | address | string | no | |
2605
- | longitude | number | no | |
2606
- | email | string | no | |
2583
+ | show_promise | boolean | no | |
2584
+ | timestamp | [TimeStampData](#TimeStampData) | no | |
2607
2585
 
2608
2586
  ---
2609
2587
 
2610
2588
 
2611
2589
 
2612
2590
 
2613
- #### [TimeStampData](#TimeStampData)
2591
+ #### [ShipmentUserInfo](#ShipmentUserInfo)
2614
2592
 
2615
2593
  | Properties | Type | Nullable | Description |
2616
2594
  | ---------- | ---- | -------- | ----------- |
2617
- | min | string | no | |
2618
- | max | string | no | |
2595
+ | first_name | string | no | |
2596
+ | mobile | string | no | |
2597
+ | last_name | string | no | |
2598
+ | gender | string | no | |
2619
2599
 
2620
2600
  ---
2621
2601
 
2622
2602
 
2623
2603
 
2624
2604
 
2625
- #### [Promise](#Promise)
2605
+ #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2626
2606
 
2627
2607
  | Properties | Type | Nullable | Description |
2628
2608
  | ---------- | ---- | -------- | ----------- |
2629
- | show_promise | boolean | no | |
2630
- | timestamp | [TimeStampData](#TimeStampData) | no | |
2609
+ | pieces | number | no | |
2610
+ | total_price | number | no | |
2611
+ | sizes | number | no | |
2631
2612
 
2632
2613
  ---
2633
2614
 
2634
2615
 
2635
2616
 
2636
2617
 
2637
- #### [ShipmentStatus](#ShipmentStatus)
2618
+ #### [ShipmentPayment](#ShipmentPayment)
2638
2619
 
2639
2620
  | Properties | Type | Nullable | Description |
2640
2621
  | ---------- | ---- | -------- | ----------- |
2641
- | title | string | no | |
2642
- | hex_code | string | no | |
2622
+ | logo | string | no | |
2623
+ | payment_mode | string | no | |
2624
+ | mode | string | no | |
2625
+ | status | string | no | |
2626
+ | mop | string | no | |
2627
+ | display_name | string | no | |
2643
2628
 
2644
2629
  ---
2645
2630
 
2646
2631
 
2647
2632
 
2648
2633
 
2649
- #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2634
+ #### [ShipmentStatus](#ShipmentStatus)
2650
2635
 
2651
2636
  | Properties | Type | Nullable | Description |
2652
2637
  | ---------- | ---- | -------- | ----------- |
2653
- | sizes | number | no | |
2654
- | total_price | number | no | |
2655
- | pieces | number | no | |
2638
+ | title | string | no | |
2639
+ | hex_code | string | no | |
2656
2640
 
2657
2641
  ---
2658
2642
 
2659
2643
 
2660
2644
 
2661
2645
 
2662
- #### [Prices](#Prices)
2646
+ #### [DeliveryAddress](#DeliveryAddress)
2663
2647
 
2664
2648
  | Properties | Type | Nullable | Description |
2665
2649
  | ---------- | ---- | -------- | ----------- |
2666
- | price_effective | number | no | |
2667
- | value_of_good | number | no | |
2668
- | amount_paid_roundoff | number | no | |
2669
- | cashback | number | no | |
2670
- | price_marked | number | no | |
2671
- | coupon_effective_discount | number | no | |
2672
- | coupon_value | number | no | |
2673
- | amount_paid | number | no | |
2674
- | refund_credit | number | no | |
2675
- | discount | number | no | |
2676
- | transfer_price | number | no | |
2677
- | cashback_applied | number | no | |
2678
- | promotion_effective_discount | number | no | |
2679
- | fynd_credits | number | no | |
2680
- | gst_tax_percentage | number | no | |
2681
- | brand_calculated_amount | number | no | |
2682
- | refund_amount | number | no | |
2683
- | delivery_charge | number | no | |
2684
- | added_to_fynd_cash | boolean | no | |
2685
- | cod_charges | number | no | |
2650
+ | version | string | no | |
2651
+ | address_type | string | no | |
2652
+ | state | string | no | |
2653
+ | latitude | number | no | |
2654
+ | pincode | string | no | |
2655
+ | city | string | no | |
2656
+ | address1 | string | no | |
2657
+ | name | string | no | |
2658
+ | area | string | no | |
2659
+ | updated_at | string | no | |
2660
+ | address | string | no | |
2661
+ | address2 | string | no | |
2662
+ | landmark | string | no | |
2663
+ | email | string | no | |
2664
+ | contact_person | string | no | |
2665
+ | phone | string | no | |
2666
+ | country | string | no | |
2667
+ | created_at | string | no | |
2668
+ | address_category | string | no | |
2669
+ | longitude | number | no | |
2686
2670
 
2687
2671
  ---
2688
2672
 
2689
2673
 
2690
2674
 
2691
2675
 
2692
- #### [ShipmentUserInfo](#ShipmentUserInfo)
2676
+ #### [FulfillingCompany](#FulfillingCompany)
2693
2677
 
2694
2678
  | Properties | Type | Nullable | Description |
2695
2679
  | ---------- | ---- | -------- | ----------- |
2696
- | last_name | string | no | |
2697
- | mobile | string | no | |
2698
- | first_name | string | no | |
2699
- | gender | string | no | |
2680
+ | id | number | no | |
2681
+ | name | string | no | |
2700
2682
 
2701
2683
  ---
2702
2684
 
2703
2685
 
2704
2686
 
2705
2687
 
2706
- #### [NestedTrackingDetails](#NestedTrackingDetails)
2688
+ #### [CurrentStatus](#CurrentStatus)
2707
2689
 
2708
2690
  | Properties | Type | Nullable | Description |
2709
2691
  | ---------- | ---- | -------- | ----------- |
2710
- | is_passed | boolean | no | |
2711
- | time | string | no | |
2692
+ | name | string | no | |
2693
+ | journey_type | string | no | |
2694
+ | updated_at | string | no | |
2712
2695
  | status | string | no | |
2713
- | is_current | boolean | no | |
2714
2696
 
2715
2697
  ---
2716
2698
 
2717
2699
 
2718
2700
 
2719
2701
 
2720
- #### [TrackingDetails](#TrackingDetails)
2702
+ #### [ItemBrand](#ItemBrand)
2721
2703
 
2722
2704
  | Properties | Type | Nullable | Description |
2723
2705
  | ---------- | ---- | -------- | ----------- |
2724
- | is_passed | boolean | no | |
2725
- | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2726
- | time | string | no | |
2727
- | status | string | no | |
2728
- | is_current | boolean | no | |
2706
+ | name | string | no | |
2707
+ | logo | string | no | |
2729
2708
 
2730
2709
  ---
2731
2710
 
2732
2711
 
2733
2712
 
2734
2713
 
2735
- #### [ShipmentPayment](#ShipmentPayment)
2714
+ #### [Item](#Item)
2736
2715
 
2737
2716
  | Properties | Type | Nullable | Description |
2738
2717
  | ---------- | ---- | -------- | ----------- |
2739
- | mop | string | no | |
2740
- | payment_mode | string | no | |
2741
- | display_name | string | no | |
2742
- | status | string | no | |
2743
- | mode | string | no | |
2744
- | logo | string | no | |
2718
+ | name | string | no | |
2719
+ | seller_identifier | string | no | |
2720
+ | code | string | no | |
2721
+ | slug_key | string | no | |
2722
+ | id | number | no | |
2723
+ | brand | [ItemBrand](#ItemBrand) | no | |
2724
+ | size | string | no | |
2725
+ | image | [string] | no | |
2745
2726
 
2746
2727
  ---
2747
2728
 
2748
2729
 
2749
2730
 
2750
2731
 
2751
- #### [ItemBrand](#ItemBrand)
2732
+ #### [Prices](#Prices)
2752
2733
 
2753
2734
  | Properties | Type | Nullable | Description |
2754
2735
  | ---------- | ---- | -------- | ----------- |
2755
- | logo | string | no | |
2756
- | name | string | no | |
2736
+ | discount | number | no | |
2737
+ | refund_amount | number | no | |
2738
+ | amount_paid | number | no | |
2739
+ | gst_tax_percentage | number | no | |
2740
+ | coupon_effective_discount | number | no | |
2741
+ | value_of_good | number | no | |
2742
+ | refund_credit | number | no | |
2743
+ | added_to_fynd_cash | boolean | no | |
2744
+ | cashback_applied | number | no | |
2745
+ | fynd_credits | number | no | |
2746
+ | amount_paid_roundoff | number | no | |
2747
+ | delivery_charge | number | no | |
2748
+ | promotion_effective_discount | number | no | |
2749
+ | price_effective | number | no | |
2750
+ | cod_charges | number | no | |
2751
+ | brand_calculated_amount | number | no | |
2752
+ | cashback | number | no | |
2753
+ | coupon_value | number | no | |
2754
+ | price_marked | number | no | |
2755
+ | transfer_price | number | no | |
2757
2756
 
2758
2757
  ---
2759
2758
 
2760
2759
 
2761
2760
 
2762
2761
 
2763
- #### [Item](#Item)
2762
+ #### [AppliedFreeArticles](#AppliedFreeArticles)
2764
2763
 
2765
2764
  | Properties | Type | Nullable | Description |
2766
2765
  | ---------- | ---- | -------- | ----------- |
2767
- | id | number | no | |
2768
- | name | string | no | |
2769
- | brand | [ItemBrand](#ItemBrand) | no | |
2770
- | image | [string] | no | |
2771
- | size | string | no | |
2772
- | slug_key | string | no | |
2773
- | code | string | no | |
2774
- | seller_identifier | string | no | |
2766
+ | free_gift_item_details | string | no | |
2767
+ | article_id | string | no | |
2768
+ | parent_item_identifier | string | no | |
2769
+ | quantity | number | no | |
2775
2770
 
2776
2771
  ---
2777
2772
 
2778
2773
 
2779
2774
 
2780
2775
 
2781
- #### [CurrentStatus](#CurrentStatus)
2776
+ #### [AppliedPromos](#AppliedPromos)
2782
2777
 
2783
2778
  | Properties | Type | Nullable | Description |
2784
2779
  | ---------- | ---- | -------- | ----------- |
2785
- | updated_at | string | no | |
2786
- | name | string | no | |
2787
- | status | string | no | |
2788
- | journey_type | string | no | |
2780
+ | amount | number | no | |
2781
+ | promotion_type | string | no | |
2782
+ | promotion_name | string | no | |
2783
+ | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2784
+ | promo_id | string | no | |
2785
+ | article_quantity | number | no | |
2786
+ | mrp_promotion | boolean | no | |
2789
2787
 
2790
2788
  ---
2791
2789
 
@@ -2808,88 +2806,114 @@ Successfully updateShipmentStatus!
2808
2806
 
2809
2807
  | Properties | Type | Nullable | Description |
2810
2808
  | ---------- | ---- | -------- | ----------- |
2811
- | item_name | string | no | |
2812
- | price_effective | number | no | |
2809
+ | discount | number | no | |
2810
+ | refund_amount | number | no | |
2811
+ | amount_paid | number | no | |
2812
+ | gst_tax_percentage | number | no | |
2813
+ | coupon_effective_discount | number | no | |
2814
+ | total_units | number | no | |
2813
2815
  | value_of_good | number | no | |
2814
- | gst_fee | number | no | |
2816
+ | refund_credit | number | no | |
2817
+ | added_to_fynd_cash | boolean | no | |
2818
+ | gst_tag | string | no | |
2819
+ | cashback_applied | number | no | |
2820
+ | fynd_credits | number | no | |
2815
2821
  | amount_paid_roundoff | number | no | |
2822
+ | gst_fee | number | no | |
2823
+ | delivery_charge | number | no | |
2824
+ | promotion_effective_discount | number | no | |
2825
+ | price_effective | number | no | |
2826
+ | cod_charges | number | no | |
2816
2827
  | hsn_code | string | no | |
2828
+ | brand_calculated_amount | number | no | |
2817
2829
  | cashback | number | no | |
2818
- | price_marked | number | no | |
2819
- | coupon_effective_discount | number | no | |
2820
- | gst_tag | string | no | |
2830
+ | item_name | string | no | |
2821
2831
  | coupon_value | number | no | |
2822
- | amount_paid | number | no | |
2823
- | refund_credit | number | no | |
2824
- | discount | number | no | |
2825
- | transfer_price | number | no | |
2826
- | cashback_applied | number | no | |
2832
+ | price_marked | number | no | |
2827
2833
  | identifiers | [Identifiers](#Identifiers) | no | |
2828
- | promotion_effective_discount | number | no | |
2829
- | fynd_credits | number | no | |
2830
- | gst_tax_percentage | number | no | |
2831
- | brand_calculated_amount | number | no | |
2832
- | refund_amount | number | no | |
2833
- | delivery_charge | number | no | |
2834
+ | transfer_price | number | no | |
2834
2835
  | size | string | no | |
2835
- | added_to_fynd_cash | boolean | no | |
2836
- | cod_charges | number | no | |
2837
- | total_units | number | no | |
2838
2836
 
2839
2837
  ---
2840
2838
 
2841
2839
 
2842
2840
 
2843
2841
 
2844
- #### [AppliedFreeArticles](#AppliedFreeArticles)
2842
+ #### [Bags](#Bags)
2845
2843
 
2846
2844
  | Properties | Type | Nullable | Description |
2847
2845
  | ---------- | ---- | -------- | ----------- |
2848
- | parent_item_identifier | string | no | |
2849
- | free_gift_item_details | string | no | |
2846
+ | can_return | boolean | no | |
2847
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
2850
2848
  | quantity | number | no | |
2851
- | article_id | string | no | |
2849
+ | returnable_date | string | no | |
2850
+ | delivery_date | string | no | |
2851
+ | seller_identifier | string | no | |
2852
+ | item | [Item](#Item) | no | |
2853
+ | line_number | number | no | |
2854
+ | parent_promo_bags | string | no | |
2855
+ | prices | [Prices](#Prices) | no | |
2856
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2857
+ | id | number | no | |
2858
+ | can_cancel | boolean | no | |
2859
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2860
+
2861
+ ---
2862
+
2863
+
2864
+
2865
+
2866
+ #### [FulfillingStore](#FulfillingStore)
2867
+
2868
+ | Properties | Type | Nullable | Description |
2869
+ | ---------- | ---- | -------- | ----------- |
2870
+ | company_id | number | no | |
2871
+ | name | string | no | |
2872
+ | code | string | no | |
2873
+ | id | number | no | |
2874
+ | company_name | string | no | |
2875
+
2876
+ ---
2877
+
2878
+
2879
+
2880
+
2881
+ #### [Invoice](#Invoice)
2882
+
2883
+ | Properties | Type | Nullable | Description |
2884
+ | ---------- | ---- | -------- | ----------- |
2885
+ | updated_date | string | no | |
2886
+ | label_url | string | no | |
2887
+ | invoice_url | string | no | |
2852
2888
 
2853
2889
  ---
2854
2890
 
2855
2891
 
2856
2892
 
2857
2893
 
2858
- #### [AppliedPromos](#AppliedPromos)
2894
+ #### [NestedTrackingDetails](#NestedTrackingDetails)
2859
2895
 
2860
2896
  | Properties | Type | Nullable | Description |
2861
2897
  | ---------- | ---- | -------- | ----------- |
2862
- | promotion_type | string | no | |
2863
- | article_quantity | number | no | |
2864
- | promo_id | string | no | |
2865
- | amount | number | no | |
2866
- | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2867
- | promotion_name | string | no | |
2868
- | mrp_promotion | boolean | no | |
2898
+ | time | string | no | |
2899
+ | is_passed | boolean | no | |
2900
+ | is_current | boolean | no | |
2901
+ | status | string | no | |
2869
2902
 
2870
2903
  ---
2871
2904
 
2872
2905
 
2873
2906
 
2874
2907
 
2875
- #### [Bags](#Bags)
2908
+ #### [TrackingDetails](#TrackingDetails)
2876
2909
 
2877
2910
  | Properties | Type | Nullable | Description |
2878
2911
  | ---------- | ---- | -------- | ----------- |
2879
- | id | number | no | |
2880
- | parent_promo_bags | string | no | |
2881
- | line_number | number | no | |
2882
- | item | [Item](#Item) | no | |
2883
- | prices | [Prices](#Prices) | no | |
2884
- | returnable_date | string | no | |
2885
- | current_status | [CurrentStatus](#CurrentStatus) | no | |
2886
- | can_cancel | boolean | no | |
2887
- | quantity | number | no | |
2888
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2889
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2890
- | can_return | boolean | no | |
2891
- | seller_identifier | string | no | |
2892
- | delivery_date | string | no | |
2912
+ | time | string | no | |
2913
+ | is_current | boolean | no | |
2914
+ | status | string | no | |
2915
+ | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2916
+ | is_passed | boolean | no | |
2893
2917
 
2894
2918
  ---
2895
2919
 
@@ -2900,41 +2924,41 @@ Successfully updateShipmentStatus!
2900
2924
 
2901
2925
  | Properties | Type | Nullable | Description |
2902
2926
  | ---------- | ---- | -------- | ----------- |
2903
- | awb_no | string | no | |
2904
- | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2905
- | order_id | string | no | |
2906
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2907
- | delivery_date | string | no | |
2908
- | invoice | [Invoice](#Invoice) | no | |
2909
- | shipment_id | string | no | |
2910
- | show_track_link | boolean | no | |
2911
- | refund_details | string | no | |
2912
- | shipment_created_at | string | no | |
2913
- | show_download_invoice | boolean | no | |
2914
- | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2915
- | promise | [Promise](#Promise) | no | |
2916
- | dp_name | string | no | |
2917
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2918
- | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2919
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2920
- | prices | [Prices](#Prices) | no | |
2921
2927
  | returnable_date | string | no | |
2922
- | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2923
- | size_info | string | no | |
2924
- | can_return | boolean | no | |
2928
+ | promise | [Promise](#Promise) | no | |
2925
2929
  | need_help_url | string | no | |
2926
- | beneficiary_details | boolean | no | |
2927
- | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2928
- | comment | string | no | |
2929
2930
  | custom_meta | [string] | no | |
2930
- | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2931
+ | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2931
2932
  | traking_no | string | no | |
2932
- | track_url | string | no | |
2933
- | can_cancel | boolean | no | |
2933
+ | dp_name | string | no | |
2934
+ | size_info | string | no | |
2935
+ | shipment_id | string | no | |
2936
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2934
2937
  | total_bags | number | no | |
2935
- | order_type | string | no | |
2938
+ | delivery_date | string | no | |
2939
+ | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2940
+ | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2941
+ | can_cancel | boolean | no | |
2942
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2943
+ | can_return | boolean | no | |
2944
+ | refund_details | string | no | |
2945
+ | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2946
+ | comment | string | no | |
2947
+ | show_download_invoice | boolean | no | |
2948
+ | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2936
2949
  | bags | [[Bags](#Bags)] | no | |
2950
+ | awb_no | string | no | |
2951
+ | order_type | string | no | |
2952
+ | show_track_link | boolean | no | |
2953
+ | shipment_created_at | string | no | |
2954
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2955
+ | invoice | [Invoice](#Invoice) | no | |
2956
+ | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2957
+ | prices | [Prices](#Prices) | no | |
2958
+ | beneficiary_details | boolean | no | |
2959
+ | order_id | string | no | |
2937
2960
  | can_break | string | no | |
2961
+ | track_url | string | no | |
2938
2962
 
2939
2963
  ---
2940
2964
 
@@ -2945,37 +2969,13 @@ Successfully updateShipmentStatus!
2945
2969
 
2946
2970
  | Properties | Type | Nullable | Description |
2947
2971
  | ---------- | ---- | -------- | ----------- |
2948
- | total_shipments_in_order | number | no | |
2949
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2950
2972
  | order_created_time | string | no | |
2973
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2974
+ | total_shipments_in_order | number | no | |
2951
2975
  | user_info | [UserInfo](#UserInfo) | no | |
2952
- | order_id | string | no | |
2953
2976
  | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2954
2977
  | shipments | [[Shipments](#Shipments)] | no | |
2955
-
2956
- ---
2957
-
2958
-
2959
-
2960
-
2961
- #### [OrderStatuses](#OrderStatuses)
2962
-
2963
- | Properties | Type | Nullable | Description |
2964
- | ---------- | ---- | -------- | ----------- |
2965
- | value | number | no | |
2966
- | is_selected | boolean | no | |
2967
- | display | string | no | |
2968
-
2969
- ---
2970
-
2971
-
2972
-
2973
-
2974
- #### [OrderFilters](#OrderFilters)
2975
-
2976
- | Properties | Type | Nullable | Description |
2977
- | ---------- | ---- | -------- | ----------- |
2978
- | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2978
+ | order_id | string | no | |
2979
2979
 
2980
2980
  ---
2981
2981
 
@@ -2986,11 +2986,11 @@ Successfully updateShipmentStatus!
2986
2986
 
2987
2987
  | Properties | Type | Nullable | Description |
2988
2988
  | ---------- | ---- | -------- | ----------- |
2989
- | size | number | no | |
2989
+ | type | string | no | |
2990
2990
  | item_total | number | no | |
2991
2991
  | current | number | no | |
2992
2992
  | has_next | boolean | no | |
2993
- | type | string | no | |
2993
+ | size | number | no | |
2994
2994
 
2995
2995
  ---
2996
2996
 
@@ -3001,8 +3001,8 @@ Successfully updateShipmentStatus!
3001
3001
 
3002
3002
  | Properties | Type | Nullable | Description |
3003
3003
  | ---------- | ---- | -------- | ----------- |
3004
- | items | [[OrderSchema](#OrderSchema)] | no | |
3005
3004
  | filters | [OrderFilters](#OrderFilters) | no | |
3005
+ | items | [[OrderSchema](#OrderSchema)] | no | |
3006
3006
  | page | [OrderPage](#OrderPage) | no | |
3007
3007
 
3008
3008
  ---
@@ -3048,10 +3048,10 @@ Successfully updateShipmentStatus!
3048
3048
 
3049
3049
  | Properties | Type | Nullable | Description |
3050
3050
  | ---------- | ---- | -------- | ----------- |
3051
- | shipment_id | string | yes | |
3052
- | presigned_type | string | yes | |
3053
3051
  | success | boolean | yes | |
3052
+ | presigned_type | string | yes | |
3054
3053
  | presigned_url | string | yes | |
3054
+ | shipment_id | string | yes | |
3055
3055
 
3056
3056
  ---
3057
3057
 
@@ -3062,13 +3062,13 @@ Successfully updateShipmentStatus!
3062
3062
 
3063
3063
  | Properties | Type | Nullable | Description |
3064
3064
  | ---------- | ---- | -------- | ----------- |
3065
- | account_name | string | no | |
3066
- | awb | string | no | |
3067
3065
  | shipment_type | string | no | |
3068
- | updated_at | string | no | |
3066
+ | last_location_recieved_at | string | no | |
3069
3067
  | status | string | no | |
3068
+ | awb | string | no | |
3069
+ | updated_at | string | no | |
3070
3070
  | updated_time | string | no | |
3071
- | last_location_recieved_at | string | no | |
3071
+ | account_name | string | no | |
3072
3072
  | reason | string | no | |
3073
3073
 
3074
3074
  ---
@@ -3091,10 +3091,10 @@ Successfully updateShipmentStatus!
3091
3091
 
3092
3092
  | Properties | Type | Nullable | Description |
3093
3093
  | ---------- | ---- | -------- | ----------- |
3094
+ | country | string | no | |
3094
3095
  | shipment_id | string | no | |
3095
3096
  | name | string | no | |
3096
3097
  | phone | string | no | |
3097
- | country | string | no | |
3098
3098
  | order_id | string | no | |
3099
3099
 
3100
3100
  ---
@@ -3139,23 +3139,23 @@ Successfully updateShipmentStatus!
3139
3139
 
3140
3140
 
3141
3141
 
3142
- #### [BagReasonMeta](#BagReasonMeta)
3142
+ #### [QuestionSet](#QuestionSet)
3143
3143
 
3144
3144
  | Properties | Type | Nullable | Description |
3145
3145
  | ---------- | ---- | -------- | ----------- |
3146
- | show_text_area | boolean | no | |
3146
+ | id | number | no | |
3147
+ | display_name | string | no | |
3147
3148
 
3148
3149
  ---
3149
3150
 
3150
3151
 
3151
3152
 
3152
3153
 
3153
- #### [QuestionSet](#QuestionSet)
3154
+ #### [BagReasonMeta](#BagReasonMeta)
3154
3155
 
3155
3156
  | Properties | Type | Nullable | Description |
3156
3157
  | ---------- | ---- | -------- | ----------- |
3157
- | id | number | no | |
3158
- | display_name | string | no | |
3158
+ | show_text_area | boolean | no | |
3159
3159
 
3160
3160
  ---
3161
3161
 
@@ -3166,12 +3166,12 @@ Successfully updateShipmentStatus!
3166
3166
 
3167
3167
  | Properties | Type | Nullable | Description |
3168
3168
  | ---------- | ---- | -------- | ----------- |
3169
- | id | number | no | |
3170
- | qc_type | [string] | no | |
3171
- | reasons | [[BagReasons](#BagReasons)] | no | |
3172
- | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3173
3169
  | question_set | [[QuestionSet](#QuestionSet)] | no | |
3170
+ | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3174
3171
  | display_name | string | no | |
3172
+ | id | number | no | |
3173
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3174
+ | qc_type | [string] | no | |
3175
3175
 
3176
3176
  ---
3177
3177
 
@@ -3182,8 +3182,8 @@ Successfully updateShipmentStatus!
3182
3182
 
3183
3183
  | Properties | Type | Nullable | Description |
3184
3184
  | ---------- | ---- | -------- | ----------- |
3185
- | success | boolean | no | |
3186
3185
  | reasons | [[BagReasons](#BagReasons)] | no | |
3186
+ | success | boolean | no | |
3187
3187
 
3188
3188
  ---
3189
3189
 
@@ -3195,10 +3195,10 @@ Successfully updateShipmentStatus!
3195
3195
  | Properties | Type | Nullable | Description |
3196
3196
  | ---------- | ---- | -------- | ----------- |
3197
3197
  | reason_text | string | no | |
3198
- | reason_id | number | no | |
3199
- | priority | number | no | |
3200
3198
  | flow | string | no | |
3199
+ | priority | number | no | |
3201
3200
  | show_text_area | boolean | no | |
3201
+ | reason_id | number | no | |
3202
3202
  | feedback_type | string | no | |
3203
3203
 
3204
3204
  ---
@@ -3217,134 +3217,134 @@ Successfully updateShipmentStatus!
3217
3217
 
3218
3218
 
3219
3219
 
3220
- #### [Products](#Products)
3220
+ #### [EntityReasonData](#EntityReasonData)
3221
3221
 
3222
3222
  | Properties | Type | Nullable | Description |
3223
3223
  | ---------- | ---- | -------- | ----------- |
3224
- | line_number | number | no | |
3225
- | identifier | string | no | |
3226
- | quantity | number | no | |
3224
+ | reason_text | string | no | |
3225
+ | reason_id | number | no | |
3227
3226
 
3228
3227
  ---
3229
3228
 
3230
3229
 
3231
3230
 
3232
3231
 
3233
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3232
+ #### [EntitiesReasons](#EntitiesReasons)
3234
3233
 
3235
3234
  | Properties | Type | Nullable | Description |
3236
3235
  | ---------- | ---- | -------- | ----------- |
3237
- | line_number | number | no | |
3238
- | identifier | string | no | |
3236
+ | filters | [string] | no | |
3237
+ | data | [EntityReasonData](#EntityReasonData) | no | |
3239
3238
 
3240
3239
  ---
3241
3240
 
3242
3241
 
3243
3242
 
3244
3243
 
3245
- #### [ProductsDataUpdates](#ProductsDataUpdates)
3244
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3246
3245
 
3247
3246
  | Properties | Type | Nullable | Description |
3248
3247
  | ---------- | ---- | -------- | ----------- |
3249
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3250
- | data | string | no | |
3248
+ | line_number | number | no | |
3249
+ | identifier | string | no | |
3250
+ | quantity | number | no | |
3251
3251
 
3252
3252
  ---
3253
3253
 
3254
3254
 
3255
3255
 
3256
3256
 
3257
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3257
+ #### [ProductsReasonsData](#ProductsReasonsData)
3258
3258
 
3259
3259
  | Properties | Type | Nullable | Description |
3260
3260
  | ---------- | ---- | -------- | ----------- |
3261
- | filters | [string] | no | |
3262
- | data | string | no | |
3261
+ | reason_text | string | no | |
3262
+ | reason_id | number | no | |
3263
3263
 
3264
3264
  ---
3265
3265
 
3266
3266
 
3267
3267
 
3268
3268
 
3269
- #### [DataUpdates](#DataUpdates)
3269
+ #### [ProductsReasons](#ProductsReasons)
3270
3270
 
3271
3271
  | Properties | Type | Nullable | Description |
3272
3272
  | ---------- | ---- | -------- | ----------- |
3273
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3274
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3273
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3274
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3275
3275
 
3276
3276
  ---
3277
3277
 
3278
3278
 
3279
3279
 
3280
3280
 
3281
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3281
+ #### [ReasonsData](#ReasonsData)
3282
3282
 
3283
3283
  | Properties | Type | Nullable | Description |
3284
3284
  | ---------- | ---- | -------- | ----------- |
3285
- | line_number | number | no | |
3286
- | identifier | string | no | |
3287
- | quantity | number | no | |
3285
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3286
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
3288
3287
 
3289
3288
  ---
3290
3289
 
3291
3290
 
3292
3291
 
3293
3292
 
3294
- #### [ProductsReasonsData](#ProductsReasonsData)
3293
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3295
3294
 
3296
3295
  | Properties | Type | Nullable | Description |
3297
3296
  | ---------- | ---- | -------- | ----------- |
3298
- | reason_id | number | no | |
3299
- | reason_text | string | no | |
3297
+ | filters | [string] | no | |
3298
+ | data | string | no | |
3300
3299
 
3301
3300
  ---
3302
3301
 
3303
3302
 
3304
3303
 
3305
3304
 
3306
- #### [ProductsReasons](#ProductsReasons)
3305
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3307
3306
 
3308
3307
  | Properties | Type | Nullable | Description |
3309
3308
  | ---------- | ---- | -------- | ----------- |
3310
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3311
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3309
+ | line_number | number | no | |
3310
+ | identifier | string | no | |
3312
3311
 
3313
3312
  ---
3314
3313
 
3315
3314
 
3316
3315
 
3317
3316
 
3318
- #### [EntityReasonData](#EntityReasonData)
3317
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
3319
3318
 
3320
3319
  | Properties | Type | Nullable | Description |
3321
3320
  | ---------- | ---- | -------- | ----------- |
3322
- | reason_id | number | no | |
3323
- | reason_text | string | no | |
3321
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3322
+ | data | string | no | |
3324
3323
 
3325
3324
  ---
3326
3325
 
3327
3326
 
3328
3327
 
3329
3328
 
3330
- #### [EntitiesReasons](#EntitiesReasons)
3329
+ #### [DataUpdates](#DataUpdates)
3331
3330
 
3332
3331
  | Properties | Type | Nullable | Description |
3333
3332
  | ---------- | ---- | -------- | ----------- |
3334
- | filters | [string] | no | |
3335
- | data | [EntityReasonData](#EntityReasonData) | no | |
3333
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3334
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3336
3335
 
3337
3336
  ---
3338
3337
 
3339
3338
 
3340
3339
 
3341
3340
 
3342
- #### [ReasonsData](#ReasonsData)
3341
+ #### [Products](#Products)
3343
3342
 
3344
3343
  | Properties | Type | Nullable | Description |
3345
3344
  | ---------- | ---- | -------- | ----------- |
3346
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
3347
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3345
+ | line_number | number | no | |
3346
+ | identifier | string | no | |
3347
+ | quantity | number | no | |
3348
3348
 
3349
3349
  ---
3350
3350
 
@@ -3355,10 +3355,10 @@ Successfully updateShipmentStatus!
3355
3355
 
3356
3356
  | Properties | Type | Nullable | Description |
3357
3357
  | ---------- | ---- | -------- | ----------- |
3358
- | products | [[Products](#Products)] | no | |
3359
- | data_updates | [DataUpdates](#DataUpdates) | no | |
3360
- | identifier | string | yes | |
3361
3358
  | reasons | [ReasonsData](#ReasonsData) | no | |
3359
+ | identifier | string | yes | |
3360
+ | data_updates | [DataUpdates](#DataUpdates) | no | |
3361
+ | products | [[Products](#Products)] | no | |
3362
3362
 
3363
3363
  ---
3364
3364
 
@@ -3369,9 +3369,9 @@ Successfully updateShipmentStatus!
3369
3369
 
3370
3370
  | Properties | Type | Nullable | Description |
3371
3371
  | ---------- | ---- | -------- | ----------- |
3372
- | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3373
- | exclude_bags_next_state | string | no | |
3374
3372
  | status | string | no | |
3373
+ | exclude_bags_next_state | string | no | |
3374
+ | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3375
3375
 
3376
3376
  ---
3377
3377
 
@@ -3382,11 +3382,11 @@ Successfully updateShipmentStatus!
3382
3382
 
3383
3383
  | Properties | Type | Nullable | Description |
3384
3384
  | ---------- | ---- | -------- | ----------- |
3385
- | unlock_before_transition | boolean | no | |
3386
- | lock_after_transition | boolean | no | |
3387
- | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3388
3385
  | task | boolean | no | |
3386
+ | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3387
+ | lock_after_transition | boolean | no | |
3389
3388
  | force_transition | boolean | no | |
3389
+ | unlock_before_transition | boolean | no | |
3390
3390
 
3391
3391
  ---
3392
3392
 
@@ -3419,11 +3419,11 @@ Successfully updateShipmentStatus!
3419
3419
 
3420
3420
  | Properties | Type | Nullable | Description |
3421
3421
  | ---------- | ---- | -------- | ----------- |
3422
- | stack_trace | string | no | |
3423
- | exception | string | no | |
3424
3422
  | message | string | no | |
3425
3423
  | status | number | no | |
3424
+ | exception | string | no | |
3426
3425
  | code | string | no | |
3426
+ | stack_trace | string | no | |
3427
3427
 
3428
3428
  ---
3429
3429