@boxyhq/saml-jackson 0.2.3-beta.240 → 0.2.3-beta.241
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/controller/api.js +1 -1
- package/package.json +2 -2
package/dist/controller/api.js
CHANGED
|
@@ -35,9 +35,9 @@ exports.SAMLConfig = void 0;
|
|
|
35
35
|
const crypto_1 = __importDefault(require("crypto"));
|
|
36
36
|
const dbutils = __importStar(require("../db/utils"));
|
|
37
37
|
const saml_1 = __importDefault(require("../saml/saml"));
|
|
38
|
+
const x509_1 = __importDefault(require("../saml/x509"));
|
|
38
39
|
const error_1 = require("./error");
|
|
39
40
|
const utils_1 = require("./utils");
|
|
40
|
-
const x509_1 = __importDefault(require("../saml/x509"));
|
|
41
41
|
class SAMLConfig {
|
|
42
42
|
constructor({ configStore }) {
|
|
43
43
|
this.configStore = configStore;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boxyhq/saml-jackson",
|
|
3
|
-
"version": "0.2.3-beta.
|
|
3
|
+
"version": "0.2.3-beta.241",
|
|
4
4
|
"license": "Apache 2.0",
|
|
5
5
|
"description": "SAML 2.0 service",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"sql": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=sql DB_TYPE=postgres DB_URL=postgres://postgres:postgres@localhost:5432/jackson nodemon --config nodemon.json src/jackson.ts",
|
|
25
25
|
"pre-loaded": "cross-env JACKSON_API_KEYS=secret DB_ENGINE=mem PRE_LOADED_CONFIG='./_config' nodemon --config nodemon.json src/jackson.ts",
|
|
26
26
|
"pre-loaded-db": "cross-env JACKSON_API_KEYS=secret PRE_LOADED_CONFIG='./_config' nodemon --config nodemon.json src/jackson.ts",
|
|
27
|
-
"test": "tap --ts --timeout=100 src/**/*.test.ts",
|
|
27
|
+
"test": "tap --ts --timeout=100 --coverage src/**/*.test.ts ",
|
|
28
28
|
"dev-dbs": "docker-compose -f ./_dev/docker-compose.yml up -d",
|
|
29
29
|
"dev-dbs-destroy": "docker-compose -f ./_dev/docker-compose.yml down --volumes --remove-orphans",
|
|
30
30
|
"db:migration:generate": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:generate --config ormconfig.js -n Initial"
|