Skip to content

Commit 2757a8c

Browse files
author
Colby Sieber
committed
Updated lib
1 parent 1085814 commit 2757a8c

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

lib/graph-js-sdk-web.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ exports.oDataQueryNames = exports.oDataQueryNames.concat(exports.oDataQueryNames
352352

353353
},{}],5:[function(require,module,exports){
354354
"use strict";
355+
function __export(m) {
356+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
357+
}
355358
Object.defineProperty(exports, "__esModule", { value: true });
356359
var common_1 = require("./common");
357360
var GraphRequest_1 = require("./GraphRequest");
@@ -376,8 +379,11 @@ var Client = (function () {
376379
return Client;
377380
}());
378381
exports.Client = Client;
382+
__export(require("./GraphRequest"));
383+
__export(require("./common"));
384+
__export(require("./ResponseHandler"));
379385

380-
},{"./GraphRequest":2,"./common":4}],6:[function(require,module,exports){
386+
},{"./GraphRequest":2,"./ResponseHandler":3,"./common":4}],6:[function(require,module,exports){
381387

382388
/**
383389
* Expose `Emitter`.

lib/src/index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ export declare class Client {
55
static init(clientOptions?: Options): Client;
66
api(path: string): GraphRequest;
77
}
8+
export * from "./GraphRequest";
9+
export * from "./common";
10+
export * from "./ResponseHandler";

lib/src/index.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)