We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3bff92 commit edc7c76Copy full SHA for edc7c76
src/index.ts
@@ -15,6 +15,7 @@ export {Filter as PodiumFilter} from './Podium/Filter'
15
export {Paginator as PodiumPaginator} from './Podium/Paginator'
16
17
export class Podium {
18
+ public Account: Resource
19
public Auth: Auth
20
public Ecards: {
21
Categories: Resource
@@ -46,6 +47,7 @@ export class Podium {
46
47
public Utils: Utils
48
49
constructor(settings: Settings) {
50
+ this.Account = new Resource(settings).SetResource('member/account')
51
this.Auth = new Auth(settings)
52
this.Discretionary = {
53
DirectReports: new Resource(settings).SetResource('user/reports'),
0 commit comments