@boxyhq/saml-jackson 0.2.3-beta.233 → 0.2.3-beta.237

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -357,7 +357,6 @@ To Do
357
357
  Jackson currently supports the following databases.
358
358
 
359
359
  - Postgres
360
- - CockroachDB
361
360
  - MySQL
362
361
  - MariaDB
363
362
  - MongoDB
@@ -381,7 +380,7 @@ The following options are supported and will have to be configured during deploy
381
380
  | IDP_ENABLED (npm: idpEnabled) | Set to `true` to enable IdP initiated login for SAML. SP initiated login is the only recommended flow but you might have to support IdP login at times. | `false` |
382
381
  | DB_ENGINE (npm: db.engine) | Supported values are `redis`, `sql`, `mongo`, `mem`. | `sql` |
383
382
  | DB_URL (npm: db.url) | The database URL to connect to. For example `postgres://postgres:postgres@localhost:5450/jackson` | |
384
- | DB_TYPE (npm: db.type) | Only needed when DB_ENGINE is `sql`. Supported values are `postgres`, `cockroachdb`, `mysql`, `mariadb`. | `postgres` |
383
+ | DB_TYPE (npm: db.type) | Only needed when DB_ENGINE is `sql`. Supported values are `postgres`, `mysql`, `mariadb`. | `postgres` |
385
384
  | DB_TTL (npm: db.ttl) | TTL for the code, session and token stores (in seconds). | 300 |
386
385
  | DB_CLEANUP_LIMIT (npm: db.cleanupLimit) | Limit cleanup of TTL entries to this number. | 1000 |
387
386
  | DB_ENCRYPTION_KEY (npm: db.encryptionKey) | To encrypt data at rest specify a 32 character key. | |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "0.2.3-beta.233",
3
+ "version": "0.2.3-beta.237",
4
4
  "license": "Apache 2.0",
5
5
  "description": "SAML 2.0 service",
6
6
  "main": "dist/index.js",
@@ -25,7 +25,8 @@
25
25
  "pre-loaded-db": "cross-env JACKSON_API_KEYS=secret PRE_LOADED_CONFIG='./_config' nodemon --config nodemon.json src/jackson.ts",
26
26
  "test": "tap --ts --timeout=100 src/**/*.test.ts",
27
27
  "dev-dbs": "docker-compose -f ./_dev/docker-compose.yml up -d",
28
- "dev-dbs-destroy": "docker-compose -f ./_dev/docker-compose.yml down --volumes --remove-orphans"
28
+ "dev-dbs-destroy": "docker-compose -f ./_dev/docker-compose.yml down --volumes --remove-orphans",
29
+ "db:migration:generate": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:generate --config ormconfig.js -n Initial"
29
30
  },
30
31
  "tap": {
31
32
  "coverage-map": "map.js",
@@ -71,7 +72,8 @@
71
72
  "sinon": "12.0.1",
72
73
  "tap": "15.1.5",
73
74
  "ts-node": "10.4.0",
74
- "typescript": "^4.5.4"
75
+ "tsconfig-paths": "3.12.0",
76
+ "typescript": "4.5.4"
75
77
  },
76
78
  "lint-staged": {
77
79
  "*.{js,ts}": "eslint --cache --fix",