@boxyhq/saml-jackson 0.3.0-beta.246 → 0.3.0-beta.247
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/dist/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { JacksonOption } from './typings';
|
2
2
|
import { SAMLConfig } from './controller/api';
|
3
3
|
import { OAuthController } from './controller/oauth';
|
4
|
-
declare const controllers: (opts: JacksonOption) => Promise<{
|
4
|
+
export declare const controllers: (opts: JacksonOption) => Promise<{
|
5
5
|
apiController: SAMLConfig;
|
6
6
|
oauthController: OAuthController;
|
7
7
|
}>;
|
package/dist/index.js
CHANGED
@@ -22,6 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
22
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
23
23
|
};
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
+
exports.controllers = void 0;
|
25
26
|
const api_1 = require("./controller/api");
|
26
27
|
const oauth_1 = require("./controller/oauth");
|
27
28
|
const db_1 = __importDefault(require("./db/db"));
|
@@ -76,5 +77,6 @@ const controllers = (opts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
76
77
|
oauthController,
|
77
78
|
};
|
78
79
|
});
|
79
|
-
exports.
|
80
|
+
exports.controllers = controllers;
|
81
|
+
exports.default = exports.controllers;
|
80
82
|
__exportStar(require("./typings"), exports);
|