@boxyhq/saml-jackson 0.3.0-beta.250 → 0.3.1-beta.255

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/dist/typings.d.ts +10 -10
  2. package/package.json +2 -2
package/dist/typings.d.ts CHANGED
@@ -13,15 +13,15 @@ export interface OAuth {
13
13
  export interface IAPIController {
14
14
  config(body: IdPConfig): Promise<OAuth>;
15
15
  getConfig(body: {
16
- clientID: string;
17
- tenant: string;
18
- product: string;
16
+ clientID?: string;
17
+ tenant?: string;
18
+ product?: string;
19
19
  }): Promise<Partial<OAuth>>;
20
20
  deleteConfig(body: {
21
- clientID: string;
22
- clientSecret: string;
23
- tenant: string;
24
- product: string;
21
+ clientID?: string;
22
+ clientSecret?: string;
23
+ tenant?: string;
24
+ product?: string;
25
25
  }): Promise<void>;
26
26
  }
27
27
  export interface IOAuthController {
@@ -92,8 +92,8 @@ 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;
95
+ engine?: DatabaseEngine;
96
+ url?: string;
97
97
  type?: DatabaseType;
98
98
  ttl?: number;
99
99
  cleanupLimit?: number;
@@ -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.250",
3
+ "version": "0.3.1-beta.255",
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",