beamsocial 0.1.3 → 0.1.5

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/index.js CHANGED
@@ -1 +1,3 @@
1
- export { Client } from 'lib/index.js';
1
+ export { Client } from 'lib/index.js';
2
+ export * from 'lib/models/users.js';
3
+ export * from 'lib/models/auth.js';
package/lib/index.d.ts CHANGED
@@ -13,3 +13,5 @@ export declare class Client {
13
13
  /*************************************/
14
14
  getUser(name: string): Promise<User | null>;
15
15
  }
16
+ export { User } from './models/users.js';
17
+ export { Session } from './models/auth.js';
package/lib/index.js CHANGED
@@ -142,3 +142,5 @@ export class Client {
142
142
  });
143
143
  }
144
144
  }
145
+ export { User } from './models/users.js';
146
+ export { Session } from './models/auth.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beamsocial",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "description": "API-wrapper pour Beam",
6
6
  "main": "index.js",