Skip to content

Commit f6855e2

Browse files
committed
Add CrossSell instance to api-js index
1 parent 1ab98e8 commit f6855e2

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import Account from './api/account';
2121
import Orders from './api/orders';
2222
import jwtDecode from 'jwt-decode';
2323
import Analytics from './api/analytics';
24+
import CrossSell from './api/cross-sell';
2425

2526
export default class Api {
2627
constructor(args) {
@@ -67,6 +68,10 @@ export default class Api {
6768
// @property analytics: Analytics
6869
// Analytics instance
6970
this.analytics = new Analytics(this);
71+
72+
// @property crossSell: CrossSell
73+
// CrossSell instance
74+
this.crossSell = new CrossSell(this);
7075
}
7176

7277
// @method addAuth(jwt: String): FoxApi

0 commit comments

Comments
 (0)