@gofynd/fdk-client-javascript 1.0.0 → 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 (104) hide show
  1. package/documentation/application/CATALOG.md +371 -371
  2. package/documentation/application/ORDER.md +272 -272
  3. package/documentation/application/PAYMENT.md +269 -269
  4. package/documentation/platform/CATALOG.md +1678 -1664
  5. package/documentation/platform/COMPANYPROFILE.md +201 -201
  6. package/documentation/platform/ORDER.md +1442 -1323
  7. package/documentation/platform/PAYMENT.md +88 -88
  8. package/index.js +7 -1
  9. package/package.json +1 -1
  10. package/sdk/application/Cart/CartApplicationClient.js +302 -0
  11. package/sdk/application/Cart/CartApplicationValidator.js +1 -0
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
  15. package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
  16. package/sdk/application/Common/CommonApplicationClient.js +22 -0
  17. package/sdk/application/Common/CommonApplicationValidator.js +1 -0
  18. package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
  19. package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
  21. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  22. package/sdk/application/Content/ContentApplicationClient.js +215 -0
  23. package/sdk/application/Content/ContentApplicationValidator.js +1 -0
  24. package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
  25. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
  26. package/sdk/application/Lead/LeadApplicationClient.js +81 -0
  27. package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
  28. package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
  29. package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
  30. package/sdk/application/Order/OrderApplicationClient.js +146 -0
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
  32. package/sdk/application/Order/OrderApplicationModel.js +329 -329
  33. package/sdk/application/Order/OrderApplicationValidator.js +1 -0
  34. package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
  35. package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
  36. package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
  37. package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
  38. package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
  39. package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
  40. package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
  41. package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
  42. package/sdk/application/Share/ShareApplicationClient.js +87 -0
  43. package/sdk/application/Share/ShareApplicationValidator.js +1 -0
  44. package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
  45. package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
  46. package/sdk/application/User/UserApplicationClient.js +405 -0
  47. package/sdk/application/User/UserApplicationValidator.js +1 -0
  48. package/sdk/common/AxiosHelper.js +1 -1
  49. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
  52. package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
  53. package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
  54. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
  58. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
  59. package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
  60. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
  61. package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
  62. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
  63. package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
  64. package/sdk/platform/Common/CommonPlatformClient.js +26 -0
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
  66. package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
  67. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
  68. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
  70. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
  71. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
  72. package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
  73. package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
  74. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
  75. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
  76. package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
  77. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
  78. package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
  79. package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
  80. package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
  81. package/sdk/platform/Order/OrderPlatformClient.js +674 -15
  82. package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
  83. package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
  84. package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
  85. package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
  86. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
  87. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
  88. package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
  89. package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
  90. package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
  91. package/sdk/platform/PlatformApplicationClient.js +2514 -2524
  92. package/sdk/platform/PlatformClient.d.ts +2217 -2243
  93. package/sdk/platform/PlatformClient.js +2514 -2524
  94. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
  95. package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
  96. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
  97. package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
  98. package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
  99. package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
  100. package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
  101. package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
  102. package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
  103. package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
  104. package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
@@ -2489,8 +2489,8 @@ Successfully updateShipmentStatus!
2489
2489
 
2490
2490
  | Properties | Type | Nullable | Description |
2491
2491
  | ---------- | ---- | -------- | ----------- |
2492
- | value | number | no | |
2493
2492
  | display | string | no | |
2493
+ | value | number | no | |
2494
2494
  | is_selected | boolean | no | |
2495
2495
 
2496
2496
  ---
@@ -2509,27 +2509,15 @@ Successfully updateShipmentStatus!
2509
2509
 
2510
2510
 
2511
2511
 
2512
- #### [BreakupValues](#BreakupValues)
2513
-
2514
- | Properties | Type | Nullable | Description |
2515
- | ---------- | ---- | -------- | ----------- |
2516
- | name | string | no | |
2517
- | value | number | no | |
2518
- | display | string | no | |
2519
-
2520
- ---
2521
-
2522
-
2523
-
2524
-
2525
- #### [UserInfo](#UserInfo)
2512
+ #### [OrderPage](#OrderPage)
2526
2513
 
2527
2514
  | Properties | Type | Nullable | Description |
2528
2515
  | ---------- | ---- | -------- | ----------- |
2529
- | name | string | no | |
2530
- | email | string | no | |
2531
- | mobile | string | no | |
2532
- | gender | string | no | |
2516
+ | size | number | no | |
2517
+ | type | string | no | |
2518
+ | current | number | no | |
2519
+ | item_total | number | no | |
2520
+ | has_next | boolean | no | |
2533
2521
 
2534
2522
  ---
2535
2523
 
@@ -2540,8 +2528,8 @@ Successfully updateShipmentStatus!
2540
2528
 
2541
2529
  | Properties | Type | Nullable | Description |
2542
2530
  | ---------- | ---- | -------- | ----------- |
2543
- | strategy | string | no | |
2544
2531
  | level | string | no | |
2532
+ | strategy | string | no | |
2545
2533
 
2546
2534
  ---
2547
2535
 
@@ -2552,133 +2540,121 @@ Successfully updateShipmentStatus!
2552
2540
 
2553
2541
  | Properties | Type | Nullable | Description |
2554
2542
  | ---------- | ---- | -------- | ----------- |
2555
- | seller_id | number | no | |
2556
- | item_id | number | no | |
2557
2543
  | quantity | number | no | |
2544
+ | store_id | number | no | |
2558
2545
  | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2546
+ | seller_id | number | no | |
2547
+ | item_id | number | no | |
2559
2548
  | item_size | string | no | |
2560
- | store_id | number | no | |
2561
-
2562
- ---
2563
-
2564
-
2565
-
2566
-
2567
- #### [TimeStampData](#TimeStampData)
2568
-
2569
- | Properties | Type | Nullable | Description |
2570
- | ---------- | ---- | -------- | ----------- |
2571
- | min | string | no | |
2572
- | max | string | no | |
2573
2549
 
2574
2550
  ---
2575
2551
 
2576
2552
 
2577
2553
 
2578
2554
 
2579
- #### [Promise](#Promise)
2555
+ #### [UserInfo](#UserInfo)
2580
2556
 
2581
2557
  | Properties | Type | Nullable | Description |
2582
2558
  | ---------- | ---- | -------- | ----------- |
2583
- | show_promise | boolean | no | |
2584
- | timestamp | [TimeStampData](#TimeStampData) | no | |
2559
+ | mobile | string | no | |
2560
+ | name | string | no | |
2561
+ | gender | string | no | |
2562
+ | email | string | no | |
2585
2563
 
2586
2564
  ---
2587
2565
 
2588
2566
 
2589
2567
 
2590
2568
 
2591
- #### [ShipmentUserInfo](#ShipmentUserInfo)
2569
+ #### [NestedTrackingDetails](#NestedTrackingDetails)
2592
2570
 
2593
2571
  | Properties | Type | Nullable | Description |
2594
2572
  | ---------- | ---- | -------- | ----------- |
2595
- | first_name | string | no | |
2596
- | mobile | string | no | |
2597
- | last_name | string | no | |
2598
- | gender | string | no | |
2573
+ | time | string | no | |
2574
+ | is_passed | boolean | no | |
2575
+ | is_current | boolean | no | |
2576
+ | status | string | no | |
2599
2577
 
2600
2578
  ---
2601
2579
 
2602
2580
 
2603
2581
 
2604
2582
 
2605
- #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2583
+ #### [TrackingDetails](#TrackingDetails)
2606
2584
 
2607
2585
  | Properties | Type | Nullable | Description |
2608
2586
  | ---------- | ---- | -------- | ----------- |
2609
- | pieces | number | no | |
2610
- | total_price | number | no | |
2611
- | sizes | number | 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 | |
2612
2592
 
2613
2593
  ---
2614
2594
 
2615
2595
 
2616
2596
 
2617
2597
 
2618
- #### [ShipmentPayment](#ShipmentPayment)
2598
+ #### [FulfillingCompany](#FulfillingCompany)
2619
2599
 
2620
2600
  | Properties | Type | Nullable | Description |
2621
2601
  | ---------- | ---- | -------- | ----------- |
2622
- | logo | string | no | |
2623
- | payment_mode | string | no | |
2624
- | mode | string | no | |
2625
- | status | string | no | |
2626
- | mop | string | no | |
2627
- | display_name | string | no | |
2602
+ | id | number | no | |
2603
+ | name | string | no | |
2628
2604
 
2629
2605
  ---
2630
2606
 
2631
2607
 
2632
2608
 
2633
2609
 
2634
- #### [ShipmentStatus](#ShipmentStatus)
2610
+ #### [TimeStampData](#TimeStampData)
2635
2611
 
2636
2612
  | Properties | Type | Nullable | Description |
2637
2613
  | ---------- | ---- | -------- | ----------- |
2638
- | title | string | no | |
2639
- | hex_code | string | no | |
2614
+ | max | string | no | |
2615
+ | min | string | no | |
2640
2616
 
2641
2617
  ---
2642
2618
 
2643
2619
 
2644
2620
 
2645
2621
 
2646
- #### [DeliveryAddress](#DeliveryAddress)
2622
+ #### [Promise](#Promise)
2647
2623
 
2648
2624
  | Properties | Type | Nullable | Description |
2649
2625
  | ---------- | ---- | -------- | ----------- |
2650
- | version | string | no | |
2651
- | address_type | string | no | |
2652
- | state | string | no | |
2653
- | latitude | number | no | |
2654
- | pincode | string | no | |
2655
- | city | string | no | |
2656
- | address1 | string | no | |
2657
- | name | string | no | |
2658
- | area | string | no | |
2659
- | updated_at | string | no | |
2660
- | address | string | no | |
2661
- | address2 | string | no | |
2662
- | landmark | string | no | |
2663
- | email | string | no | |
2664
- | contact_person | string | no | |
2665
- | phone | string | no | |
2666
- | country | string | no | |
2667
- | created_at | string | no | |
2668
- | address_category | string | no | |
2669
- | longitude | number | no | |
2626
+ | timestamp | [TimeStampData](#TimeStampData) | no | |
2627
+ | show_promise | boolean | no | |
2670
2628
 
2671
2629
  ---
2672
2630
 
2673
2631
 
2674
2632
 
2675
2633
 
2676
- #### [FulfillingCompany](#FulfillingCompany)
2634
+ #### [Prices](#Prices)
2677
2635
 
2678
2636
  | Properties | Type | Nullable | Description |
2679
2637
  | ---------- | ---- | -------- | ----------- |
2680
- | id | number | no | |
2681
- | name | string | 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 | |
2682
2658
 
2683
2659
  ---
2684
2660
 
@@ -2689,10 +2665,10 @@ Successfully updateShipmentStatus!
2689
2665
 
2690
2666
  | Properties | Type | Nullable | Description |
2691
2667
  | ---------- | ---- | -------- | ----------- |
2692
- | name | string | no | |
2693
2668
  | journey_type | string | no | |
2694
- | updated_at | string | no | |
2695
2669
  | status | string | no | |
2670
+ | name | string | no | |
2671
+ | updated_at | string | no | |
2696
2672
 
2697
2673
  ---
2698
2674
 
@@ -2715,44 +2691,14 @@ Successfully updateShipmentStatus!
2715
2691
 
2716
2692
  | Properties | Type | Nullable | Description |
2717
2693
  | ---------- | ---- | -------- | ----------- |
2694
+ | size | string | no | |
2718
2695
  | name | string | no | |
2719
- | seller_identifier | string | no | |
2720
2696
  | code | string | no | |
2697
+ | image | [string] | no | |
2698
+ | brand | [ItemBrand](#ItemBrand) | no | |
2721
2699
  | slug_key | string | no | |
2722
2700
  | id | number | no | |
2723
- | brand | [ItemBrand](#ItemBrand) | no | |
2724
- | size | string | no | |
2725
- | image | [string] | no | |
2726
-
2727
- ---
2728
-
2729
-
2730
-
2731
-
2732
- #### [Prices](#Prices)
2733
-
2734
- | Properties | Type | Nullable | Description |
2735
- | ---------- | ---- | -------- | ----------- |
2736
- | discount | number | no | |
2737
- | refund_amount | number | no | |
2738
- | amount_paid | number | no | |
2739
- | gst_tax_percentage | number | no | |
2740
- | coupon_effective_discount | number | no | |
2741
- | value_of_good | number | no | |
2742
- | refund_credit | number | no | |
2743
- | added_to_fynd_cash | boolean | no | |
2744
- | cashback_applied | number | no | |
2745
- | fynd_credits | number | no | |
2746
- | amount_paid_roundoff | number | no | |
2747
- | delivery_charge | number | no | |
2748
- | promotion_effective_discount | number | no | |
2749
- | price_effective | number | no | |
2750
- | cod_charges | number | no | |
2751
- | brand_calculated_amount | number | no | |
2752
- | cashback | number | no | |
2753
- | coupon_value | number | no | |
2754
- | price_marked | number | no | |
2755
- | transfer_price | number | no | |
2701
+ | seller_identifier | string | no | |
2756
2702
 
2757
2703
  ---
2758
2704
 
@@ -2763,9 +2709,9 @@ Successfully updateShipmentStatus!
2763
2709
 
2764
2710
  | Properties | Type | Nullable | Description |
2765
2711
  | ---------- | ---- | -------- | ----------- |
2766
- | free_gift_item_details | string | no | |
2767
2712
  | article_id | string | no | |
2768
2713
  | parent_item_identifier | string | no | |
2714
+ | free_gift_item_details | string | no | |
2769
2715
  | quantity | number | no | |
2770
2716
 
2771
2717
  ---
@@ -2777,13 +2723,13 @@ Successfully updateShipmentStatus!
2777
2723
 
2778
2724
  | Properties | Type | Nullable | Description |
2779
2725
  | ---------- | ---- | -------- | ----------- |
2780
- | amount | number | no | |
2781
2726
  | promotion_type | string | no | |
2782
- | promotion_name | string | no | |
2783
- | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2784
2727
  | promo_id | string | no | |
2785
- | article_quantity | number | no | |
2728
+ | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2729
+ | amount | number | no | |
2786
2730
  | mrp_promotion | boolean | no | |
2731
+ | article_quantity | number | no | |
2732
+ | promotion_name | string | no | |
2787
2733
 
2788
2734
  ---
2789
2735
 
@@ -2806,33 +2752,33 @@ Successfully updateShipmentStatus!
2806
2752
 
2807
2753
  | Properties | Type | Nullable | Description |
2808
2754
  | ---------- | ---- | -------- | ----------- |
2809
- | discount | number | no | |
2810
2755
  | refund_amount | number | no | |
2811
- | amount_paid | number | no | |
2812
- | gst_tax_percentage | number | no | |
2756
+ | size | string | no | |
2757
+ | amount_paid_roundoff | number | no | |
2813
2758
  | coupon_effective_discount | number | no | |
2814
- | total_units | number | no | |
2815
- | value_of_good | number | no | |
2816
- | refund_credit | number | no | |
2817
- | added_to_fynd_cash | boolean | no | |
2818
2759
  | gst_tag | string | no | |
2819
- | cashback_applied | number | no | |
2820
- | fynd_credits | number | no | |
2821
- | amount_paid_roundoff | number | no | |
2760
+ | value_of_good | number | no | |
2761
+ | gst_tax_percentage | number | no | |
2822
2762
  | gst_fee | number | no | |
2763
+ | fynd_credits | number | no | |
2823
2764
  | delivery_charge | number | no | |
2824
- | promotion_effective_discount | number | no | |
2825
- | price_effective | number | no | |
2826
- | cod_charges | number | no | |
2827
- | hsn_code | string | no | |
2828
- | brand_calculated_amount | number | no | |
2765
+ | total_units | number | no | |
2766
+ | price_marked | number | no | |
2829
2767
  | cashback | number | no | |
2768
+ | identifiers | [Identifiers](#Identifiers) | no | |
2769
+ | discount | number | no | |
2830
2770
  | item_name | string | no | |
2831
2771
  | coupon_value | number | no | |
2832
- | price_marked | number | no | |
2833
- | identifiers | [Identifiers](#Identifiers) | no | |
2772
+ | cashback_applied | number | no | |
2773
+ | refund_credit | number | no | |
2774
+ | price_effective | number | no | |
2775
+ | cod_charges | number | no | |
2776
+ | brand_calculated_amount | number | no | |
2777
+ | added_to_fynd_cash | boolean | no | |
2778
+ | promotion_effective_discount | number | no | |
2834
2779
  | transfer_price | number | no | |
2835
- | size | string | no | |
2780
+ | hsn_code | string | no | |
2781
+ | amount_paid | number | no | |
2836
2782
 
2837
2783
  ---
2838
2784
 
@@ -2843,19 +2789,19 @@ Successfully updateShipmentStatus!
2843
2789
 
2844
2790
  | Properties | Type | Nullable | Description |
2845
2791
  | ---------- | ---- | -------- | ----------- |
2792
+ | prices | [Prices](#Prices) | no | |
2793
+ | can_cancel | boolean | no | |
2794
+ | parent_promo_bags | string | no | |
2795
+ | quantity | number | no | |
2796
+ | line_number | number | no | |
2846
2797
  | can_return | boolean | no | |
2847
2798
  | current_status | [CurrentStatus](#CurrentStatus) | no | |
2848
- | quantity | number | no | |
2849
2799
  | returnable_date | string | no | |
2850
- | delivery_date | string | no | |
2851
- | seller_identifier | string | no | |
2852
2800
  | item | [Item](#Item) | no | |
2853
- | line_number | number | no | |
2854
- | parent_promo_bags | string | no | |
2855
- | prices | [Prices](#Prices) | no | |
2856
2801
  | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2857
2802
  | id | number | no | |
2858
- | can_cancel | boolean | no | |
2803
+ | seller_identifier | string | no | |
2804
+ | delivery_date | string | no | |
2859
2805
  | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2860
2806
 
2861
2807
  ---
@@ -2863,57 +2809,126 @@ Successfully updateShipmentStatus!
2863
2809
 
2864
2810
 
2865
2811
 
2866
- #### [FulfillingStore](#FulfillingStore)
2812
+ #### [ShipmentUserInfo](#ShipmentUserInfo)
2813
+
2814
+ | Properties | Type | Nullable | Description |
2815
+ | ---------- | ---- | -------- | ----------- |
2816
+ | last_name | string | no | |
2817
+ | mobile | string | no | |
2818
+ | gender | string | no | |
2819
+ | first_name | string | no | |
2820
+
2821
+ ---
2822
+
2823
+
2824
+
2825
+
2826
+ #### [FulfillingStore](#FulfillingStore)
2827
+
2828
+ | Properties | Type | Nullable | Description |
2829
+ | ---------- | ---- | -------- | ----------- |
2830
+ | code | string | no | |
2831
+ | name | string | no | |
2832
+ | company_name | string | no | |
2833
+ | id | number | no | |
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 | |
2847
+ | name | string | no | |
2848
+
2849
+ ---
2850
+
2851
+
2852
+
2853
+
2854
+ #### [Invoice](#Invoice)
2855
+
2856
+ | Properties | Type | Nullable | Description |
2857
+ | ---------- | ---- | -------- | ----------- |
2858
+ | label_url | string | no | |
2859
+ | invoice_url | string | no | |
2860
+ | updated_date | string | no | |
2861
+
2862
+ ---
2863
+
2864
+
2865
+
2866
+
2867
+ #### [DeliveryAddress](#DeliveryAddress)
2867
2868
 
2868
2869
  | Properties | Type | Nullable | Description |
2869
2870
  | ---------- | ---- | -------- | ----------- |
2870
- | company_id | number | no | |
2871
+ | address_type | string | no | |
2872
+ | phone | string | no | |
2871
2873
  | name | string | no | |
2872
- | code | string | no | |
2873
- | id | number | no | |
2874
- | company_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 | |
2875
2891
 
2876
2892
  ---
2877
2893
 
2878
2894
 
2879
2895
 
2880
2896
 
2881
- #### [Invoice](#Invoice)
2897
+ #### [ShipmentStatus](#ShipmentStatus)
2882
2898
 
2883
2899
  | Properties | Type | Nullable | Description |
2884
2900
  | ---------- | ---- | -------- | ----------- |
2885
- | updated_date | string | no | |
2886
- | label_url | string | no | |
2887
- | invoice_url | string | no | |
2901
+ | hex_code | string | no | |
2902
+ | title | string | no | |
2888
2903
 
2889
2904
  ---
2890
2905
 
2891
2906
 
2892
2907
 
2893
2908
 
2894
- #### [NestedTrackingDetails](#NestedTrackingDetails)
2909
+ #### [ShipmentPayment](#ShipmentPayment)
2895
2910
 
2896
2911
  | Properties | Type | Nullable | Description |
2897
2912
  | ---------- | ---- | -------- | ----------- |
2898
- | time | string | no | |
2899
- | is_passed | boolean | no | |
2900
- | is_current | boolean | no | |
2913
+ | mop | string | no | |
2914
+ | payment_mode | string | no | |
2915
+ | mode | string | no | |
2901
2916
  | status | string | no | |
2917
+ | display_name | string | no | |
2918
+ | logo | string | no | |
2902
2919
 
2903
2920
  ---
2904
2921
 
2905
2922
 
2906
2923
 
2907
2924
 
2908
- #### [TrackingDetails](#TrackingDetails)
2925
+ #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2909
2926
 
2910
2927
  | Properties | Type | Nullable | Description |
2911
2928
  | ---------- | ---- | -------- | ----------- |
2912
- | time | string | no | |
2913
- | is_current | boolean | no | |
2914
- | status | string | no | |
2915
- | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2916
- | is_passed | boolean | no | |
2929
+ | sizes | number | no | |
2930
+ | total_price | number | no | |
2931
+ | pieces | number | no | |
2917
2932
 
2918
2933
  ---
2919
2934
 
@@ -2924,41 +2939,41 @@ Successfully updateShipmentStatus!
2924
2939
 
2925
2940
  | Properties | Type | Nullable | Description |
2926
2941
  | ---------- | ---- | -------- | ----------- |
2927
- | returnable_date | string | no | |
2928
- | promise | [Promise](#Promise) | no | |
2929
- | need_help_url | string | no | |
2930
- | custom_meta | [string] | no | |
2931
- | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2932
- | traking_no | string | no | |
2933
- | dp_name | string | no | |
2934
- | size_info | string | no | |
2935
- | shipment_id | string | no | |
2936
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2937
- | total_bags | number | no | |
2938
- | delivery_date | string | no | |
2939
- | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2940
- | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2941
- | can_cancel | boolean | no | |
2942
- | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2943
- | can_return | boolean | no | |
2942
+ | order_type | string | no | |
2944
2943
  | refund_details | string | no | |
2945
- | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2946
2944
  | comment | string | no | |
2945
+ | shipment_id | string | no | |
2946
+ | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2947
2947
  | show_download_invoice | boolean | no | |
2948
2948
  | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2949
- | bags | [[Bags](#Bags)] | no | |
2950
- | awb_no | string | no | |
2951
- | order_type | string | no | |
2952
2949
  | show_track_link | boolean | no | |
2953
- | shipment_created_at | string | 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 | |
2954
2958
  | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2959
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2955
2960
  | invoice | [Invoice](#Invoice) | no | |
2956
- | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2957
2961
  | prices | [Prices](#Prices) | no | |
2958
- | beneficiary_details | boolean | no | |
2962
+ | size_info | string | no | |
2963
+ | can_return | boolean | no | |
2964
+ | custom_meta | [string] | no | |
2959
2965
  | order_id | string | no | |
2960
- | can_break | string | no | |
2961
2966
  | track_url | string | no | |
2967
+ | total_bags | number | no | |
2968
+ | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2969
+ | delivery_date | string | no | |
2970
+ | shipment_created_at | string | no | |
2971
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2972
+ | can_cancel | boolean | no | |
2973
+ | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2974
+ | dp_name | string | no | |
2975
+ | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2976
+ | beneficiary_details | boolean | no | |
2962
2977
 
2963
2978
  ---
2964
2979
 
@@ -2969,28 +2984,13 @@ Successfully updateShipmentStatus!
2969
2984
 
2970
2985
  | Properties | Type | Nullable | Description |
2971
2986
  | ---------- | ---- | -------- | ----------- |
2987
+ | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2972
2988
  | order_created_time | string | no | |
2973
- | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2974
- | total_shipments_in_order | number | no | |
2975
2989
  | user_info | [UserInfo](#UserInfo) | no | |
2976
- | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2977
2990
  | shipments | [[Shipments](#Shipments)] | no | |
2978
2991
  | order_id | string | no | |
2979
-
2980
- ---
2981
-
2982
-
2983
-
2984
-
2985
- #### [OrderPage](#OrderPage)
2986
-
2987
- | Properties | Type | Nullable | Description |
2988
- | ---------- | ---- | -------- | ----------- |
2989
- | type | string | no | |
2990
- | item_total | number | no | |
2991
- | current | number | no | |
2992
- | has_next | boolean | no | |
2993
- | size | number | no | |
2992
+ | total_shipments_in_order | number | no | |
2993
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2994
2994
 
2995
2995
  ---
2996
2996
 
@@ -3002,8 +3002,8 @@ Successfully updateShipmentStatus!
3002
3002
  | Properties | Type | Nullable | Description |
3003
3003
  | ---------- | ---- | -------- | ----------- |
3004
3004
  | filters | [OrderFilters](#OrderFilters) | no | |
3005
- | items | [[OrderSchema](#OrderSchema)] | no | |
3006
3005
  | page | [OrderPage](#OrderPage) | no | |
3006
+ | items | [[OrderSchema](#OrderSchema)] | no | |
3007
3007
 
3008
3008
  ---
3009
3009
 
@@ -3049,8 +3049,8 @@ Successfully updateShipmentStatus!
3049
3049
  | Properties | Type | Nullable | Description |
3050
3050
  | ---------- | ---- | -------- | ----------- |
3051
3051
  | success | boolean | yes | |
3052
- | presigned_type | string | yes | |
3053
3052
  | presigned_url | string | yes | |
3053
+ | presigned_type | string | yes | |
3054
3054
  | shipment_id | string | yes | |
3055
3055
 
3056
3056
  ---
@@ -3062,13 +3062,13 @@ Successfully updateShipmentStatus!
3062
3062
 
3063
3063
  | Properties | Type | Nullable | Description |
3064
3064
  | ---------- | ---- | -------- | ----------- |
3065
- | shipment_type | string | no | |
3066
- | last_location_recieved_at | string | no | |
3065
+ | updated_time | string | no | |
3067
3066
  | status | string | no | |
3068
- | awb | string | no | |
3067
+ | shipment_type | string | no | |
3069
3068
  | updated_at | string | no | |
3070
- | updated_time | string | no | |
3069
+ | awb | string | no | |
3071
3070
  | account_name | string | no | |
3071
+ | last_location_recieved_at | string | no | |
3072
3072
  | reason | string | no | |
3073
3073
 
3074
3074
  ---
@@ -3091,10 +3091,10 @@ Successfully updateShipmentStatus!
3091
3091
 
3092
3092
  | Properties | Type | Nullable | Description |
3093
3093
  | ---------- | ---- | -------- | ----------- |
3094
- | country | string | no | |
3095
- | shipment_id | string | no | |
3096
3094
  | name | string | no | |
3097
3095
  | phone | string | no | |
3096
+ | country | string | no | |
3097
+ | shipment_id | string | no | |
3098
3098
  | order_id | string | no | |
3099
3099
 
3100
3100
  ---
@@ -3106,9 +3106,9 @@ Successfully updateShipmentStatus!
3106
3106
 
3107
3107
  | Properties | Type | Nullable | Description |
3108
3108
  | ---------- | ---- | -------- | ----------- |
3109
- | request_id | string | no | |
3110
3109
  | success | boolean | no | |
3111
3110
  | resend_timer | number | no | |
3111
+ | request_id | string | no | |
3112
3112
  | message | string | no | |
3113
3113
 
3114
3114
  ---
@@ -3139,23 +3139,23 @@ Successfully updateShipmentStatus!
3139
3139
 
3140
3140
 
3141
3141
 
3142
- #### [QuestionSet](#QuestionSet)
3142
+ #### [BagReasonMeta](#BagReasonMeta)
3143
3143
 
3144
3144
  | Properties | Type | Nullable | Description |
3145
3145
  | ---------- | ---- | -------- | ----------- |
3146
- | id | number | no | |
3147
- | display_name | string | no | |
3146
+ | show_text_area | boolean | no | |
3148
3147
 
3149
3148
  ---
3150
3149
 
3151
3150
 
3152
3151
 
3153
3152
 
3154
- #### [BagReasonMeta](#BagReasonMeta)
3153
+ #### [QuestionSet](#QuestionSet)
3155
3154
 
3156
3155
  | Properties | Type | Nullable | Description |
3157
3156
  | ---------- | ---- | -------- | ----------- |
3158
- | show_text_area | boolean | no | |
3157
+ | id | number | no | |
3158
+ | display_name | string | no | |
3159
3159
 
3160
3160
  ---
3161
3161
 
@@ -3166,12 +3166,12 @@ Successfully updateShipmentStatus!
3166
3166
 
3167
3167
  | Properties | Type | Nullable | Description |
3168
3168
  | ---------- | ---- | -------- | ----------- |
3169
- | question_set | [[QuestionSet](#QuestionSet)] | no | |
3169
+ | qc_type | [string] | no | |
3170
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3170
3171
  | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3171
- | display_name | string | no | |
3172
3172
  | id | number | no | |
3173
- | reasons | [[BagReasons](#BagReasons)] | no | |
3174
- | qc_type | [string] | no | |
3173
+ | display_name | string | no | |
3174
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
3175
3175
 
3176
3176
  ---
3177
3177
 
@@ -3182,8 +3182,8 @@ Successfully updateShipmentStatus!
3182
3182
 
3183
3183
  | Properties | Type | Nullable | Description |
3184
3184
  | ---------- | ---- | -------- | ----------- |
3185
- | reasons | [[BagReasons](#BagReasons)] | no | |
3186
3185
  | success | boolean | no | |
3186
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3187
3187
 
3188
3188
  ---
3189
3189
 
@@ -3194,12 +3194,12 @@ Successfully updateShipmentStatus!
3194
3194
 
3195
3195
  | Properties | Type | Nullable | Description |
3196
3196
  | ---------- | ---- | -------- | ----------- |
3197
- | reason_text | string | no | |
3198
- | flow | string | no | |
3199
3197
  | priority | number | no | |
3200
3198
  | show_text_area | boolean | no | |
3201
- | reason_id | number | no | |
3199
+ | flow | string | 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
- #### [EntityReasonData](#EntityReasonData)
3220
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3221
3221
 
3222
3222
  | Properties | Type | Nullable | Description |
3223
3223
  | ---------- | ---- | -------- | ----------- |
3224
- | reason_text | string | no | |
3225
- | reason_id | number | no | |
3224
+ | identifier | string | no | |
3225
+ | line_number | number | no | |
3226
3226
 
3227
3227
  ---
3228
3228
 
3229
3229
 
3230
3230
 
3231
3231
 
3232
- #### [EntitiesReasons](#EntitiesReasons)
3232
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
3233
3233
 
3234
3234
  | Properties | Type | Nullable | Description |
3235
3235
  | ---------- | ---- | -------- | ----------- |
3236
- | filters | [string] | no | |
3237
- | data | [EntityReasonData](#EntityReasonData) | no | |
3236
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3237
+ | data | string | no | |
3238
3238
 
3239
3239
  ---
3240
3240
 
3241
3241
 
3242
3242
 
3243
3243
 
3244
- #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3244
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3245
3245
 
3246
3246
  | Properties | Type | Nullable | Description |
3247
3247
  | ---------- | ---- | -------- | ----------- |
3248
- | line_number | number | no | |
3249
- | identifier | string | no | |
3250
- | quantity | number | no | |
3248
+ | filters | [string] | no | |
3249
+ | data | string | no | |
3251
3250
 
3252
3251
  ---
3253
3252
 
3254
3253
 
3255
3254
 
3256
3255
 
3257
- #### [ProductsReasonsData](#ProductsReasonsData)
3256
+ #### [DataUpdates](#DataUpdates)
3258
3257
 
3259
3258
  | Properties | Type | Nullable | Description |
3260
3259
  | ---------- | ---- | -------- | ----------- |
3261
- | reason_text | string | no | |
3262
- | reason_id | number | no | |
3260
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3261
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3263
3262
 
3264
3263
  ---
3265
3264
 
3266
3265
 
3267
3266
 
3268
3267
 
3269
- #### [ProductsReasons](#ProductsReasons)
3268
+ #### [Products](#Products)
3270
3269
 
3271
3270
  | Properties | Type | Nullable | Description |
3272
3271
  | ---------- | ---- | -------- | ----------- |
3273
- | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3274
- | data | [ProductsReasonsData](#ProductsReasonsData) | 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
- | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3286
- | products | [[ProductsReasons](#ProductsReasons)] | 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
- #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3294
+ #### [ProductsReasonsData](#ProductsReasonsData)
3294
3295
 
3295
3296
  | Properties | Type | Nullable | Description |
3296
3297
  | ---------- | ---- | -------- | ----------- |
3297
- | filters | [string] | no | |
3298
- | data | string | no | |
3298
+ | reason_text | string | no | |
3299
+ | reason_id | number | no | |
3299
3300
 
3300
3301
  ---
3301
3302
 
3302
3303
 
3303
3304
 
3304
3305
 
3305
- #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3306
+ #### [ProductsReasons](#ProductsReasons)
3306
3307
 
3307
3308
  | Properties | Type | Nullable | Description |
3308
3309
  | ---------- | ---- | -------- | ----------- |
3309
- | line_number | number | no | |
3310
- | identifier | string | no | |
3310
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3311
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3311
3312
 
3312
3313
  ---
3313
3314
 
3314
3315
 
3315
3316
 
3316
3317
 
3317
- #### [ProductsDataUpdates](#ProductsDataUpdates)
3318
+ #### [EntityReasonData](#EntityReasonData)
3318
3319
 
3319
3320
  | Properties | Type | Nullable | Description |
3320
3321
  | ---------- | ---- | -------- | ----------- |
3321
- | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3322
- | data | string | no | |
3322
+ | reason_text | string | no | |
3323
+ | reason_id | number | no | |
3323
3324
 
3324
3325
  ---
3325
3326
 
3326
3327
 
3327
3328
 
3328
3329
 
3329
- #### [DataUpdates](#DataUpdates)
3330
+ #### [EntitiesReasons](#EntitiesReasons)
3330
3331
 
3331
3332
  | Properties | Type | Nullable | Description |
3332
3333
  | ---------- | ---- | -------- | ----------- |
3333
- | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3334
- | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3334
+ | filters | [string] | no | |
3335
+ | data | [EntityReasonData](#EntityReasonData) | no | |
3335
3336
 
3336
3337
  ---
3337
3338
 
3338
3339
 
3339
3340
 
3340
3341
 
3341
- #### [Products](#Products)
3342
+ #### [ReasonsData](#ReasonsData)
3342
3343
 
3343
3344
  | Properties | Type | Nullable | Description |
3344
3345
  | ---------- | ---- | -------- | ----------- |
3345
- | line_number | number | no | |
3346
- | identifier | string | no | |
3347
- | quantity | number | 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
- | identifier | string | yes | |
3360
3358
  | data_updates | [DataUpdates](#DataUpdates) | no | |
3361
3359
  | products | [[Products](#Products)] | no | |
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
3372
  | exclude_bags_next_state | string | no | |
3374
3373
  | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3374
+ | status | string | no | |
3375
3375
 
3376
3376
  ---
3377
3377
 
@@ -3384,9 +3384,9 @@ Successfully updateShipmentStatus!
3384
3384
  | ---------- | ---- | -------- | ----------- |
3385
3385
  | task | boolean | no | |
3386
3386
  | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3387
+ | unlock_before_transition | boolean | no | |
3387
3388
  | lock_after_transition | boolean | no | |
3388
3389
  | force_transition | boolean | no | |
3389
- | unlock_before_transition | boolean | no | |
3390
3390
 
3391
3391
  ---
3392
3392
 
@@ -3419,10 +3419,10 @@ Successfully updateShipmentStatus!
3419
3419
 
3420
3420
  | Properties | Type | Nullable | Description |
3421
3421
  | ---------- | ---- | -------- | ----------- |
3422
- | message | string | no | |
3423
- | status | number | no | |
3424
3422
  | exception | string | no | |
3425
3423
  | code | string | no | |
3424
+ | status | number | no | |
3425
+ | message | string | no | |
3426
3426
  | stack_trace | string | no | |
3427
3427
 
3428
3428
  ---