nuudel-main 1.0.3 → 1.0.4
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.
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { nextPlugin } from './next/NextPlugin';
|
|
2
2
|
import oauth2, { oauthPlugin } from './oauth/oauthPlugin';
|
|
3
|
-
|
|
3
|
+
import fbProfile from './oauth/facebook';
|
|
4
|
+
export * from './oauth/utils';
|
|
5
|
+
export { nextPlugin, oauthPlugin, oauth2, fbProfile };
|
|
@@ -18,11 +18,20 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
18
18
|
__setModuleDefault(result, mod);
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
22
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
21
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.oauth2 = exports.oauthPlugin = exports.nextPlugin = void 0;
|
|
28
|
+
exports.fbProfile = exports.oauth2 = exports.oauthPlugin = exports.nextPlugin = void 0;
|
|
23
29
|
const NextPlugin_1 = require("./next/NextPlugin");
|
|
24
30
|
Object.defineProperty(exports, "nextPlugin", { enumerable: true, get: function () { return NextPlugin_1.nextPlugin; } });
|
|
25
31
|
const oauthPlugin_1 = __importStar(require("./oauth/oauthPlugin"));
|
|
26
32
|
exports.oauth2 = oauthPlugin_1.default;
|
|
27
33
|
Object.defineProperty(exports, "oauthPlugin", { enumerable: true, get: function () { return oauthPlugin_1.oauthPlugin; } });
|
|
28
|
-
|
|
34
|
+
const facebook_1 = __importDefault(require("./oauth/facebook"));
|
|
35
|
+
exports.fbProfile = facebook_1.default;
|
|
36
|
+
__exportStar(require("./oauth/utils"), exports);
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BsdWdpbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsa0RBQStDO0FBS3RDLDJGQUxBLHVCQUFVLE9BS0E7QUFKbkIsbUVBQTBEO0FBSXhCLGlCQUozQixxQkFBTSxDQUkyQjtBQUFuQiw0RkFKSix5QkFBVyxPQUlJO0FBSGhDLGdFQUF5QztBQUdDLG9CQUhuQyxrQkFBUyxDQUdtQztBQUZuRCxnREFBOEIifQ==
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { nextPlugin } from './next/NextPlugin';
|
|
2
2
|
import oauth2, { oauthPlugin } from './oauth/oauthPlugin';
|
|
3
|
-
|
|
3
|
+
import fbProfile from './oauth/facebook';
|
|
4
|
+
export * from './oauth/utils';
|
|
5
|
+
export { nextPlugin, oauthPlugin, oauth2, fbProfile };
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { nextPlugin } from './next/NextPlugin';
|
|
2
2
|
import oauth2, { oauthPlugin } from './oauth/oauthPlugin';
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
import fbProfile from './oauth/facebook';
|
|
4
|
+
export * from './oauth/utils';
|
|
5
|
+
export { nextPlugin, oauthPlugin, oauth2, fbProfile };
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbGliL3BsdWdpbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDL0MsT0FBTyxNQUFNLEVBQUUsRUFBRSxXQUFXLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUMxRCxPQUFPLFNBQVMsTUFBTSxrQkFBa0IsQ0FBQztBQUN6QyxjQUFjLGVBQWUsQ0FBQztBQUU5QixPQUFPLEVBQUUsVUFBVSxFQUFFLFdBQVcsRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLENBQUMifQ==
|