@boxyhq/saml-jackson 0.3.0-beta.249 → 0.3.0

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/typings.d.ts CHANGED
@@ -92,12 +92,12 @@ export declare type EncryptionKey = any;
92
92
  export declare type DatabaseEngine = 'redis' | 'sql' | 'mongo' | 'mem';
93
93
  export declare type DatabaseType = 'postgres' | 'mysql' | 'mariadb';
94
94
  export interface DatabaseOption {
95
- engine: DatabaseEngine;
96
- url: string;
97
- type: DatabaseType;
98
- ttl: number;
99
- cleanupLimit: number;
100
- encryptionKey: string;
95
+ engine?: DatabaseEngine;
96
+ url?: string;
97
+ type?: DatabaseType;
98
+ ttl?: number;
99
+ cleanupLimit?: number;
100
+ encryptionKey?: string;
101
101
  }
102
102
  export interface SAMLReq {
103
103
  ssoUrl?: string;
@@ -118,7 +118,7 @@ export interface SAMLProfile {
118
118
  export interface JacksonOption {
119
119
  externalUrl: string;
120
120
  samlPath: string;
121
- samlAudience: string;
121
+ samlAudience?: string;
122
122
  preLoadedConfig?: string;
123
123
  idpEnabled?: boolean;
124
124
  db: DatabaseOption;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "0.3.0-beta.249",
3
+ "version": "0.3.0",
4
4
  "license": "Apache 2.0",
5
5
  "description": "SAML 2.0 service",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "engines": {
9
- "node": ">=14.18.1"
9
+ "node": ">=14.x"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",