@gofynd/fdk-client-javascript 0.1.35 → 0.1.37

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 (118) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +272 -249
  3. package/documentation/application/CATALOG.md +417 -413
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +427 -101
  11. package/documentation/application/ORDER.md +292 -288
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +309 -286
  14. package/documentation/application/README.md +1 -1
  15. package/documentation/application/REWARDS.md +153 -160
  16. package/documentation/application/SHARE.md +4 -0
  17. package/documentation/application/THEME.md +4 -0
  18. package/documentation/application/USER.md +4 -0
  19. package/documentation/platform/ANALYTICS.md +4 -0
  20. package/documentation/platform/AUDITTRAIL.md +6 -2
  21. package/documentation/platform/BILLING.md +4 -0
  22. package/documentation/platform/CART.md +476 -459
  23. package/documentation/platform/CATALOG.md +4138 -2968
  24. package/documentation/platform/COMMON.md +4 -0
  25. package/documentation/platform/COMMUNICATION.md +4 -0
  26. package/documentation/platform/COMPANYPROFILE.md +258 -206
  27. package/documentation/platform/CONFIGURATION.md +4 -0
  28. package/documentation/platform/CONTENT.md +8 -21
  29. package/documentation/platform/DISCOUNT.md +4 -0
  30. package/documentation/platform/FILESTORAGE.md +85 -0
  31. package/documentation/platform/INVENTORY.md +4 -0
  32. package/documentation/platform/LEAD.md +6 -2
  33. package/documentation/platform/ORDER.md +6298 -1448
  34. package/documentation/platform/PARTNER.md +12 -8
  35. package/documentation/platform/PAYMENT.md +107 -103
  36. package/documentation/platform/README.md +2 -2
  37. package/documentation/platform/REWARDS.md +219 -152
  38. package/documentation/platform/SHARE.md +4 -0
  39. package/documentation/platform/THEME.md +4 -0
  40. package/documentation/platform/USER.md +4 -0
  41. package/documentation/platform/WEBHOOK.md +4 -0
  42. package/documentation/public/CONFIGURATION.md +4 -0
  43. package/documentation/public/INVENTORY.md +4 -0
  44. package/documentation/public/WEBHOOK.md +4 -0
  45. package/package.json +2 -2
  46. package/sdk/application/ApplicationAPIClient.js +3 -0
  47. package/sdk/application/ApplicationClient.d.ts +1 -0
  48. package/sdk/application/ApplicationClient.js +11 -1
  49. package/sdk/application/ApplicationConfig.d.ts +1 -0
  50. package/sdk/application/ApplicationConfig.js +1 -0
  51. package/sdk/application/ApplicationModels.d.ts +94 -85
  52. package/sdk/application/ApplicationModels.js +1909 -1792
  53. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  54. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  55. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  56. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  57. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  59. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  60. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  61. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  62. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  63. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  64. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  65. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  66. package/sdk/application/client/OrderApplicationClient.js +1 -1
  67. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  68. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  69. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  70. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  71. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  72. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  73. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  74. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  75. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  76. package/sdk/application/models/CatalogValidator.js +2 -2
  77. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  78. package/sdk/application/models/LogisticValidator.js +11 -6
  79. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  80. package/sdk/application/models/PaymentValidator.js +12 -0
  81. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  82. package/sdk/application/models/RewardsValidator.js +12 -12
  83. package/sdk/common/AxiosHelper.js +1 -1
  84. package/sdk/common/Constant.d.ts +9 -0
  85. package/sdk/common/Constant.js +11 -0
  86. package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
  87. package/sdk/platform/PlatformApplicationClient.js +4377 -3635
  88. package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
  89. package/sdk/platform/PlatformApplicationModels.js +5530 -4134
  90. package/sdk/platform/PlatformClient.d.ts +3495 -2780
  91. package/sdk/platform/PlatformClient.js +3985 -3108
  92. package/sdk/platform/PlatformModels.d.ts +354 -273
  93. package/sdk/platform/PlatformModels.js +5635 -4211
  94. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  95. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  96. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  97. package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
  98. package/sdk/platform/client/CatalogPlatformClient.js +473 -295
  99. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  100. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  101. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  102. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  103. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  104. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  105. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  106. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  107. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  108. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  109. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  110. package/sdk/platform/models/CatalogValidator.d.ts +26 -22
  111. package/sdk/platform/models/CatalogValidator.js +109 -72
  112. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  113. package/sdk/platform/models/OrderValidator.js +312 -51
  114. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  115. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  116. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  117. package/tests/common/schema/action-url.json +15 -0
  118. package/tests/common/schema/url-action.json +16 -0
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Application docs](./README.md)
6
7
 
7
8
  ## Order Methods
8
9
  Handles all Application order and shipment api(s)
10
+
9
11
  * [getOrders](#getorders)
10
12
  * [getOrderById](#getorderbyid)
11
13
  * [getPosOrderById](#getposorderbyid)
@@ -24,6 +26,8 @@ Handles all Application order and shipment api(s)
24
26
  ## Methods with example and description
25
27
 
26
28
 
29
+
30
+
27
31
  ### getOrders
28
32
  Get all orders
29
33
 
@@ -2481,96 +2485,96 @@ Successfully updateShipmentStatus!
2481
2485
 
2482
2486
 
2483
2487
 
2484
- #### [OrderPage](#OrderPage)
2488
+ #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2485
2489
 
2486
2490
  | Properties | Type | Nullable | Description |
2487
2491
  | ---------- | ---- | -------- | ----------- |
2488
- | item_total | number | no | |
2489
- | has_next | boolean | no | |
2490
- | current | number | no | |
2491
- | type | string | no | |
2492
- | size | number | no | |
2492
+ | level | string | no | |
2493
+ | strategy | string | no | |
2493
2494
 
2494
2495
  ---
2495
2496
 
2496
2497
 
2497
2498
 
2498
2499
 
2499
- #### [OrderStatuses](#OrderStatuses)
2500
+ #### [BagsForReorder](#BagsForReorder)
2500
2501
 
2501
2502
  | Properties | Type | Nullable | Description |
2502
2503
  | ---------- | ---- | -------- | ----------- |
2503
- | display | string | no | |
2504
- | is_selected | boolean | no | |
2505
- | value | number | no | |
2504
+ | item_id | number | no | |
2505
+ | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2506
+ | store_id | number | no | |
2507
+ | item_size | string | no | |
2508
+ | quantity | number | no | |
2509
+ | seller_id | number | no | |
2506
2510
 
2507
2511
  ---
2508
2512
 
2509
2513
 
2510
2514
 
2511
2515
 
2512
- #### [OrderFilters](#OrderFilters)
2516
+ #### [BreakupValues](#BreakupValues)
2513
2517
 
2514
2518
  | Properties | Type | Nullable | Description |
2515
2519
  | ---------- | ---- | -------- | ----------- |
2516
- | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2520
+ | value | number | no | |
2521
+ | name | string | no | |
2522
+ | display | string | no | |
2517
2523
 
2518
2524
  ---
2519
2525
 
2520
2526
 
2521
2527
 
2522
2528
 
2523
- #### [UserInfo](#UserInfo)
2529
+ #### [Invoice](#Invoice)
2524
2530
 
2525
2531
  | Properties | Type | Nullable | Description |
2526
2532
  | ---------- | ---- | -------- | ----------- |
2527
- | gender | string | no | |
2528
- | name | string | no | |
2529
- | mobile | string | no | |
2530
- | email | string | no | |
2533
+ | invoice_url | string | no | |
2534
+ | updated_date | string | no | |
2535
+ | label_url | string | no | |
2531
2536
 
2532
2537
  ---
2533
2538
 
2534
2539
 
2535
2540
 
2536
2541
 
2537
- #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2542
+ #### [ShipmentStatus](#ShipmentStatus)
2538
2543
 
2539
2544
  | Properties | Type | Nullable | Description |
2540
2545
  | ---------- | ---- | -------- | ----------- |
2541
- | sizes | number | no | |
2542
- | pieces | number | no | |
2543
- | total_price | number | no | |
2546
+ | title | string | no | |
2547
+ | hex_code | string | no | |
2544
2548
 
2545
2549
  ---
2546
2550
 
2547
2551
 
2548
2552
 
2549
2553
 
2550
- #### [Prices](#Prices)
2554
+ #### [DeliveryAddress](#DeliveryAddress)
2551
2555
 
2552
2556
  | Properties | Type | Nullable | Description |
2553
2557
  | ---------- | ---- | -------- | ----------- |
2554
- | price_marked | number | no | |
2555
- | cod_charges | number | no | |
2556
- | added_to_fynd_cash | boolean | no | |
2557
- | refund_amount | number | no | |
2558
- | price_effective | number | no | |
2559
- | value_of_good | number | no | |
2560
- | coupon_value | number | no | |
2561
- | promotion_effective_discount | number | no | |
2562
- | amount_paid_roundoff | number | no | |
2563
- | coupon_effective_discount | number | no | |
2564
- | brand_calculated_amount | number | no | |
2565
- | amount_paid | number | no | |
2566
- | fynd_credits | number | no | |
2567
- | cashback_applied | number | no | |
2568
- | delivery_charge | number | no | |
2569
- | cashback | number | no | |
2570
- | discount | number | no | |
2571
- | gst_tax_percentage | number | no | |
2572
- | transfer_price | number | no | |
2573
- | refund_credit | number | no | |
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 | |
2574
2578
 
2575
2579
  ---
2576
2580
 
@@ -2581,11 +2585,11 @@ Successfully updateShipmentStatus!
2581
2585
 
2582
2586
  | Properties | Type | Nullable | Description |
2583
2587
  | ---------- | ---- | -------- | ----------- |
2588
+ | mode | string | no | |
2589
+ | status | string | no | |
2584
2590
  | display_name | string | no | |
2585
2591
  | mop | string | no | |
2586
- | mode | string | no | |
2587
2592
  | logo | string | no | |
2588
- | status | string | no | |
2589
2593
  | payment_mode | string | no | |
2590
2594
 
2591
2595
  ---
@@ -2593,14 +2597,73 @@ Successfully updateShipmentStatus!
2593
2597
 
2594
2598
 
2595
2599
 
2600
+ #### [NestedTrackingDetails](#NestedTrackingDetails)
2601
+
2602
+ | Properties | Type | Nullable | Description |
2603
+ | ---------- | ---- | -------- | ----------- |
2604
+ | is_passed | boolean | no | |
2605
+ | status | string | no | |
2606
+ | is_current | boolean | no | |
2607
+ | time | string | no | |
2608
+
2609
+ ---
2610
+
2611
+
2612
+
2613
+
2614
+ #### [TrackingDetails](#TrackingDetails)
2615
+
2616
+ | Properties | Type | Nullable | Description |
2617
+ | ---------- | ---- | -------- | ----------- |
2618
+ | status | string | no | |
2619
+ | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2620
+ | is_current | boolean | no | |
2621
+ | time | string | no | |
2622
+ | is_passed | boolean | no | |
2623
+
2624
+ ---
2625
+
2626
+
2627
+
2628
+
2596
2629
  #### [CurrentStatus](#CurrentStatus)
2597
2630
 
2598
2631
  | Properties | Type | Nullable | Description |
2599
2632
  | ---------- | ---- | -------- | ----------- |
2600
2633
  | status | string | no | |
2601
- | name | string | no | |
2602
- | updated_at | string | no | |
2603
2634
  | journey_type | string | no | |
2635
+ | updated_at | string | no | |
2636
+ | name | string | no | |
2637
+
2638
+ ---
2639
+
2640
+
2641
+
2642
+
2643
+ #### [ItemBrand](#ItemBrand)
2644
+
2645
+ | Properties | Type | Nullable | Description |
2646
+ | ---------- | ---- | -------- | ----------- |
2647
+ | name | string | no | |
2648
+ | logo | string | no | |
2649
+
2650
+ ---
2651
+
2652
+
2653
+
2654
+
2655
+ #### [Item](#Item)
2656
+
2657
+ | Properties | Type | Nullable | Description |
2658
+ | ---------- | ---- | -------- | ----------- |
2659
+ | id | number | no | |
2660
+ | brand | [ItemBrand](#ItemBrand) | no | |
2661
+ | slug_key | string | no | |
2662
+ | size | string | no | |
2663
+ | image | [string] | no | |
2664
+ | name | string | no | |
2665
+ | code | string | no | |
2666
+ | seller_identifier | string | no | |
2604
2667
 
2605
2668
  ---
2606
2669
 
@@ -2611,10 +2674,10 @@ Successfully updateShipmentStatus!
2611
2674
 
2612
2675
  | Properties | Type | Nullable | Description |
2613
2676
  | ---------- | ---- | -------- | ----------- |
2677
+ | parent_item_identifier | string | no | |
2614
2678
  | free_gift_item_details | string | no | |
2615
- | article_id | string | no | |
2616
2679
  | quantity | number | no | |
2617
- | parent_item_identifier | string | no | |
2680
+ | article_id | string | no | |
2618
2681
 
2619
2682
  ---
2620
2683
 
@@ -2625,13 +2688,13 @@ Successfully updateShipmentStatus!
2625
2688
 
2626
2689
  | Properties | Type | Nullable | Description |
2627
2690
  | ---------- | ---- | -------- | ----------- |
2628
- | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2629
- | article_quantity | number | no | |
2630
2691
  | promotion_type | string | no | |
2631
- | amount | number | no | |
2632
- | mrp_promotion | boolean | no | |
2692
+ | article_quantity | number | no | |
2633
2693
  | promo_id | string | no | |
2634
2694
  | promotion_name | string | no | |
2695
+ | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2696
+ | amount | number | no | |
2697
+ | mrp_promotion | boolean | no | |
2635
2698
 
2636
2699
  ---
2637
2700
 
@@ -2654,87 +2717,100 @@ Successfully updateShipmentStatus!
2654
2717
 
2655
2718
  | Properties | Type | Nullable | Description |
2656
2719
  | ---------- | ---- | -------- | ----------- |
2720
+ | fynd_credits | number | no | |
2721
+ | total_units | number | no | |
2722
+ | gst_tax_percentage | number | no | |
2723
+ | amount_paid_roundoff | number | no | |
2657
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
+ | discount | number | no | |
2658
2731
  | cod_charges | number | no | |
2659
- | size | string | no | |
2660
2732
  | added_to_fynd_cash | boolean | no | |
2661
- | refund_amount | number | no | |
2662
- | price_effective | number | no | |
2663
- | value_of_good | number | no | |
2664
- | coupon_value | number | no | |
2665
- | gst_tag | string | no | |
2666
- | promotion_effective_discount | number | no | |
2667
- | amount_paid_roundoff | number | no | |
2668
2733
  | coupon_effective_discount | number | no | |
2669
- | brand_calculated_amount | number | no | |
2734
+ | item_name | string | no | |
2670
2735
  | amount_paid | number | no | |
2671
- | fynd_credits | number | no | |
2736
+ | value_of_good | number | no | |
2672
2737
  | cashback_applied | number | no | |
2673
- | gst_fee | number | no | |
2674
- | delivery_charge | number | no | |
2675
- | cashback | number | no | |
2676
- | discount | number | no | |
2677
- | item_name | string | no | |
2678
- | total_units | number | no | |
2679
- | hsn_code | string | no | |
2680
- | gst_tax_percentage | number | no | |
2681
- | transfer_price | number | no | |
2682
- | refund_credit | number | no | |
2738
+ | size | string | no | |
2739
+ | refund_amount | number | no | |
2683
2740
  | identifiers | [Identifiers](#Identifiers) | no | |
2741
+ | 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 | |
2684
2747
 
2685
2748
  ---
2686
2749
 
2687
2750
 
2688
2751
 
2689
2752
 
2690
- #### [ItemBrand](#ItemBrand)
2753
+ #### [Prices](#Prices)
2691
2754
 
2692
2755
  | Properties | Type | Nullable | Description |
2693
2756
  | ---------- | ---- | -------- | ----------- |
2694
- | name | string | no | |
2695
- | logo | string | no | |
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
+ | price_effective | number | no | |
2765
+ | delivery_charge | number | no | |
2766
+ | discount | number | no | |
2767
+ | 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 | |
2775
+ | coupon_value | number | no | |
2776
+ | promotion_effective_discount | number | no | |
2696
2777
 
2697
2778
  ---
2698
2779
 
2699
2780
 
2700
2781
 
2701
2782
 
2702
- #### [Item](#Item)
2783
+ #### [Bags](#Bags)
2703
2784
 
2704
2785
  | Properties | Type | Nullable | Description |
2705
2786
  | ---------- | ---- | -------- | ----------- |
2706
- | name | string | no | |
2707
- | seller_identifier | string | no | |
2708
- | code | string | no | |
2709
2787
  | id | number | no | |
2710
- | size | string | no | |
2711
- | slug_key | string | no | |
2712
- | image | [string] | no | |
2713
- | brand | [ItemBrand](#ItemBrand) | no | |
2788
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
2789
+ | line_number | number | no | |
2790
+ | can_return | boolean | no | |
2791
+ | parent_promo_bags | string | no | |
2792
+ | item | [Item](#Item) | no | |
2793
+ | returnable_date | string | no | |
2794
+ | delivery_date | string | no | |
2795
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2796
+ | seller_identifier | string | no | |
2797
+ | can_cancel | boolean | no | |
2798
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2799
+ | prices | [Prices](#Prices) | no | |
2800
+ | quantity | number | no | |
2714
2801
 
2715
2802
  ---
2716
2803
 
2717
2804
 
2718
2805
 
2719
2806
 
2720
- #### [Bags](#Bags)
2807
+ #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2721
2808
 
2722
2809
  | Properties | Type | Nullable | Description |
2723
2810
  | ---------- | ---- | -------- | ----------- |
2724
- | can_cancel | boolean | no | |
2725
- | line_number | number | no | |
2726
- | current_status | [CurrentStatus](#CurrentStatus) | no | |
2727
- | quantity | number | no | |
2728
- | can_return | boolean | no | |
2729
- | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2730
- | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2731
- | seller_identifier | string | no | |
2732
- | prices | [Prices](#Prices) | no | |
2733
- | id | number | no | |
2734
- | delivery_date | string | no | |
2735
- | item | [Item](#Item) | no | |
2736
- | parent_promo_bags | string | no | |
2737
- | returnable_date | string | no | |
2811
+ | pieces | number | no | |
2812
+ | total_price | number | no | |
2813
+ | sizes | number | no | |
2738
2814
 
2739
2815
  ---
2740
2816
 
@@ -2745,54 +2821,11 @@ Successfully updateShipmentStatus!
2745
2821
 
2746
2822
  | Properties | Type | Nullable | Description |
2747
2823
  | ---------- | ---- | -------- | ----------- |
2748
- | name | string | no | |
2749
- | code | string | no | |
2750
2824
  | id | number | no | |
2751
2825
  | company_name | string | no | |
2752
2826
  | company_id | number | no | |
2753
-
2754
- ---
2755
-
2756
-
2757
-
2758
-
2759
- #### [BreakupValues](#BreakupValues)
2760
-
2761
- | Properties | Type | Nullable | Description |
2762
- | ---------- | ---- | -------- | ----------- |
2763
- | value | number | no | |
2764
- | display | string | no | |
2765
2827
  | name | string | no | |
2766
-
2767
- ---
2768
-
2769
-
2770
-
2771
-
2772
- #### [DeliveryAddress](#DeliveryAddress)
2773
-
2774
- | Properties | Type | Nullable | Description |
2775
- | ---------- | ---- | -------- | ----------- |
2776
- | address2 | string | no | |
2777
- | address_type | string | no | |
2778
- | email | string | no | |
2779
- | contact_person | string | no | |
2780
- | latitude | number | no | |
2781
- | area | string | no | |
2782
- | created_at | string | no | |
2783
- | country | string | no | |
2784
- | name | string | no | |
2785
- | longitude | number | no | |
2786
- | version | string | no | |
2787
- | updated_at | string | no | |
2788
- | address | string | no | |
2789
- | address1 | string | no | |
2790
- | phone | string | no | |
2791
- | address_category | string | no | |
2792
- | state | string | no | |
2793
- | pincode | string | no | |
2794
- | city | string | no | |
2795
- | landmark | string | no | |
2828
+ | code | string | no | |
2796
2829
 
2797
2830
  ---
2798
2831
 
@@ -2813,180 +2846,151 @@ Successfully updateShipmentStatus!
2813
2846
 
2814
2847
 
2815
2848
 
2816
- #### [FulfillingCompany](#FulfillingCompany)
2817
-
2818
- | Properties | Type | Nullable | Description |
2819
- | ---------- | ---- | -------- | ----------- |
2820
- | name | string | no | |
2821
- | id | number | no | |
2822
-
2823
- ---
2824
-
2825
-
2826
-
2827
-
2828
- #### [ShipmentStatus](#ShipmentStatus)
2829
-
2830
- | Properties | Type | Nullable | Description |
2831
- | ---------- | ---- | -------- | ----------- |
2832
- | title | string | no | |
2833
- | hex_code | string | no | |
2834
-
2835
- ---
2836
-
2837
-
2838
-
2839
-
2840
- #### [NestedTrackingDetails](#NestedTrackingDetails)
2849
+ #### [TimeStampData](#TimeStampData)
2841
2850
 
2842
2851
  | Properties | Type | Nullable | Description |
2843
2852
  | ---------- | ---- | -------- | ----------- |
2844
- | status | string | no | |
2845
- | time | string | no | |
2846
- | is_current | boolean | no | |
2847
- | is_passed | boolean | no | |
2853
+ | min | string | no | |
2854
+ | max | string | no | |
2848
2855
 
2849
2856
  ---
2850
2857
 
2851
2858
 
2852
2859
 
2853
2860
 
2854
- #### [TrackingDetails](#TrackingDetails)
2861
+ #### [Promise](#Promise)
2855
2862
 
2856
2863
  | Properties | Type | Nullable | Description |
2857
2864
  | ---------- | ---- | -------- | ----------- |
2858
- | time | string | no | |
2859
- | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2860
- | status | string | no | |
2861
- | is_passed | boolean | no | |
2862
- | is_current | boolean | no | |
2865
+ | show_promise | boolean | no | |
2866
+ | timestamp | [TimeStampData](#TimeStampData) | no | |
2863
2867
 
2864
2868
  ---
2865
2869
 
2866
2870
 
2867
2871
 
2868
2872
 
2869
- #### [TimeStampData](#TimeStampData)
2873
+ #### [FulfillingCompany](#FulfillingCompany)
2870
2874
 
2871
2875
  | Properties | Type | Nullable | Description |
2872
2876
  | ---------- | ---- | -------- | ----------- |
2873
- | min | string | no | |
2874
- | max | string | no | |
2877
+ | id | number | no | |
2878
+ | name | string | no | |
2875
2879
 
2876
2880
  ---
2877
2881
 
2878
2882
 
2879
2883
 
2880
2884
 
2881
- #### [Promise](#Promise)
2885
+ #### [Shipments](#Shipments)
2882
2886
 
2883
2887
  | Properties | Type | Nullable | Description |
2884
2888
  | ---------- | ---- | -------- | ----------- |
2885
- | show_promise | boolean | no | |
2886
- | timestamp | [TimeStampData](#TimeStampData) | no | |
2889
+ | invoice | [Invoice](#Invoice) | no | |
2890
+ | traking_no | string | no | |
2891
+ | delivery_date | string | no | |
2892
+ | returnable_date | string | no | |
2893
+ | comment | string | no | |
2894
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2895
+ | show_download_invoice | boolean | no | |
2896
+ | total_bags | number | no | |
2897
+ | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2898
+ | 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 | |
2904
+ | 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
+ | custom_meta | [string] | no | |
2911
+ | order_type | string | no | |
2912
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2913
+ | track_url | string | no | |
2914
+ | 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 | |
2920
+ | prices | [Prices](#Prices) | no | |
2921
+ | promise | [Promise](#Promise) | no | |
2922
+ | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2923
+ | show_track_link | boolean | no | |
2887
2924
 
2888
2925
  ---
2889
2926
 
2890
2927
 
2891
2928
 
2892
2929
 
2893
- #### [Invoice](#Invoice)
2930
+ #### [UserInfo](#UserInfo)
2894
2931
 
2895
2932
  | Properties | Type | Nullable | Description |
2896
2933
  | ---------- | ---- | -------- | ----------- |
2897
- | label_url | string | no | |
2898
- | invoice_url | string | no | |
2899
- | updated_date | string | no | |
2934
+ | email | string | no | |
2935
+ | gender | string | no | |
2936
+ | name | string | no | |
2937
+ | mobile | string | no | |
2900
2938
 
2901
2939
  ---
2902
2940
 
2903
2941
 
2904
2942
 
2905
2943
 
2906
- #### [Shipments](#Shipments)
2944
+ #### [OrderSchema](#OrderSchema)
2907
2945
 
2908
2946
  | Properties | Type | Nullable | Description |
2909
2947
  | ---------- | ---- | -------- | ----------- |
2910
- | traking_no | string | no | |
2911
- | can_cancel | boolean | no | |
2912
- | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2913
- | total_bags | number | no | |
2914
- | prices | [Prices](#Prices) | no | |
2915
- | order_type | string | no | |
2916
- | track_url | string | no | |
2917
- | delivery_date | string | no | |
2918
- | need_help_url | string | no | |
2919
- | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2920
- | size_info | string | no | |
2921
- | custom_meta | [string] | no | |
2922
- | shipment_created_at | string | no | |
2923
- | bags | [[Bags](#Bags)] | no | |
2924
- | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2948
+ | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2925
2949
  | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2926
- | returnable_date | string | no | |
2927
- | refund_details | string | no | |
2928
- | beneficiary_details | boolean | no | |
2929
- | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2930
- | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2931
- | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2932
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2933
- | shipment_id | string | no | |
2934
- | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2935
- | comment | string | no | |
2936
- | can_return | boolean | no | |
2937
- | show_track_link | boolean | no | |
2938
- | dp_name | string | no | |
2939
- | can_break | string | no | |
2950
+ | shipments | [[Shipments](#Shipments)] | no | |
2951
+ | total_shipments_in_order | number | no | |
2952
+ | user_info | [UserInfo](#UserInfo) | no | |
2953
+ | order_created_time | string | no | |
2940
2954
  | order_id | string | no | |
2941
- | awb_no | string | no | |
2942
- | promise | [Promise](#Promise) | no | |
2943
- | invoice | [Invoice](#Invoice) | no | |
2944
- | show_download_invoice | boolean | no | |
2945
2955
 
2946
2956
  ---
2947
2957
 
2948
2958
 
2949
2959
 
2950
2960
 
2951
- #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2961
+ #### [OrderPage](#OrderPage)
2952
2962
 
2953
2963
  | Properties | Type | Nullable | Description |
2954
2964
  | ---------- | ---- | -------- | ----------- |
2955
- | strategy | string | no | |
2956
- | level | string | no | |
2965
+ | item_total | number | no | |
2966
+ | size | number | no | |
2967
+ | has_next | boolean | no | |
2968
+ | current | number | no | |
2969
+ | type | string | no | |
2957
2970
 
2958
2971
  ---
2959
2972
 
2960
2973
 
2961
2974
 
2962
2975
 
2963
- #### [BagsForReorder](#BagsForReorder)
2976
+ #### [OrderStatuses](#OrderStatuses)
2964
2977
 
2965
2978
  | Properties | Type | Nullable | Description |
2966
2979
  | ---------- | ---- | -------- | ----------- |
2967
- | seller_id | number | no | |
2968
- | quantity | number | no | |
2969
- | item_size | string | no | |
2970
- | store_id | number | no | |
2971
- | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2972
- | item_id | number | no | |
2980
+ | value | number | no | |
2981
+ | is_selected | boolean | no | |
2982
+ | display | string | no | |
2973
2983
 
2974
2984
  ---
2975
2985
 
2976
2986
 
2977
2987
 
2978
2988
 
2979
- #### [OrderSchema](#OrderSchema)
2989
+ #### [OrderFilters](#OrderFilters)
2980
2990
 
2981
2991
  | Properties | Type | Nullable | Description |
2982
2992
  | ---------- | ---- | -------- | ----------- |
2983
- | total_shipments_in_order | number | no | |
2984
- | order_created_time | string | no | |
2985
- | order_id | string | no | |
2986
- | user_info | [UserInfo](#UserInfo) | no | |
2987
- | shipments | [[Shipments](#Shipments)] | no | |
2988
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2989
- | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2993
+ | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2990
2994
 
2991
2995
  ---
2992
2996
 
@@ -2997,9 +3001,9 @@ Successfully updateShipmentStatus!
2997
3001
 
2998
3002
  | Properties | Type | Nullable | Description |
2999
3003
  | ---------- | ---- | -------- | ----------- |
3004
+ | items | [[OrderSchema](#OrderSchema)] | no | |
3000
3005
  | page | [OrderPage](#OrderPage) | no | |
3001
3006
  | filters | [OrderFilters](#OrderFilters) | no | |
3002
- | items | [[OrderSchema](#OrderSchema)] | no | |
3003
3007
 
3004
3008
  ---
3005
3009
 
@@ -3044,10 +3048,10 @@ Successfully updateShipmentStatus!
3044
3048
 
3045
3049
  | Properties | Type | Nullable | Description |
3046
3050
  | ---------- | ---- | -------- | ----------- |
3047
- | presigned_url | string | yes | |
3048
3051
  | success | boolean | yes | |
3049
- | presigned_type | string | yes | |
3050
3052
  | shipment_id | string | yes | |
3053
+ | presigned_url | string | yes | |
3054
+ | presigned_type | string | yes | |
3051
3055
 
3052
3056
  ---
3053
3057
 
@@ -3058,14 +3062,14 @@ Successfully updateShipmentStatus!
3058
3062
 
3059
3063
  | Properties | Type | Nullable | Description |
3060
3064
  | ---------- | ---- | -------- | ----------- |
3065
+ | updated_time | string | no | |
3066
+ | awb | string | no | |
3067
+ | account_name | string | no | |
3068
+ | updated_at | string | no | |
3061
3069
  | reason | string | no | |
3062
- | shipment_type | string | no | |
3063
3070
  | status | string | no | |
3064
- | updated_at | string | no | |
3071
+ | shipment_type | string | no | |
3065
3072
  | last_location_recieved_at | string | no | |
3066
- | updated_time | string | no | |
3067
- | account_name | string | no | |
3068
- | awb | string | no | |
3069
3073
 
3070
3074
  ---
3071
3075
 
@@ -3087,10 +3091,10 @@ Successfully updateShipmentStatus!
3087
3091
 
3088
3092
  | Properties | Type | Nullable | Description |
3089
3093
  | ---------- | ---- | -------- | ----------- |
3090
- | phone | string | no | |
3091
3094
  | name | string | no | |
3092
- | order_id | string | no | |
3093
3095
  | shipment_id | string | no | |
3096
+ | phone | string | no | |
3097
+ | order_id | string | no | |
3094
3098
  | country | string | no | |
3095
3099
 
3096
3100
  ---
@@ -3102,8 +3106,8 @@ Successfully updateShipmentStatus!
3102
3106
 
3103
3107
  | Properties | Type | Nullable | Description |
3104
3108
  | ---------- | ---- | -------- | ----------- |
3105
- | resend_timer | number | no | |
3106
3109
  | success | boolean | no | |
3110
+ | resend_timer | number | no | |
3107
3111
  | message | string | no | |
3108
3112
  | request_id | string | no | |
3109
3113
 
@@ -3116,8 +3120,8 @@ Successfully updateShipmentStatus!
3116
3120
 
3117
3121
  | Properties | Type | Nullable | Description |
3118
3122
  | ---------- | ---- | -------- | ----------- |
3119
- | request_id | string | no | |
3120
3123
  | otp_code | string | no | |
3124
+ | request_id | string | no | |
3121
3125
 
3122
3126
  ---
3123
3127
 
@@ -3162,12 +3166,12 @@ Successfully updateShipmentStatus!
3162
3166
 
3163
3167
  | Properties | Type | Nullable | Description |
3164
3168
  | ---------- | ---- | -------- | ----------- |
3165
- | display_name | string | no | |
3169
+ | id | number | no | |
3166
3170
  | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3167
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
3171
+ | display_name | string | no | |
3168
3172
  | reasons | [[BagReasons](#BagReasons)] | no | |
3169
3173
  | qc_type | [string] | no | |
3170
- | id | number | no | |
3174
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
3171
3175
 
3172
3176
  ---
3173
3177
 
@@ -3178,8 +3182,8 @@ Successfully updateShipmentStatus!
3178
3182
 
3179
3183
  | Properties | Type | Nullable | Description |
3180
3184
  | ---------- | ---- | -------- | ----------- |
3181
- | reasons | [[BagReasons](#BagReasons)] | no | |
3182
3185
  | success | boolean | no | |
3186
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3183
3187
 
3184
3188
  ---
3185
3189
 
@@ -3190,12 +3194,12 @@ Successfully updateShipmentStatus!
3190
3194
 
3191
3195
  | Properties | Type | Nullable | Description |
3192
3196
  | ---------- | ---- | -------- | ----------- |
3193
- | reason_text | string | no | |
3197
+ | show_text_area | boolean | no | |
3198
+ | reason_id | number | no | |
3194
3199
  | flow | string | no | |
3195
- | feedback_type | string | no | |
3200
+ | reason_text | string | no | |
3196
3201
  | priority | number | no | |
3197
- | reason_id | number | no | |
3198
- | show_text_area | boolean | no | |
3202
+ | feedback_type | string | no | |
3199
3203
 
3200
3204
  ---
3201
3205
 
@@ -3213,7 +3217,7 @@ Successfully updateShipmentStatus!
3213
3217
 
3214
3218
 
3215
3219
 
3216
- #### [EntityReasonData](#EntityReasonData)
3220
+ #### [ProductsReasonsData](#ProductsReasonsData)
3217
3221
 
3218
3222
  | Properties | Type | Nullable | Description |
3219
3223
  | ---------- | ---- | -------- | ----------- |
@@ -3225,32 +3229,32 @@ Successfully updateShipmentStatus!
3225
3229
 
3226
3230
 
3227
3231
 
3228
- #### [EntitiesReasons](#EntitiesReasons)
3232
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3229
3233
 
3230
3234
  | Properties | Type | Nullable | Description |
3231
3235
  | ---------- | ---- | -------- | ----------- |
3232
- | filters | [string] | no | |
3233
- | data | [EntityReasonData](#EntityReasonData) | no | |
3236
+ | quantity | number | no | |
3237
+ | line_number | number | no | |
3238
+ | identifier | string | no | |
3234
3239
 
3235
3240
  ---
3236
3241
 
3237
3242
 
3238
3243
 
3239
3244
 
3240
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3245
+ #### [ProductsReasons](#ProductsReasons)
3241
3246
 
3242
3247
  | Properties | Type | Nullable | Description |
3243
3248
  | ---------- | ---- | -------- | ----------- |
3244
- | line_number | number | no | |
3245
- | quantity | number | no | |
3246
- | identifier | string | no | |
3249
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3250
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3247
3251
 
3248
3252
  ---
3249
3253
 
3250
3254
 
3251
3255
 
3252
3256
 
3253
- #### [ProductsReasonsData](#ProductsReasonsData)
3257
+ #### [EntityReasonData](#EntityReasonData)
3254
3258
 
3255
3259
  | Properties | Type | Nullable | Description |
3256
3260
  | ---------- | ---- | -------- | ----------- |
@@ -3262,12 +3266,12 @@ Successfully updateShipmentStatus!
3262
3266
 
3263
3267
 
3264
3268
 
3265
- #### [ProductsReasons](#ProductsReasons)
3269
+ #### [EntitiesReasons](#EntitiesReasons)
3266
3270
 
3267
3271
  | Properties | Type | Nullable | Description |
3268
3272
  | ---------- | ---- | -------- | ----------- |
3269
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3270
- | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3273
+ | data | [EntityReasonData](#EntityReasonData) | no | |
3274
+ | filters | [string] | no | |
3271
3275
 
3272
3276
  ---
3273
3277
 
@@ -3278,8 +3282,8 @@ Successfully updateShipmentStatus!
3278
3282
 
3279
3283
  | Properties | Type | Nullable | Description |
3280
3284
  | ---------- | ---- | -------- | ----------- |
3281
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3282
3285
  | products | [[ProductsReasons](#ProductsReasons)] | no | |
3286
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3283
3287
 
3284
3288
  ---
3285
3289
 
@@ -3290,8 +3294,8 @@ Successfully updateShipmentStatus!
3290
3294
 
3291
3295
  | Properties | Type | Nullable | Description |
3292
3296
  | ---------- | ---- | -------- | ----------- |
3293
- | line_number | number | no | |
3294
3297
  | quantity | number | no | |
3298
+ | line_number | number | no | |
3295
3299
  | identifier | string | no | |
3296
3300
 
3297
3301
  ---
@@ -3299,36 +3303,36 @@ Successfully updateShipmentStatus!
3299
3303
 
3300
3304
 
3301
3305
 
3302
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3306
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3303
3307
 
3304
3308
  | Properties | Type | Nullable | Description |
3305
3309
  | ---------- | ---- | -------- | ----------- |
3306
- | filters | [string] | no | |
3307
- | data | string | no | |
3310
+ | line_number | number | no | |
3311
+ | identifier | string | no | |
3308
3312
 
3309
3313
  ---
3310
3314
 
3311
3315
 
3312
3316
 
3313
3317
 
3314
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3318
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
3315
3319
 
3316
3320
  | Properties | Type | Nullable | Description |
3317
3321
  | ---------- | ---- | -------- | ----------- |
3318
- | line_number | number | no | |
3319
- | identifier | string | no | |
3322
+ | data | string | no | |
3323
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3320
3324
 
3321
3325
  ---
3322
3326
 
3323
3327
 
3324
3328
 
3325
3329
 
3326
- #### [ProductsDataUpdates](#ProductsDataUpdates)
3330
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3327
3331
 
3328
3332
  | Properties | Type | Nullable | Description |
3329
3333
  | ---------- | ---- | -------- | ----------- |
3330
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3331
3334
  | data | string | no | |
3335
+ | filters | [string] | no | |
3332
3336
 
3333
3337
  ---
3334
3338
 
@@ -3339,8 +3343,8 @@ Successfully updateShipmentStatus!
3339
3343
 
3340
3344
  | Properties | Type | Nullable | Description |
3341
3345
  | ---------- | ---- | -------- | ----------- |
3342
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3343
3346
  | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3347
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3344
3348
 
3345
3349
  ---
3346
3350
 
@@ -3353,8 +3357,8 @@ Successfully updateShipmentStatus!
3353
3357
  | ---------- | ---- | -------- | ----------- |
3354
3358
  | reasons | [ReasonsData](#ReasonsData) | no | |
3355
3359
  | products | [[Products](#Products)] | no | |
3356
- | identifier | string | yes | |
3357
3360
  | data_updates | [DataUpdates](#DataUpdates) | no | |
3361
+ | identifier | string | yes | |
3358
3362
 
3359
3363
  ---
3360
3364
 
@@ -3366,8 +3370,8 @@ Successfully updateShipmentStatus!
3366
3370
  | Properties | Type | Nullable | Description |
3367
3371
  | ---------- | ---- | -------- | ----------- |
3368
3372
  | status | string | no | |
3369
- | exclude_bags_next_state | string | no | |
3370
3373
  | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3374
+ | exclude_bags_next_state | string | no | |
3371
3375
 
3372
3376
  ---
3373
3377
 
@@ -3378,11 +3382,11 @@ Successfully updateShipmentStatus!
3378
3382
 
3379
3383
  | Properties | Type | Nullable | Description |
3380
3384
  | ---------- | ---- | -------- | ----------- |
3385
+ | force_transition | boolean | no | |
3386
+ | task | boolean | no | |
3381
3387
  | lock_after_transition | boolean | no | |
3382
3388
  | unlock_before_transition | boolean | no | |
3383
- | force_transition | boolean | no | |
3384
3389
  | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3385
- | task | boolean | no | |
3386
3390
 
3387
3391
  ---
3388
3392
 
@@ -3415,11 +3419,11 @@ Successfully updateShipmentStatus!
3415
3419
 
3416
3420
  | Properties | Type | Nullable | Description |
3417
3421
  | ---------- | ---- | -------- | ----------- |
3418
- | stack_trace | string | no | |
3419
3422
  | exception | string | no | |
3420
- | status | number | no | |
3421
3423
  | code | string | no | |
3422
3424
  | message | string | no | |
3425
+ | status | number | no | |
3426
+ | stack_trace | string | no | |
3423
3427
 
3424
3428
  ---
3425
3429