@shipengine/js-api 4.17.1 → 4.17.2
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/auctane-pay/types.d.ts +11 -11
- package/package.json +1 -1
package/auctane-pay/types.d.ts
CHANGED
|
@@ -55,22 +55,22 @@ export interface CreateSessionRequest {
|
|
|
55
55
|
}
|
|
56
56
|
export interface UpdatePaymentMethodRequest {
|
|
57
57
|
/** Billing Address associated with the Payment Method */
|
|
58
|
-
billingAddress
|
|
59
|
-
addressLine1
|
|
60
|
-
addressLine2
|
|
61
|
-
cityLocality
|
|
62
|
-
countryCode
|
|
63
|
-
postalCode
|
|
64
|
-
stateProvince
|
|
58
|
+
billingAddress?: {
|
|
59
|
+
addressLine1?: string;
|
|
60
|
+
addressLine2?: string;
|
|
61
|
+
cityLocality?: string;
|
|
62
|
+
countryCode?: string;
|
|
63
|
+
postalCode?: string;
|
|
64
|
+
stateProvince?: string;
|
|
65
65
|
};
|
|
66
66
|
/** Transaction categories for this Payment Method */
|
|
67
|
-
defaultPaymentMethodCategories
|
|
67
|
+
defaultPaymentMethodCategories?: AuctanePayTransactionCategory[];
|
|
68
68
|
/** Expiration Date for the Payment Method (Format: MM/YYYY) */
|
|
69
|
-
expirationDate
|
|
69
|
+
expirationDate?: string;
|
|
70
70
|
/** Holder name for the payment method */
|
|
71
|
-
holderName
|
|
71
|
+
holderName?: string;
|
|
72
72
|
/** Nickname used for this Payment Method */
|
|
73
|
-
nickname
|
|
73
|
+
nickname?: string;
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* @category Entities
|