@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
@@ -2485,12 +2485,63 @@ Successfully updateShipmentStatus!
2485
2485
 
2486
2486
 
2487
2487
 
2488
+ #### [OrderStatuses](#OrderStatuses)
2489
+
2490
+ | Properties | Type | Nullable | Description |
2491
+ | ---------- | ---- | -------- | ----------- |
2492
+ | value | number | no | |
2493
+ | display | string | no | |
2494
+ | is_selected | boolean | no | |
2495
+
2496
+ ---
2497
+
2498
+
2499
+
2500
+
2501
+ #### [OrderFilters](#OrderFilters)
2502
+
2503
+ | Properties | Type | Nullable | Description |
2504
+ | ---------- | ---- | -------- | ----------- |
2505
+ | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2506
+
2507
+ ---
2508
+
2509
+
2510
+
2511
+
2512
+ #### [BreakupValues](#BreakupValues)
2513
+
2514
+ | Properties | Type | Nullable | Description |
2515
+ | ---------- | ---- | -------- | ----------- |
2516
+ | name | string | no | |
2517
+ | value | number | no | |
2518
+ | display | string | no | |
2519
+
2520
+ ---
2521
+
2522
+
2523
+
2524
+
2525
+ #### [UserInfo](#UserInfo)
2526
+
2527
+ | Properties | Type | Nullable | Description |
2528
+ | ---------- | ---- | -------- | ----------- |
2529
+ | name | string | no | |
2530
+ | email | string | no | |
2531
+ | mobile | string | no | |
2532
+ | gender | string | no | |
2533
+
2534
+ ---
2535
+
2536
+
2537
+
2538
+
2488
2539
  #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2489
2540
 
2490
2541
  | Properties | Type | Nullable | Description |
2491
2542
  | ---------- | ---- | -------- | ----------- |
2492
- | level | string | no | |
2493
2543
  | strategy | string | no | |
2544
+ | level | string | no | |
2494
2545
 
2495
2546
  ---
2496
2547
 
@@ -2501,80 +2552,63 @@ Successfully updateShipmentStatus!
2501
2552
 
2502
2553
  | Properties | Type | Nullable | Description |
2503
2554
  | ---------- | ---- | -------- | ----------- |
2555
+ | seller_id | number | no | |
2504
2556
  | item_id | number | no | |
2557
+ | quantity | number | no | |
2505
2558
  | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2506
- | store_id | number | no | |
2507
2559
  | item_size | string | no | |
2508
- | quantity | number | no | |
2509
- | seller_id | number | no | |
2560
+ | store_id | number | no | |
2510
2561
 
2511
2562
  ---
2512
2563
 
2513
2564
 
2514
2565
 
2515
2566
 
2516
- #### [BreakupValues](#BreakupValues)
2567
+ #### [TimeStampData](#TimeStampData)
2517
2568
 
2518
2569
  | Properties | Type | Nullable | Description |
2519
2570
  | ---------- | ---- | -------- | ----------- |
2520
- | value | number | no | |
2521
- | name | string | no | |
2522
- | display | string | no | |
2571
+ | min | string | no | |
2572
+ | max | string | no | |
2523
2573
 
2524
2574
  ---
2525
2575
 
2526
2576
 
2527
2577
 
2528
2578
 
2529
- #### [Invoice](#Invoice)
2579
+ #### [Promise](#Promise)
2530
2580
 
2531
2581
  | Properties | Type | Nullable | Description |
2532
2582
  | ---------- | ---- | -------- | ----------- |
2533
- | invoice_url | string | no | |
2534
- | updated_date | string | no | |
2535
- | label_url | string | no | |
2583
+ | show_promise | boolean | no | |
2584
+ | timestamp | [TimeStampData](#TimeStampData) | no | |
2536
2585
 
2537
2586
  ---
2538
2587
 
2539
2588
 
2540
2589
 
2541
2590
 
2542
- #### [ShipmentStatus](#ShipmentStatus)
2591
+ #### [ShipmentUserInfo](#ShipmentUserInfo)
2543
2592
 
2544
2593
  | Properties | Type | Nullable | Description |
2545
2594
  | ---------- | ---- | -------- | ----------- |
2546
- | title | string | no | |
2547
- | hex_code | string | no | |
2595
+ | first_name | string | no | |
2596
+ | mobile | string | no | |
2597
+ | last_name | string | no | |
2598
+ | gender | string | no | |
2548
2599
 
2549
2600
  ---
2550
2601
 
2551
2602
 
2552
2603
 
2553
2604
 
2554
- #### [DeliveryAddress](#DeliveryAddress)
2605
+ #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2555
2606
 
2556
2607
  | Properties | Type | Nullable | Description |
2557
2608
  | ---------- | ---- | -------- | ----------- |
2558
- | address2 | string | no | |
2559
- | latitude | number | no | |
2560
- | address_category | string | no | |
2561
- | area | string | no | |
2562
- | landmark | string | no | |
2563
- | version | string | no | |
2564
- | address1 | string | no | |
2565
- | city | string | no | |
2566
- | state | string | no | |
2567
- | updated_at | string | no | |
2568
- | address | string | no | |
2569
- | longitude | number | no | |
2570
- | contact_person | string | no | |
2571
- | created_at | string | no | |
2572
- | name | string | no | |
2573
- | phone | string | no | |
2574
- | email | string | no | |
2575
- | address_type | string | no | |
2576
- | country | string | no | |
2577
- | pincode | string | no | |
2609
+ | pieces | number | no | |
2610
+ | total_price | number | no | |
2611
+ | sizes | number | no | |
2578
2612
 
2579
2613
  ---
2580
2614
 
@@ -2585,41 +2619,66 @@ Successfully updateShipmentStatus!
2585
2619
 
2586
2620
  | Properties | Type | Nullable | Description |
2587
2621
  | ---------- | ---- | -------- | ----------- |
2622
+ | logo | string | no | |
2623
+ | payment_mode | string | no | |
2588
2624
  | mode | string | no | |
2589
2625
  | status | string | no | |
2590
- | display_name | string | no | |
2591
2626
  | mop | string | no | |
2592
- | logo | string | no | |
2593
- | payment_mode | string | no | |
2627
+ | display_name | string | no | |
2594
2628
 
2595
2629
  ---
2596
2630
 
2597
2631
 
2598
2632
 
2599
2633
 
2600
- #### [NestedTrackingDetails](#NestedTrackingDetails)
2634
+ #### [ShipmentStatus](#ShipmentStatus)
2601
2635
 
2602
2636
  | Properties | Type | Nullable | Description |
2603
2637
  | ---------- | ---- | -------- | ----------- |
2604
- | is_passed | boolean | no | |
2605
- | status | string | no | |
2606
- | is_current | boolean | no | |
2607
- | time | string | no | |
2638
+ | title | string | no | |
2639
+ | hex_code | string | no | |
2608
2640
 
2609
2641
  ---
2610
2642
 
2611
2643
 
2612
2644
 
2613
2645
 
2614
- #### [TrackingDetails](#TrackingDetails)
2646
+ #### [DeliveryAddress](#DeliveryAddress)
2615
2647
 
2616
2648
  | Properties | Type | Nullable | Description |
2617
2649
  | ---------- | ---- | -------- | ----------- |
2618
- | status | string | no | |
2619
- | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2620
- | is_current | boolean | no | |
2621
- | time | string | no | |
2622
- | is_passed | boolean | 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 | |
2670
+
2671
+ ---
2672
+
2673
+
2674
+
2675
+
2676
+ #### [FulfillingCompany](#FulfillingCompany)
2677
+
2678
+ | Properties | Type | Nullable | Description |
2679
+ | ---------- | ---- | -------- | ----------- |
2680
+ | id | number | no | |
2681
+ | name | string | no | |
2623
2682
 
2624
2683
  ---
2625
2684
 
@@ -2630,10 +2689,10 @@ Successfully updateShipmentStatus!
2630
2689
 
2631
2690
  | Properties | Type | Nullable | Description |
2632
2691
  | ---------- | ---- | -------- | ----------- |
2633
- | status | string | no | |
2692
+ | name | string | no | |
2634
2693
  | journey_type | string | no | |
2635
2694
  | updated_at | string | no | |
2636
- | name | string | no | |
2695
+ | status | string | no | |
2637
2696
 
2638
2697
  ---
2639
2698
 
@@ -2656,14 +2715,44 @@ Successfully updateShipmentStatus!
2656
2715
 
2657
2716
  | Properties | Type | Nullable | Description |
2658
2717
  | ---------- | ---- | -------- | ----------- |
2718
+ | name | string | no | |
2719
+ | seller_identifier | string | no | |
2720
+ | code | string | no | |
2721
+ | slug_key | string | no | |
2659
2722
  | id | number | no | |
2660
2723
  | brand | [ItemBrand](#ItemBrand) | no | |
2661
- | slug_key | string | no | |
2662
2724
  | size | string | no | |
2663
2725
  | image | [string] | no | |
2664
- | name | string | no | |
2665
- | code | string | no | |
2666
- | seller_identifier | string | no | |
2726
+
2727
+ ---
2728
+
2729
+
2730
+
2731
+
2732
+ #### [Prices](#Prices)
2733
+
2734
+ | Properties | Type | Nullable | Description |
2735
+ | ---------- | ---- | -------- | ----------- |
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 | |
2667
2756
 
2668
2757
  ---
2669
2758
 
@@ -2674,10 +2763,10 @@ Successfully updateShipmentStatus!
2674
2763
 
2675
2764
  | Properties | Type | Nullable | Description |
2676
2765
  | ---------- | ---- | -------- | ----------- |
2677
- | parent_item_identifier | string | no | |
2678
2766
  | free_gift_item_details | string | no | |
2679
- | quantity | number | no | |
2680
2767
  | article_id | string | no | |
2768
+ | parent_item_identifier | string | no | |
2769
+ | quantity | number | no | |
2681
2770
 
2682
2771
  ---
2683
2772
 
@@ -2688,12 +2777,12 @@ Successfully updateShipmentStatus!
2688
2777
 
2689
2778
  | Properties | Type | Nullable | Description |
2690
2779
  | ---------- | ---- | -------- | ----------- |
2780
+ | amount | number | no | |
2691
2781
  | promotion_type | string | no | |
2692
- | article_quantity | number | no | |
2693
- | promo_id | string | no | |
2694
2782
  | promotion_name | string | no | |
2695
2783
  | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2696
- | amount | number | no | |
2784
+ | promo_id | string | no | |
2785
+ | article_quantity | number | no | |
2697
2786
  | mrp_promotion | boolean | no | |
2698
2787
 
2699
2788
  ---
@@ -2717,63 +2806,33 @@ Successfully updateShipmentStatus!
2717
2806
 
2718
2807
  | Properties | Type | Nullable | Description |
2719
2808
  | ---------- | ---- | -------- | ----------- |
2720
- | fynd_credits | number | no | |
2721
- | total_units | number | no | |
2722
- | gst_tax_percentage | number | no | |
2723
- | amount_paid_roundoff | number | no | |
2724
- | price_marked | number | no | |
2725
- | brand_calculated_amount | number | no | |
2726
- | cashback | number | no | |
2727
- | transfer_price | number | no | |
2728
- | price_effective | number | no | |
2729
- | delivery_charge | number | no | |
2730
2809
  | discount | number | no | |
2731
- | cod_charges | number | no | |
2732
- | added_to_fynd_cash | boolean | no | |
2733
- | coupon_effective_discount | number | no | |
2734
- | item_name | string | no | |
2810
+ | refund_amount | number | no | |
2735
2811
  | amount_paid | number | no | |
2812
+ | gst_tax_percentage | number | no | |
2813
+ | coupon_effective_discount | number | no | |
2814
+ | total_units | number | no | |
2736
2815
  | value_of_good | number | no | |
2737
- | cashback_applied | number | no | |
2738
- | size | string | no | |
2739
- | refund_amount | number | no | |
2740
- | identifiers | [Identifiers](#Identifiers) | no | |
2741
2816
  | refund_credit | number | no | |
2817
+ | added_to_fynd_cash | boolean | no | |
2742
2818
  | gst_tag | string | no | |
2743
- | hsn_code | string | no | |
2744
- | coupon_value | number | no | |
2745
- | gst_fee | number | no | |
2746
- | promotion_effective_discount | number | no | |
2747
-
2748
- ---
2749
-
2750
-
2751
-
2752
-
2753
- #### [Prices](#Prices)
2754
-
2755
- | Properties | Type | Nullable | Description |
2756
- | ---------- | ---- | -------- | ----------- |
2819
+ | cashback_applied | number | no | |
2757
2820
  | fynd_credits | number | no | |
2758
- | gst_tax_percentage | number | no | |
2759
2821
  | amount_paid_roundoff | number | no | |
2760
- | price_marked | number | no | |
2761
- | cashback | number | no | |
2762
- | transfer_price | number | no | |
2763
- | brand_calculated_amount | number | no | |
2764
- | price_effective | number | no | |
2822
+ | gst_fee | number | no | |
2765
2823
  | delivery_charge | number | no | |
2766
- | discount | number | no | |
2824
+ | promotion_effective_discount | number | no | |
2825
+ | price_effective | number | no | |
2767
2826
  | cod_charges | number | no | |
2768
- | added_to_fynd_cash | boolean | no | |
2769
- | coupon_effective_discount | number | no | |
2770
- | amount_paid | number | no | |
2771
- | value_of_good | number | no | |
2772
- | cashback_applied | number | no | |
2773
- | refund_amount | number | no | |
2774
- | refund_credit | number | no | |
2827
+ | hsn_code | string | no | |
2828
+ | brand_calculated_amount | number | no | |
2829
+ | cashback | number | no | |
2830
+ | item_name | string | no | |
2775
2831
  | coupon_value | number | no | |
2776
- | promotion_effective_discount | number | no | |
2832
+ | price_marked | number | no | |
2833
+ | identifiers | [Identifiers](#Identifiers) | no | |
2834
+ | transfer_price | number | no | |
2835
+ | size | string | no | |
2777
2836
 
2778
2837
  ---
2779
2838
 
@@ -2784,98 +2843,77 @@ Successfully updateShipmentStatus!
2784
2843
 
2785
2844
  | Properties | Type | Nullable | Description |
2786
2845
  | ---------- | ---- | -------- | ----------- |
2787
- | id | number | no | |
2788
- | current_status | [CurrentStatus](#CurrentStatus) | no | |
2789
- | line_number | number | no | |
2790
2846
  | can_return | boolean | no | |
2791
- | parent_promo_bags | string | no | |
2792
- | item | [Item](#Item) | no | |
2847
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
2848
+ | quantity | number | no | |
2793
2849
  | returnable_date | string | no | |
2794
2850
  | delivery_date | string | no | |
2795
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2796
2851
  | seller_identifier | string | no | |
2797
- | can_cancel | boolean | no | |
2798
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2799
- | prices | [Prices](#Prices) | no | |
2800
- | quantity | number | no | |
2801
-
2802
- ---
2803
-
2804
-
2805
-
2806
-
2807
- #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2808
-
2809
- | Properties | Type | Nullable | Description |
2810
- | ---------- | ---- | -------- | ----------- |
2811
- | pieces | number | no | |
2812
- | total_price | number | no | |
2813
- | sizes | number | no | |
2814
-
2815
- ---
2816
-
2817
-
2818
-
2819
-
2820
- #### [FulfillingStore](#FulfillingStore)
2821
-
2822
- | Properties | Type | Nullable | Description |
2823
- | ---------- | ---- | -------- | ----------- |
2824
- | id | number | no | |
2825
- | company_name | string | no | |
2826
- | company_id | number | no | |
2827
- | name | string | no | |
2828
- | code | 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 | |
2829
2860
 
2830
2861
  ---
2831
2862
 
2832
2863
 
2833
2864
 
2834
2865
 
2835
- #### [ShipmentUserInfo](#ShipmentUserInfo)
2866
+ #### [FulfillingStore](#FulfillingStore)
2836
2867
 
2837
2868
  | Properties | Type | Nullable | Description |
2838
2869
  | ---------- | ---- | -------- | ----------- |
2839
- | gender | string | no | |
2840
- | last_name | string | no | |
2841
- | mobile | string | no | |
2842
- | first_name | string | no | |
2870
+ | company_id | number | no | |
2871
+ | name | string | no | |
2872
+ | code | string | no | |
2873
+ | id | number | no | |
2874
+ | company_name | string | no | |
2843
2875
 
2844
2876
  ---
2845
2877
 
2846
2878
 
2847
2879
 
2848
2880
 
2849
- #### [TimeStampData](#TimeStampData)
2881
+ #### [Invoice](#Invoice)
2850
2882
 
2851
2883
  | Properties | Type | Nullable | Description |
2852
2884
  | ---------- | ---- | -------- | ----------- |
2853
- | min | string | no | |
2854
- | max | string | no | |
2885
+ | updated_date | string | no | |
2886
+ | label_url | string | no | |
2887
+ | invoice_url | string | no | |
2855
2888
 
2856
2889
  ---
2857
2890
 
2858
2891
 
2859
2892
 
2860
2893
 
2861
- #### [Promise](#Promise)
2894
+ #### [NestedTrackingDetails](#NestedTrackingDetails)
2862
2895
 
2863
2896
  | Properties | Type | Nullable | Description |
2864
2897
  | ---------- | ---- | -------- | ----------- |
2865
- | show_promise | boolean | no | |
2866
- | timestamp | [TimeStampData](#TimeStampData) | no | |
2898
+ | time | string | no | |
2899
+ | is_passed | boolean | no | |
2900
+ | is_current | boolean | no | |
2901
+ | status | string | no | |
2867
2902
 
2868
2903
  ---
2869
2904
 
2870
2905
 
2871
2906
 
2872
2907
 
2873
- #### [FulfillingCompany](#FulfillingCompany)
2908
+ #### [TrackingDetails](#TrackingDetails)
2874
2909
 
2875
2910
  | Properties | Type | Nullable | Description |
2876
2911
  | ---------- | ---- | -------- | ----------- |
2877
- | id | number | no | |
2878
- | name | 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 | |
2879
2917
 
2880
2918
  ---
2881
2919
 
@@ -2886,55 +2924,41 @@ Successfully updateShipmentStatus!
2886
2924
 
2887
2925
  | Properties | Type | Nullable | Description |
2888
2926
  | ---------- | ---- | -------- | ----------- |
2889
- | invoice | [Invoice](#Invoice) | no | |
2890
- | traking_no | string | no | |
2891
- | delivery_date | string | no | |
2892
2927
  | returnable_date | string | no | |
2893
- | comment | string | no | |
2894
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2895
- | show_download_invoice | boolean | no | |
2928
+ | promise | [Promise](#Promise) | no | |
2929
+ | need_help_url | string | no | |
2930
+ | custom_meta | [string] | no | |
2931
+ | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2932
+ | traking_no | string | no | |
2933
+ | dp_name | string | no | |
2934
+ | size_info | string | no | |
2935
+ | shipment_id | string | no | |
2936
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2896
2937
  | total_bags | number | no | |
2897
- | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2938
+ | delivery_date | string | no | |
2939
+ | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2898
2940
  | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2899
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2900
- | size_info | string | no | |
2901
- | refund_details | string | no | |
2902
- | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2903
- | awb_no | string | no | |
2941
+ | can_cancel | boolean | no | |
2942
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2904
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 | |
2905
2949
  | bags | [[Bags](#Bags)] | no | |
2906
- | shipment_id | string | no | |
2907
- | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2908
- | beneficiary_details | boolean | no | |
2909
- | order_id | string | no | |
2910
- | custom_meta | [string] | no | |
2950
+ | awb_no | string | no | |
2911
2951
  | order_type | string | no | |
2912
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2913
- | track_url | string | no | |
2952
+ | show_track_link | boolean | no | |
2914
2953
  | shipment_created_at | string | no | |
2915
- | need_help_url | string | no | |
2916
- | can_break | string | no | |
2917
- | dp_name | string | no | |
2918
- | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2919
- | can_cancel | boolean | no | |
2954
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2955
+ | invoice | [Invoice](#Invoice) | no | |
2956
+ | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2920
2957
  | prices | [Prices](#Prices) | no | |
2921
- | promise | [Promise](#Promise) | no | |
2922
- | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2923
- | show_track_link | boolean | no | |
2924
-
2925
- ---
2926
-
2927
-
2928
-
2929
-
2930
- #### [UserInfo](#UserInfo)
2931
-
2932
- | Properties | Type | Nullable | Description |
2933
- | ---------- | ---- | -------- | ----------- |
2934
- | email | string | no | |
2935
- | gender | string | no | |
2936
- | name | string | no | |
2937
- | mobile | string | no | |
2958
+ | beneficiary_details | boolean | no | |
2959
+ | order_id | string | no | |
2960
+ | can_break | string | no | |
2961
+ | track_url | string | no | |
2938
2962
 
2939
2963
  ---
2940
2964
 
@@ -2945,12 +2969,12 @@ Successfully updateShipmentStatus!
2945
2969
 
2946
2970
  | Properties | Type | Nullable | Description |
2947
2971
  | ---------- | ---- | -------- | ----------- |
2948
- | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2972
+ | order_created_time | string | no | |
2949
2973
  | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2950
- | shipments | [[Shipments](#Shipments)] | no | |
2951
2974
  | total_shipments_in_order | number | no | |
2952
2975
  | user_info | [UserInfo](#UserInfo) | no | |
2953
- | order_created_time | string | no | |
2976
+ | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2977
+ | shipments | [[Shipments](#Shipments)] | no | |
2954
2978
  | order_id | string | no | |
2955
2979
 
2956
2980
  ---
@@ -2962,35 +2986,11 @@ Successfully updateShipmentStatus!
2962
2986
 
2963
2987
  | Properties | Type | Nullable | Description |
2964
2988
  | ---------- | ---- | -------- | ----------- |
2989
+ | type | string | no | |
2965
2990
  | item_total | number | no | |
2966
- | size | number | no | |
2967
- | has_next | boolean | no | |
2968
2991
  | current | number | no | |
2969
- | type | string | no | |
2970
-
2971
- ---
2972
-
2973
-
2974
-
2975
-
2976
- #### [OrderStatuses](#OrderStatuses)
2977
-
2978
- | Properties | Type | Nullable | Description |
2979
- | ---------- | ---- | -------- | ----------- |
2980
- | value | number | no | |
2981
- | is_selected | boolean | no | |
2982
- | display | string | no | |
2983
-
2984
- ---
2985
-
2986
-
2987
-
2988
-
2989
- #### [OrderFilters](#OrderFilters)
2990
-
2991
- | Properties | Type | Nullable | Description |
2992
- | ---------- | ---- | -------- | ----------- |
2993
- | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2992
+ | has_next | boolean | no | |
2993
+ | size | number | no | |
2994
2994
 
2995
2995
  ---
2996
2996
 
@@ -3001,9 +3001,9 @@ Successfully updateShipmentStatus!
3001
3001
 
3002
3002
  | Properties | Type | Nullable | Description |
3003
3003
  | ---------- | ---- | -------- | ----------- |
3004
+ | filters | [OrderFilters](#OrderFilters) | no | |
3004
3005
  | items | [[OrderSchema](#OrderSchema)] | no | |
3005
3006
  | page | [OrderPage](#OrderPage) | no | |
3006
- | filters | [OrderFilters](#OrderFilters) | no | |
3007
3007
 
3008
3008
  ---
3009
3009
 
@@ -3049,9 +3049,9 @@ Successfully updateShipmentStatus!
3049
3049
  | Properties | Type | Nullable | Description |
3050
3050
  | ---------- | ---- | -------- | ----------- |
3051
3051
  | success | boolean | yes | |
3052
- | shipment_id | string | yes | |
3053
- | presigned_url | string | yes | |
3054
3052
  | presigned_type | string | yes | |
3053
+ | presigned_url | string | yes | |
3054
+ | shipment_id | string | yes | |
3055
3055
 
3056
3056
  ---
3057
3057
 
@@ -3062,14 +3062,14 @@ Successfully updateShipmentStatus!
3062
3062
 
3063
3063
  | Properties | Type | Nullable | Description |
3064
3064
  | ---------- | ---- | -------- | ----------- |
3065
- | updated_time | string | no | |
3065
+ | shipment_type | string | no | |
3066
+ | last_location_recieved_at | string | no | |
3067
+ | status | string | no | |
3066
3068
  | awb | string | no | |
3067
- | account_name | string | no | |
3068
3069
  | updated_at | string | no | |
3070
+ | updated_time | string | no | |
3071
+ | account_name | string | no | |
3069
3072
  | reason | string | no | |
3070
- | status | string | no | |
3071
- | shipment_type | string | no | |
3072
- | last_location_recieved_at | string | no | |
3073
3073
 
3074
3074
  ---
3075
3075
 
@@ -3091,11 +3091,11 @@ Successfully updateShipmentStatus!
3091
3091
 
3092
3092
  | Properties | Type | Nullable | Description |
3093
3093
  | ---------- | ---- | -------- | ----------- |
3094
- | name | string | no | |
3094
+ | country | string | no | |
3095
3095
  | shipment_id | string | no | |
3096
+ | name | string | no | |
3096
3097
  | phone | string | no | |
3097
3098
  | order_id | string | no | |
3098
- | country | string | no | |
3099
3099
 
3100
3100
  ---
3101
3101
 
@@ -3106,10 +3106,10 @@ Successfully updateShipmentStatus!
3106
3106
 
3107
3107
  | Properties | Type | Nullable | Description |
3108
3108
  | ---------- | ---- | -------- | ----------- |
3109
+ | request_id | string | no | |
3109
3110
  | success | boolean | no | |
3110
3111
  | resend_timer | number | no | |
3111
3112
  | message | string | no | |
3112
- | request_id | string | no | |
3113
3113
 
3114
3114
  ---
3115
3115
 
@@ -3120,8 +3120,8 @@ Successfully updateShipmentStatus!
3120
3120
 
3121
3121
  | Properties | Type | Nullable | Description |
3122
3122
  | ---------- | ---- | -------- | ----------- |
3123
- | otp_code | string | no | |
3124
3123
  | request_id | string | no | |
3124
+ | otp_code | string | no | |
3125
3125
 
3126
3126
  ---
3127
3127
 
@@ -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
- | display_name | string | no | |
3158
- | id | number | 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 | |
3169
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
3170
3170
  | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3171
3171
  | display_name | string | no | |
3172
+ | id | number | no | |
3172
3173
  | reasons | [[BagReasons](#BagReasons)] | no | |
3173
3174
  | qc_type | [string] | no | |
3174
- | question_set | [[QuestionSet](#QuestionSet)] | 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
 
@@ -3194,11 +3194,11 @@ Successfully updateShipmentStatus!
3194
3194
 
3195
3195
  | Properties | Type | Nullable | Description |
3196
3196
  | ---------- | ---- | -------- | ----------- |
3197
- | show_text_area | boolean | no | |
3198
- | reason_id | number | no | |
3199
- | flow | string | no | |
3200
3197
  | reason_text | string | no | |
3198
+ | flow | string | no | |
3201
3199
  | priority | number | no | |
3200
+ | show_text_area | boolean | no | |
3201
+ | reason_id | number | no | |
3202
3202
  | feedback_type | string | no | |
3203
3203
 
3204
3204
  ---
@@ -3217,61 +3217,61 @@ Successfully updateShipmentStatus!
3217
3217
 
3218
3218
 
3219
3219
 
3220
- #### [ProductsReasonsData](#ProductsReasonsData)
3220
+ #### [EntityReasonData](#EntityReasonData)
3221
3221
 
3222
3222
  | Properties | Type | Nullable | Description |
3223
3223
  | ---------- | ---- | -------- | ----------- |
3224
- | reason_id | number | no | |
3225
3224
  | reason_text | string | no | |
3225
+ | reason_id | number | no | |
3226
3226
 
3227
3227
  ---
3228
3228
 
3229
3229
 
3230
3230
 
3231
3231
 
3232
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3232
+ #### [EntitiesReasons](#EntitiesReasons)
3233
3233
 
3234
3234
  | Properties | Type | Nullable | Description |
3235
3235
  | ---------- | ---- | -------- | ----------- |
3236
- | quantity | number | no | |
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
- #### [ProductsReasons](#ProductsReasons)
3244
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3246
3245
 
3247
3246
  | Properties | Type | Nullable | Description |
3248
3247
  | ---------- | ---- | -------- | ----------- |
3249
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3250
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | 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
- #### [EntityReasonData](#EntityReasonData)
3257
+ #### [ProductsReasonsData](#ProductsReasonsData)
3258
3258
 
3259
3259
  | Properties | Type | Nullable | Description |
3260
3260
  | ---------- | ---- | -------- | ----------- |
3261
- | reason_id | number | no | |
3262
3261
  | reason_text | string | no | |
3262
+ | reason_id | number | no | |
3263
3263
 
3264
3264
  ---
3265
3265
 
3266
3266
 
3267
3267
 
3268
3268
 
3269
- #### [EntitiesReasons](#EntitiesReasons)
3269
+ #### [ProductsReasons](#ProductsReasons)
3270
3270
 
3271
3271
  | Properties | Type | Nullable | Description |
3272
3272
  | ---------- | ---- | -------- | ----------- |
3273
- | data | [EntityReasonData](#EntityReasonData) | no | |
3274
- | filters | [string] | no | |
3273
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3274
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3275
3275
 
3276
3276
  ---
3277
3277
 
@@ -3282,21 +3282,20 @@ Successfully updateShipmentStatus!
3282
3282
 
3283
3283
  | Properties | Type | Nullable | Description |
3284
3284
  | ---------- | ---- | -------- | ----------- |
3285
- | products | [[ProductsReasons](#ProductsReasons)] | no | |
3286
3285
  | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3286
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
3287
3287
 
3288
3288
  ---
3289
3289
 
3290
3290
 
3291
3291
 
3292
3292
 
3293
- #### [Products](#Products)
3293
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3294
3294
 
3295
3295
  | Properties | Type | Nullable | Description |
3296
3296
  | ---------- | ---- | -------- | ----------- |
3297
- | quantity | number | no | |
3298
- | line_number | number | no | |
3299
- | identifier | string | no | |
3297
+ | filters | [string] | no | |
3298
+ | data | string | no | |
3300
3299
 
3301
3300
  ---
3302
3301
 
@@ -3319,32 +3318,33 @@ Successfully updateShipmentStatus!
3319
3318
 
3320
3319
  | Properties | Type | Nullable | Description |
3321
3320
  | ---------- | ---- | -------- | ----------- |
3322
- | data | string | no | |
3323
3321
  | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3322
+ | data | string | no | |
3324
3323
 
3325
3324
  ---
3326
3325
 
3327
3326
 
3328
3327
 
3329
3328
 
3330
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3329
+ #### [DataUpdates](#DataUpdates)
3331
3330
 
3332
3331
  | Properties | Type | Nullable | Description |
3333
3332
  | ---------- | ---- | -------- | ----------- |
3334
- | data | string | no | |
3335
- | filters | [string] | no | |
3333
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3334
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3336
3335
 
3337
3336
  ---
3338
3337
 
3339
3338
 
3340
3339
 
3341
3340
 
3342
- #### [DataUpdates](#DataUpdates)
3341
+ #### [Products](#Products)
3343
3342
 
3344
3343
  | Properties | Type | Nullable | Description |
3345
3344
  | ---------- | ---- | -------- | ----------- |
3346
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3347
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3345
+ | line_number | number | no | |
3346
+ | identifier | string | no | |
3347
+ | quantity | number | no | |
3348
3348
 
3349
3349
  ---
3350
3350
 
@@ -3356,9 +3356,9 @@ Successfully updateShipmentStatus!
3356
3356
  | Properties | Type | Nullable | Description |
3357
3357
  | ---------- | ---- | -------- | ----------- |
3358
3358
  | reasons | [ReasonsData](#ReasonsData) | no | |
3359
- | products | [[Products](#Products)] | no | |
3360
- | data_updates | [DataUpdates](#DataUpdates) | no | |
3361
3359
  | identifier | string | yes | |
3360
+ | data_updates | [DataUpdates](#DataUpdates) | no | |
3361
+ | products | [[Products](#Products)] | no | |
3362
3362
 
3363
3363
  ---
3364
3364
 
@@ -3370,8 +3370,8 @@ Successfully updateShipmentStatus!
3370
3370
  | Properties | Type | Nullable | Description |
3371
3371
  | ---------- | ---- | -------- | ----------- |
3372
3372
  | status | string | no | |
3373
- | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3374
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
- | force_transition | boolean | no | |
3386
3385
  | task | boolean | no | |
3386
+ | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3387
3387
  | lock_after_transition | boolean | no | |
3388
+ | force_transition | boolean | no | |
3388
3389
  | unlock_before_transition | boolean | no | |
3389
- | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3390
3390
 
3391
3391
  ---
3392
3392
 
@@ -3419,10 +3419,10 @@ Successfully updateShipmentStatus!
3419
3419
 
3420
3420
  | Properties | Type | Nullable | Description |
3421
3421
  | ---------- | ---- | -------- | ----------- |
3422
- | exception | string | no | |
3423
- | code | string | no | |
3424
3422
  | message | string | no | |
3425
3423
  | status | number | no | |
3424
+ | exception | string | no | |
3425
+ | code | string | no | |
3426
3426
  | stack_trace | string | no | |
3427
3427
 
3428
3428
  ---