We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ab98e8 commit f6855e2Copy full SHA for f6855e2
1 file changed
src/index.js
@@ -21,6 +21,7 @@ import Account from './api/account';
21
import Orders from './api/orders';
22
import jwtDecode from 'jwt-decode';
23
import Analytics from './api/analytics';
24
+import CrossSell from './api/cross-sell';
25
26
export default class Api {
27
constructor(args) {
@@ -67,6 +68,10 @@ export default class Api {
67
68
// @property analytics: Analytics
69
// Analytics instance
70
this.analytics = new Analytics(this);
71
+
72
+ // @property crossSell: CrossSell
73
+ // CrossSell instance
74
+ this.crossSell = new CrossSell(this);
75
}
76
77
// @method addAuth(jwt: String): FoxApi
0 commit comments