@redotech/redo-api-schema 2.2.155 → 2.2.161
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.
- package/lib/openapi.d.ts +136 -53
- package/lib/openapi.yaml +186 -55
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -575,12 +575,20 @@ export interface components {
|
|
|
575
575
|
* @description Exchange order
|
|
576
576
|
*/
|
|
577
577
|
exchange?: {
|
|
578
|
+
/** @description Total quantity of all exchange items */
|
|
579
|
+
itemCount?: number;
|
|
578
580
|
/** Line items */
|
|
579
581
|
items: {
|
|
580
582
|
/** ID */
|
|
581
583
|
id: string;
|
|
584
|
+
/** @description Price details for the exchange item */
|
|
585
|
+
price?: {
|
|
586
|
+
amount?: string;
|
|
587
|
+
currency?: string;
|
|
588
|
+
tax?: string;
|
|
589
|
+
};
|
|
582
590
|
/** Product */
|
|
583
|
-
product
|
|
591
|
+
product?: components["schemas"]["product.schema"];
|
|
584
592
|
/** Quantity */
|
|
585
593
|
quantity: components["schemas"]["item-quantity.schema"];
|
|
586
594
|
variant: components["schemas"]["product-variant.schema"];
|
|
@@ -591,11 +599,20 @@ export interface components {
|
|
|
591
599
|
* @description ID of external order
|
|
592
600
|
*/
|
|
593
601
|
externalId?: string;
|
|
594
|
-
id?: string;
|
|
595
602
|
};
|
|
596
603
|
/** Provision */
|
|
597
604
|
provision: components["schemas"]["exchange-provision.schema"];
|
|
605
|
+
/** @description Total tax for exchange items */
|
|
606
|
+
totalTax?: {
|
|
607
|
+
amount?: string;
|
|
608
|
+
currency?: string;
|
|
609
|
+
};
|
|
598
610
|
};
|
|
611
|
+
/**
|
|
612
|
+
* External Order IDs
|
|
613
|
+
* @description Array of external order IDs associated with this return
|
|
614
|
+
*/
|
|
615
|
+
externalOrderIds?: string[];
|
|
599
616
|
/**
|
|
600
617
|
* Gift cards
|
|
601
618
|
* @description Gift card(s) created for return
|
|
@@ -620,58 +637,87 @@ export interface components {
|
|
|
620
637
|
*/
|
|
621
638
|
id: string;
|
|
622
639
|
/** @description Return items */
|
|
623
|
-
items:
|
|
624
|
-
/**
|
|
640
|
+
items: {
|
|
641
|
+
/** @description Customer's comment about the return */
|
|
642
|
+
customerComment?: string;
|
|
643
|
+
/**
|
|
644
|
+
* Exchange item
|
|
645
|
+
* @description Exchange item details if this return item is being exchanged
|
|
646
|
+
*/
|
|
625
647
|
exchangeItem?: {
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
648
|
+
product?: {
|
|
649
|
+
externalId?: string;
|
|
650
|
+
name?: string;
|
|
651
|
+
};
|
|
652
|
+
quantity?: number;
|
|
653
|
+
variant?: {
|
|
654
|
+
externalId?: string;
|
|
655
|
+
name?: string;
|
|
656
|
+
};
|
|
631
657
|
};
|
|
658
|
+
/** @description Whether this is a green return (no physical return required) */
|
|
659
|
+
greenReturn?: boolean;
|
|
632
660
|
/**
|
|
633
661
|
* ID
|
|
634
662
|
* @description Return item ID.
|
|
635
663
|
*/
|
|
636
|
-
id
|
|
664
|
+
id: string;
|
|
637
665
|
/**
|
|
638
666
|
* Order item
|
|
639
667
|
* @description Order line item
|
|
640
668
|
*/
|
|
641
|
-
orderItem
|
|
669
|
+
orderItem: {
|
|
642
670
|
/**
|
|
643
671
|
* ID
|
|
644
|
-
* @description Line item ID in
|
|
672
|
+
* @description Line item reference ID in format: {orderId}/{lineItemIndex}
|
|
673
|
+
*/
|
|
674
|
+
id: string;
|
|
675
|
+
/**
|
|
676
|
+
* Line Item ID
|
|
677
|
+
* @description Original Shopify line item ID
|
|
645
678
|
*/
|
|
646
|
-
|
|
679
|
+
line_item_id?: string;
|
|
647
680
|
};
|
|
648
|
-
/**
|
|
649
|
-
|
|
650
|
-
/** @description
|
|
681
|
+
/** @description Product ID */
|
|
682
|
+
productId?: string;
|
|
683
|
+
/** @description Quantity of items being returned */
|
|
684
|
+
quantity: number;
|
|
685
|
+
/** @description Primary return reason */
|
|
651
686
|
reason: string;
|
|
652
|
-
/** @description
|
|
687
|
+
/** @description Return reason code */
|
|
688
|
+
reasonCode?: string;
|
|
689
|
+
/** @description Array of return reasons */
|
|
690
|
+
reasons?: string[];
|
|
691
|
+
/** @description Refund details */
|
|
653
692
|
refund?: {
|
|
654
693
|
/** Amount */
|
|
655
694
|
amount: components["schemas"]["money.schema"];
|
|
656
|
-
/**
|
|
657
|
-
|
|
658
|
-
/**
|
|
659
|
-
* Taxes
|
|
660
|
-
* @description Taxes.
|
|
661
|
-
*/
|
|
662
|
-
pendingTaxAmount: components["schemas"]["money.schema"];
|
|
663
|
-
/**
|
|
664
|
-
* Taxes
|
|
665
|
-
* @description Taxes.
|
|
666
|
-
*/
|
|
667
|
-
taxAmount: components["schemas"]["money.schema"];
|
|
668
|
-
/**
|
|
669
|
-
* @description Refund method
|
|
670
|
-
* @enum {string}
|
|
671
|
-
*/
|
|
672
|
-
type: "credit" | "refund";
|
|
695
|
+
/** @description Refund strategy */
|
|
696
|
+
type?: string;
|
|
673
697
|
};
|
|
674
|
-
|
|
698
|
+
/** @description Product SKU */
|
|
699
|
+
sku?: string;
|
|
700
|
+
/** @description Return item status */
|
|
701
|
+
status?: string;
|
|
702
|
+
/** @description Product variant ID */
|
|
703
|
+
variantId?: string;
|
|
704
|
+
}[];
|
|
705
|
+
/**
|
|
706
|
+
* Notes
|
|
707
|
+
* @description Teammembers generated notes and comments on the return
|
|
708
|
+
*/
|
|
709
|
+
notes?: {
|
|
710
|
+
/**
|
|
711
|
+
* Image URL
|
|
712
|
+
* @description Optional image URL attached to the note
|
|
713
|
+
*/
|
|
714
|
+
image?: string;
|
|
715
|
+
/**
|
|
716
|
+
* Message
|
|
717
|
+
* @description The note text
|
|
718
|
+
*/
|
|
719
|
+
message: string;
|
|
720
|
+
}[];
|
|
675
721
|
/**
|
|
676
722
|
* Order
|
|
677
723
|
* @description Original order.
|
|
@@ -688,24 +734,17 @@ export interface components {
|
|
|
688
734
|
* Shipment
|
|
689
735
|
* @description Shipment, if has been made
|
|
690
736
|
*/
|
|
691
|
-
shipment?:
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
status?: "pre_transit" | "transit" | "delivered" | "cancelled" | "flagged";
|
|
703
|
-
/**
|
|
704
|
-
* Tracker
|
|
705
|
-
* @description Tracking number
|
|
706
|
-
*/
|
|
707
|
-
tracker?: string;
|
|
708
|
-
};
|
|
737
|
+
shipment?: components["schemas"]["return-shipment.schema"];
|
|
738
|
+
/**
|
|
739
|
+
* Shipments
|
|
740
|
+
* @description Array of all shipments associated with this return
|
|
741
|
+
*/
|
|
742
|
+
shipments?: components["schemas"]["return-shipment.schema"][];
|
|
743
|
+
/**
|
|
744
|
+
* Shopify Order IDs
|
|
745
|
+
* @description Array of Shopify order IDs (deprecated, use externalOrderIds)
|
|
746
|
+
*/
|
|
747
|
+
shopifyOrderIds?: string[];
|
|
709
748
|
source: {
|
|
710
749
|
/**
|
|
711
750
|
* Email address
|
|
@@ -734,6 +773,28 @@ export interface components {
|
|
|
734
773
|
* @description Return status.
|
|
735
774
|
*/
|
|
736
775
|
status: components["schemas"]["return-status.schema"];
|
|
776
|
+
/**
|
|
777
|
+
* Totals
|
|
778
|
+
* @description Calculated totals for the return
|
|
779
|
+
*/
|
|
780
|
+
totals?: {
|
|
781
|
+
/** @description The upsell amount for the exchange order */
|
|
782
|
+
charge: {
|
|
783
|
+
amount: components["schemas"]["money.schema"];
|
|
784
|
+
};
|
|
785
|
+
/** @description Total value of new items in exchange */
|
|
786
|
+
exchange: {
|
|
787
|
+
amount: components["schemas"]["money.schema"];
|
|
788
|
+
};
|
|
789
|
+
/** @description Total refund amount excluding shipping */
|
|
790
|
+
refund: {
|
|
791
|
+
amount: components["schemas"]["money.schema"];
|
|
792
|
+
};
|
|
793
|
+
/** @description Total store credit amount */
|
|
794
|
+
storeCredit: {
|
|
795
|
+
amount: components["schemas"]["money.schema"];
|
|
796
|
+
};
|
|
797
|
+
};
|
|
737
798
|
/**
|
|
738
799
|
* Type
|
|
739
800
|
* @description Return type.
|
|
@@ -746,6 +807,28 @@ export interface components {
|
|
|
746
807
|
*/
|
|
747
808
|
updatedAt: string;
|
|
748
809
|
};
|
|
810
|
+
/**
|
|
811
|
+
* Return Shipment
|
|
812
|
+
* @description Return shipment tracking information
|
|
813
|
+
*/
|
|
814
|
+
"return-shipment.schema": {
|
|
815
|
+
/**
|
|
816
|
+
* Carrier
|
|
817
|
+
* @description Carrier code
|
|
818
|
+
*/
|
|
819
|
+
carrier?: string;
|
|
820
|
+
/**
|
|
821
|
+
* Status
|
|
822
|
+
* @description Status of shipment
|
|
823
|
+
* @enum {string}
|
|
824
|
+
*/
|
|
825
|
+
status?: "unknown" | "pre_transit" | "in_transit" | "out_for_delivery" | "available_for_pickup" | "cancelled" | "delivered" | "error" | "failure" | "return_to_sender" | "expired";
|
|
826
|
+
/**
|
|
827
|
+
* Tracker
|
|
828
|
+
* @description Tracking number
|
|
829
|
+
*/
|
|
830
|
+
tracker?: string;
|
|
831
|
+
};
|
|
749
832
|
/**
|
|
750
833
|
* Return status
|
|
751
834
|
* @description Return status.
|
package/lib/openapi.yaml
CHANGED
|
@@ -33,6 +33,8 @@ components:
|
|
|
33
33
|
in: header
|
|
34
34
|
name: X-Page-Size
|
|
35
35
|
schema:
|
|
36
|
+
maximum: 500
|
|
37
|
+
minimum: 1
|
|
36
38
|
type: integer
|
|
37
39
|
return-id.param:
|
|
38
40
|
description: Return ID
|
|
@@ -540,12 +542,25 @@ components:
|
|
|
540
542
|
exchange:
|
|
541
543
|
description: Exchange order
|
|
542
544
|
properties:
|
|
545
|
+
itemCount:
|
|
546
|
+
description: Total quantity of all exchange items
|
|
547
|
+
type: integer
|
|
543
548
|
items:
|
|
544
549
|
items:
|
|
545
550
|
properties:
|
|
546
551
|
id:
|
|
547
552
|
title: ID
|
|
548
553
|
type: string
|
|
554
|
+
price:
|
|
555
|
+
description: Price details for the exchange item
|
|
556
|
+
properties:
|
|
557
|
+
amount:
|
|
558
|
+
type: string
|
|
559
|
+
currency:
|
|
560
|
+
type: string
|
|
561
|
+
tax:
|
|
562
|
+
type: string
|
|
563
|
+
type: object
|
|
549
564
|
product:
|
|
550
565
|
$ref: '#/components/schemas/product.schema'
|
|
551
566
|
title: Product
|
|
@@ -557,7 +572,6 @@ components:
|
|
|
557
572
|
required:
|
|
558
573
|
- id
|
|
559
574
|
- quantity
|
|
560
|
-
- product
|
|
561
575
|
- variant
|
|
562
576
|
title: Line items
|
|
563
577
|
type: array
|
|
@@ -567,17 +581,29 @@ components:
|
|
|
567
581
|
description: ID of external order
|
|
568
582
|
title: External ID
|
|
569
583
|
type: string
|
|
570
|
-
id:
|
|
571
|
-
type: string
|
|
572
584
|
type: object
|
|
573
585
|
provision:
|
|
574
586
|
$ref: '#/components/schemas/exchange-provision.schema'
|
|
575
587
|
title: Provision
|
|
588
|
+
totalTax:
|
|
589
|
+
description: Total tax for exchange items
|
|
590
|
+
properties:
|
|
591
|
+
amount:
|
|
592
|
+
type: string
|
|
593
|
+
currency:
|
|
594
|
+
type: string
|
|
595
|
+
type: object
|
|
576
596
|
required:
|
|
577
597
|
- items
|
|
578
598
|
- provision
|
|
579
599
|
title: Exchange
|
|
580
600
|
type: object
|
|
601
|
+
externalOrderIds:
|
|
602
|
+
description: Array of external order IDs associated with this return
|
|
603
|
+
items:
|
|
604
|
+
type: string
|
|
605
|
+
title: External Order IDs
|
|
606
|
+
type: array
|
|
581
607
|
giftCards:
|
|
582
608
|
description: Gift card(s) created for return
|
|
583
609
|
items:
|
|
@@ -610,16 +636,33 @@ components:
|
|
|
610
636
|
description: Return items
|
|
611
637
|
items:
|
|
612
638
|
properties:
|
|
639
|
+
customerComment:
|
|
640
|
+
description: Customer's comment about the return
|
|
641
|
+
type: string
|
|
613
642
|
exchangeItem:
|
|
643
|
+
description: Exchange item details if this return item is being exchanged
|
|
614
644
|
properties:
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
645
|
+
product:
|
|
646
|
+
properties:
|
|
647
|
+
externalId:
|
|
648
|
+
type: string
|
|
649
|
+
name:
|
|
650
|
+
type: string
|
|
651
|
+
type: object
|
|
652
|
+
quantity:
|
|
653
|
+
type: integer
|
|
654
|
+
variant:
|
|
655
|
+
properties:
|
|
656
|
+
externalId:
|
|
657
|
+
type: string
|
|
658
|
+
name:
|
|
659
|
+
type: string
|
|
660
|
+
type: object
|
|
621
661
|
title: Exchange item
|
|
622
662
|
type: object
|
|
663
|
+
greenReturn:
|
|
664
|
+
description: Whether this is a green return (no physical return required)
|
|
665
|
+
type: boolean
|
|
623
666
|
id:
|
|
624
667
|
description: Return item ID.
|
|
625
668
|
title: ID
|
|
@@ -628,58 +671,82 @@ components:
|
|
|
628
671
|
description: Order line item
|
|
629
672
|
properties:
|
|
630
673
|
id:
|
|
631
|
-
description: 'Line item ID in
|
|
674
|
+
description: 'Line item reference ID in format: {orderId}/{lineItemIndex}'
|
|
632
675
|
title: ID
|
|
633
676
|
type: string
|
|
677
|
+
line_item_id:
|
|
678
|
+
description: Original Shopify line item ID
|
|
679
|
+
title: Line Item ID
|
|
680
|
+
type: string
|
|
634
681
|
required:
|
|
635
|
-
-
|
|
682
|
+
- id
|
|
636
683
|
title: Order item
|
|
637
684
|
type: object
|
|
685
|
+
productId:
|
|
686
|
+
description: Product ID
|
|
687
|
+
type: string
|
|
638
688
|
quantity:
|
|
639
|
-
|
|
640
|
-
|
|
689
|
+
description: Quantity of items being returned
|
|
690
|
+
type: integer
|
|
641
691
|
reason:
|
|
642
|
-
description:
|
|
692
|
+
description: Primary return reason
|
|
643
693
|
examples:
|
|
644
694
|
- Too big
|
|
645
695
|
- Other
|
|
646
696
|
type: string
|
|
697
|
+
reasonCode:
|
|
698
|
+
description: Return reason code
|
|
699
|
+
type: string
|
|
700
|
+
reasons:
|
|
701
|
+
description: Array of return reasons
|
|
702
|
+
items:
|
|
703
|
+
type: string
|
|
704
|
+
type: array
|
|
647
705
|
refund:
|
|
648
|
-
description: Refund
|
|
706
|
+
description: Refund details
|
|
649
707
|
properties:
|
|
650
708
|
amount:
|
|
651
709
|
$ref: '#/components/schemas/money.schema'
|
|
652
710
|
title: Amount
|
|
653
|
-
pendingAmount:
|
|
654
|
-
$ref: '#/components/schemas/money.schema'
|
|
655
|
-
title: Planned amount
|
|
656
|
-
pendingTaxAmount:
|
|
657
|
-
$ref: '#/components/schemas/money.schema'
|
|
658
|
-
description: Taxes.
|
|
659
|
-
title: Taxes
|
|
660
|
-
taxAmount:
|
|
661
|
-
$ref: '#/components/schemas/money.schema'
|
|
662
|
-
description: Taxes.
|
|
663
|
-
title: Taxes
|
|
664
711
|
type:
|
|
665
|
-
description: Refund
|
|
666
|
-
enum:
|
|
667
|
-
- credit
|
|
668
|
-
- refund
|
|
712
|
+
description: Refund strategy
|
|
669
713
|
type: string
|
|
670
714
|
required:
|
|
671
715
|
- amount
|
|
672
|
-
- pendingAmount
|
|
673
|
-
- pendingTaxAmount
|
|
674
|
-
- taxAmount
|
|
675
|
-
- type
|
|
676
716
|
type: object
|
|
717
|
+
sku:
|
|
718
|
+
description: Product SKU
|
|
719
|
+
type: string
|
|
720
|
+
status:
|
|
721
|
+
description: Return item status
|
|
722
|
+
type: string
|
|
723
|
+
variantId:
|
|
724
|
+
description: Product variant ID
|
|
725
|
+
type: string
|
|
677
726
|
required:
|
|
678
|
-
-
|
|
727
|
+
- id
|
|
728
|
+
- orderItem
|
|
679
729
|
- quantity
|
|
680
730
|
- reason
|
|
681
731
|
type: object
|
|
682
732
|
type: array
|
|
733
|
+
notes:
|
|
734
|
+
description: Teammembers generated notes and comments on the return
|
|
735
|
+
items:
|
|
736
|
+
properties:
|
|
737
|
+
image:
|
|
738
|
+
description: Optional image URL attached to the note
|
|
739
|
+
title: Image URL
|
|
740
|
+
type: string
|
|
741
|
+
message:
|
|
742
|
+
description: The note text
|
|
743
|
+
title: Message
|
|
744
|
+
type: string
|
|
745
|
+
required:
|
|
746
|
+
- message
|
|
747
|
+
type: object
|
|
748
|
+
title: Notes
|
|
749
|
+
type: array
|
|
683
750
|
order:
|
|
684
751
|
description: Original order.
|
|
685
752
|
properties:
|
|
@@ -693,28 +760,21 @@ components:
|
|
|
693
760
|
title: Order
|
|
694
761
|
type: object
|
|
695
762
|
shipment:
|
|
763
|
+
$ref: '#/components/schemas/return-shipment.schema'
|
|
696
764
|
description: Shipment, if has been made
|
|
697
|
-
properties:
|
|
698
|
-
carrier:
|
|
699
|
-
description: Carrier code
|
|
700
|
-
title: Carrier
|
|
701
|
-
type: string
|
|
702
|
-
status:
|
|
703
|
-
description: Status of shipment
|
|
704
|
-
enum:
|
|
705
|
-
- pre_transit
|
|
706
|
-
- transit
|
|
707
|
-
- delivered
|
|
708
|
-
- cancelled
|
|
709
|
-
- flagged
|
|
710
|
-
title: Status
|
|
711
|
-
type: string
|
|
712
|
-
tracker:
|
|
713
|
-
description: Tracking number
|
|
714
|
-
title: Tracker
|
|
715
|
-
type: string
|
|
716
765
|
title: Shipment
|
|
717
|
-
|
|
766
|
+
shipments:
|
|
767
|
+
description: Array of all shipments associated with this return
|
|
768
|
+
items:
|
|
769
|
+
$ref: '#/components/schemas/return-shipment.schema'
|
|
770
|
+
title: Shipments
|
|
771
|
+
type: array
|
|
772
|
+
shopifyOrderIds:
|
|
773
|
+
description: Array of Shopify order IDs (deprecated, use externalOrderIds)
|
|
774
|
+
items:
|
|
775
|
+
type: string
|
|
776
|
+
title: Shopify Order IDs
|
|
777
|
+
type: array
|
|
718
778
|
source:
|
|
719
779
|
properties:
|
|
720
780
|
emailAddress:
|
|
@@ -744,6 +804,48 @@ components:
|
|
|
744
804
|
$ref: '#/components/schemas/return-status.schema'
|
|
745
805
|
description: Return status.
|
|
746
806
|
title: Status
|
|
807
|
+
totals:
|
|
808
|
+
description: Calculated totals for the return
|
|
809
|
+
properties:
|
|
810
|
+
charge:
|
|
811
|
+
description: The upsell amount for the exchange order
|
|
812
|
+
properties:
|
|
813
|
+
amount:
|
|
814
|
+
$ref: '#/components/schemas/money.schema'
|
|
815
|
+
required:
|
|
816
|
+
- amount
|
|
817
|
+
type: object
|
|
818
|
+
exchange:
|
|
819
|
+
description: Total value of new items in exchange
|
|
820
|
+
properties:
|
|
821
|
+
amount:
|
|
822
|
+
$ref: '#/components/schemas/money.schema'
|
|
823
|
+
required:
|
|
824
|
+
- amount
|
|
825
|
+
type: object
|
|
826
|
+
refund:
|
|
827
|
+
description: Total refund amount excluding shipping
|
|
828
|
+
properties:
|
|
829
|
+
amount:
|
|
830
|
+
$ref: '#/components/schemas/money.schema'
|
|
831
|
+
required:
|
|
832
|
+
- amount
|
|
833
|
+
type: object
|
|
834
|
+
storeCredit:
|
|
835
|
+
description: Total store credit amount
|
|
836
|
+
properties:
|
|
837
|
+
amount:
|
|
838
|
+
$ref: '#/components/schemas/money.schema'
|
|
839
|
+
required:
|
|
840
|
+
- amount
|
|
841
|
+
type: object
|
|
842
|
+
required:
|
|
843
|
+
- refund
|
|
844
|
+
- exchange
|
|
845
|
+
- storeCredit
|
|
846
|
+
- charge
|
|
847
|
+
title: Totals
|
|
848
|
+
type: object
|
|
747
849
|
type:
|
|
748
850
|
$ref: '#/components/schemas/return-type.schema'
|
|
749
851
|
description: Return type.
|
|
@@ -765,6 +867,35 @@ components:
|
|
|
765
867
|
- updatedAt
|
|
766
868
|
title: Return
|
|
767
869
|
type: object
|
|
870
|
+
return-shipment.schema:
|
|
871
|
+
description: Return shipment tracking information
|
|
872
|
+
properties:
|
|
873
|
+
carrier:
|
|
874
|
+
description: Carrier code
|
|
875
|
+
title: Carrier
|
|
876
|
+
type: string
|
|
877
|
+
status:
|
|
878
|
+
description: Status of shipment
|
|
879
|
+
enum:
|
|
880
|
+
- unknown
|
|
881
|
+
- pre_transit
|
|
882
|
+
- in_transit
|
|
883
|
+
- out_for_delivery
|
|
884
|
+
- available_for_pickup
|
|
885
|
+
- cancelled
|
|
886
|
+
- delivered
|
|
887
|
+
- error
|
|
888
|
+
- failure
|
|
889
|
+
- return_to_sender
|
|
890
|
+
- expired
|
|
891
|
+
title: Status
|
|
892
|
+
type: string
|
|
893
|
+
tracker:
|
|
894
|
+
description: Tracking number
|
|
895
|
+
title: Tracker
|
|
896
|
+
type: string
|
|
897
|
+
title: Return Shipment
|
|
898
|
+
type: object
|
|
768
899
|
return-status-update.schema:
|
|
769
900
|
description: |
|
|
770
901
|
Return status.
|
package/package.json
CHANGED