@gofynd/fdk-client-javascript 0.1.37 → 1.0.1

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