@niledatabase/server 3.0.0-alpha.31 → 3.0.0-alpha.32

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/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './types';
2
2
  export * from './users/types';
3
3
  export * from './tenants/types';
4
+ export { JWT, ActiveSession } from './api/utils/auth';
4
5
  import create from './Server';
5
6
  export { default as Nile } from './Server';
6
7
  export { Server } from './Server';
@@ -4162,6 +4162,7 @@ var Api = /*#__PURE__*/function () {
4162
4162
  set: function set(headers) {
4163
4163
  this.users = new Users(this.config, headers);
4164
4164
  this.tenants = new Tenants(this.config, headers);
4165
+ this.auth = new Auth(this.config, headers);
4165
4166
  }
4166
4167
  }]);
4167
4168
  }();