@nangohq/node 0.36.96 → 0.36.97

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/types.d.ts CHANGED
@@ -5,6 +5,7 @@ export declare enum AuthModes {
5
5
  Basic = "BASIC",
6
6
  ApiKey = "API_KEY",
7
7
  AppStore = "APP_STORE",
8
+ Custom = "CUSTOM",
8
9
  App = "APP",
9
10
  None = "NONE"
10
11
  }
@@ -95,9 +96,10 @@ export interface Connection {
95
96
  export interface ConnectionList {
96
97
  id: number;
97
98
  connection_id: string;
99
+ provider_config_key: string;
98
100
  provider: string;
99
101
  created: string;
100
- metadata: Metadata;
102
+ metadata?: Metadata | null;
101
103
  }
102
104
  export interface IntegrationWithCreds extends Integration {
103
105
  client_id: string;
package/dist/types.js CHANGED
@@ -5,6 +5,7 @@ export var AuthModes;
5
5
  AuthModes["Basic"] = "BASIC";
6
6
  AuthModes["ApiKey"] = "API_KEY";
7
7
  AuthModes["AppStore"] = "APP_STORE";
8
+ AuthModes["Custom"] = "CUSTOM";
8
9
  AuthModes["App"] = "APP";
9
10
  AuthModes["None"] = "NONE";
10
11
  })(AuthModes || (AuthModes = {}));
package/dist/types.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../lib/types.ts"],"names":[],"mappings":"AAEA,MAAM,CAAN,IAAY,SAQX;AARD,WAAY,SAAS;IACjB,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,4BAAe,CAAA;IACf,+BAAkB,CAAA;IAClB,mCAAsB,CAAA;IACtB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACjB,CAAC,EARW,SAAS,KAAT,SAAS,QAQpB"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../lib/types.ts"],"names":[],"mappings":"AAEA,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACjB,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,4BAAe,CAAA;IACf,+BAAkB,CAAA;IAClB,mCAAsB,CAAA;IACtB,8BAAiB,CAAA;IACjB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACjB,CAAC,EATW,SAAS,KAAT,SAAS,QASpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/node",
3
- "version": "0.36.96",
3
+ "version": "0.36.97",
4
4
  "description": "Nango's Node client.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",