Skip to content

Commit

Permalink
update to 8.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kkuepper committed Oct 23, 2024
1 parent afe2139 commit f50aaee
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bcc-code/bmm-sdk-fetch",
"description": "An SDK for the BMM API using the OpenAPI generator for typescript-fetch.",
"version": "8.6.0",
"version": "8.6.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
Expand Down
23 changes: 0 additions & 23 deletions src/apis/StatisticsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,29 +217,6 @@ export class StatisticsApi extends runtime.BaseAPI {
return await response.value();
}

/**
*/
async statisticsExcelGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
const queryParameters: any = {};

const headerParameters: runtime.HTTPHeaders = {};

const response = await this.request({
path: `/Statistics/excel`,
method: 'GET',
headers: headerParameters,
query: queryParameters,
}, initOverrides);

return new runtime.VoidApiResponse(response);
}

/**
*/
async statisticsExcelGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
await this.statisticsExcelGetRaw(initOverrides);
}

/**
*/
async statisticsFraKaareGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetFraKaareStatisticsResponse>> {
Expand Down
26 changes: 14 additions & 12 deletions src/models/Role.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,20 @@
* @export
*/
export const Role = {
Administrator: 'ROLE_ADMINISTRATOR',
AlbumManager: 'ROLE_ALBUM_MANAGER',
TrackManager: 'ROLE_TRACK_MANAGER',
ContributorManager: 'ROLE_CONTRIBUTOR_MANAGER',
PodcastManager: 'ROLE_PODCAST_MANAGER',
PlaylistManager: 'ROLE_PLAYLIST_MANAGER',
NotificationManager: 'ROLE_NOTIFICATION_MANAGER',
FeaturePreview: 'ROLE_FEATURE_PREVIEW',
LiveManager: 'ROLE_LIVE_MANAGER',
ServiceAdmin: 'ROLE_SERVICE_ADMIN',
Downloader: 'ROLE_DOWNLOADER',
TranscriptionManager: 'ROLE_TRANSCRIPTION_MANAGER'
RoleAdministrator: 'ROLE_ADMINISTRATOR',
RoleAlbumManager: 'ROLE_ALBUM_MANAGER',
RoleTrackManager: 'ROLE_TRACK_MANAGER',
RoleContributorManager: 'ROLE_CONTRIBUTOR_MANAGER',
RolePodcastManager: 'ROLE_PODCAST_MANAGER',
RolePlaylistManager: 'ROLE_PLAYLIST_MANAGER',
RoleNotificationManager: 'ROLE_NOTIFICATION_MANAGER',
RoleFeaturePreview: 'ROLE_FEATURE_PREVIEW',
RoleLiveManager: 'ROLE_LIVE_MANAGER',
RoleServiceAdmin: 'ROLE_SERVICE_ADMIN',
RoleDownloader: 'ROLE_DOWNLOADER',
RoleTranscriptionManager: 'ROLE_TRANSCRIPTION_MANAGER',
RoleFrakaareDashboard: 'ROLE_FRAKAARE_DASHBOARD',
MembersYouthLeader: 'MEMBERS_YOUTH_LEADER'
} as const;
export type Role = typeof Role[keyof typeof Role];

Expand Down

0 comments on commit f50aaee

Please sign in to comment.