@boxyhq/saml-jackson 0.2.3-beta.232 → 0.2.3-beta.236

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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +8 -4
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.232",
3
+ "version": "0.2.3-beta.236",
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",
@@ -54,6 +55,8 @@
54
55
  "xmlbuilder": "15.1.1"
55
56
  },
56
57
  "devDependencies": {
58
+ "@types/express": "^4.17.13",
59
+ "@types/node": "^16.11.17",
57
60
  "@types/redis": "4.0.11",
58
61
  "@types/sinon": "10.0.6",
59
62
  "@types/tap": "15.0.5",
@@ -69,13 +72,14 @@
69
72
  "sinon": "12.0.1",
70
73
  "tap": "15.1.5",
71
74
  "ts-node": "10.4.0",
72
- "typescript": "^4.5.4"
75
+ "tsconfig-paths": "3.12.0",
76
+ "typescript": "4.5.4"
73
77
  },
74
78
  "lint-staged": {
75
79
  "*.{js,ts}": "eslint --cache --fix",
76
80
  "*.{js,ts,css,md}": "prettier --write"
77
81
  },
78
- "files" : [
82
+ "files": [
79
83
  "dist",
80
84
  "Dockerfile"
81
85
  ]