Skip to content

Commit

Permalink
fix: export SoundboardSoundsAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Oct 16, 2024
1 parent c98f8c9 commit febc7fc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/core/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { MonetizationAPI } from './monetization.js';
import { OAuth2API } from './oauth2.js';
import { PollAPI } from './poll.js';
import { RoleConnectionsAPI } from './roleConnections.js';
import { SoundboardSoundsAPI } from './soundboardSounds.js';
import { StageInstancesAPI } from './stageInstances.js';
import { StickersAPI } from './sticker.js';
import { ThreadsAPI } from './thread.js';
Expand All @@ -26,6 +27,7 @@ export * from './monetization.js';
export * from './oauth2.js';
export * from './poll.js';
export * from './roleConnections.js';
export * from './soundboardSounds.js';
export * from './stageInstances.js';
export * from './sticker.js';
export * from './thread.js';
Expand Down Expand Up @@ -54,6 +56,8 @@ export class API {

public readonly roleConnections: RoleConnectionsAPI;

public readonly soundboardSounds: SoundboardSoundsAPI;

public readonly stageInstances: StageInstancesAPI;

public readonly stickers: StickersAPI;
Expand All @@ -76,6 +80,7 @@ export class API {
this.oauth2 = new OAuth2API(rest);
this.poll = new PollAPI(rest);
this.roleConnections = new RoleConnectionsAPI(rest);
this.soundboardSounds = new SoundboardSoundsAPI(rest);
this.stageInstances = new StageInstancesAPI(rest);
this.stickers = new StickersAPI(rest);
this.threads = new ThreadsAPI(rest);
Expand Down

0 comments on commit febc7fc

Please sign in to comment.