@shipengine/js-api 1.17.0 → 1.17.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.
|
@@ -27,13 +27,17 @@ export type AbbreviatedCreditCardInfo = {
|
|
|
27
27
|
};
|
|
28
28
|
export type FundingSourceInsuranceProvider = "parcelguard" | "x_cover";
|
|
29
29
|
export type Provider = "visa" | "mastercard" | "americanExpress" | "discover";
|
|
30
|
+
export interface FundingSourcePickupAddress extends Omit<FundingSourceAddress, "email" | "phone"> {
|
|
31
|
+
email?: string;
|
|
32
|
+
phone?: string;
|
|
33
|
+
}
|
|
30
34
|
export type FundingSourceCarrier = {
|
|
31
35
|
acceptedTerms: Term[];
|
|
32
36
|
agreeToTerms: boolean;
|
|
33
37
|
carrierCode: string;
|
|
34
38
|
fundingSourceId: string;
|
|
35
39
|
iovationBlackBox: IovationBlackBox;
|
|
36
|
-
pickupAddress?:
|
|
40
|
+
pickupAddress?: FundingSourcePickupAddress;
|
|
37
41
|
};
|
|
38
42
|
export type CarrierRegistrationInsuranceProvider = {
|
|
39
43
|
acceptedTerms: Term[];
|
|
@@ -49,7 +53,7 @@ export interface FundingSourceAddress {
|
|
|
49
53
|
addressLine1: string;
|
|
50
54
|
addressLine2?: string;
|
|
51
55
|
cityLocality: string;
|
|
52
|
-
company
|
|
56
|
+
company?: string;
|
|
53
57
|
countryCode: string;
|
|
54
58
|
email: string;
|
|
55
59
|
fullName: string;
|