@shipengine/js-api 4.0.0 → 4.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.
- package/auctane-pay/types.d.ts +5 -5
- package/package.json +1 -1
package/auctane-pay/types.d.ts
CHANGED
|
@@ -24,16 +24,16 @@ export type AuctanePayTransactionCategory = "add_funds" | "subscription" | "stor
|
|
|
24
24
|
* @category Entities
|
|
25
25
|
*/
|
|
26
26
|
export interface CreateSessionRequest {
|
|
27
|
+
/**
|
|
28
|
+
* Category of the transaction
|
|
29
|
+
* @example "add_funds"
|
|
30
|
+
*/
|
|
31
|
+
paymentPreferences: AuctanePayTransactionCategory[];
|
|
27
32
|
/**
|
|
28
33
|
* URL to redirect after payment session completion
|
|
29
34
|
* @example "https://dashboard.shipengine.com/?sessionId=:id"
|
|
30
35
|
*/
|
|
31
36
|
returnUrl?: string;
|
|
32
|
-
/**
|
|
33
|
-
* Category of the transaction
|
|
34
|
-
* @example "add_funds"
|
|
35
|
-
*/
|
|
36
|
-
transactionCategory: AuctanePayTransactionCategory;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* @category Entities
|