Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found here. If the API is already migrated you can check here if exists in a module. More information regarding the migration can be found here

HockeyApp

Contains tasks to interact with HockeyApp

Nested types and modules

TypeDescription
DownloadStatusOption

The release download status

HockeyAppUploadParams

The HockeyApp parameter type Based on http://support.hockeyapp.net/kb/api/api-apps#upload-app

HockeyAppVersionParams

The HockeyAppVersion parameter type Based on https://support.hockeyapp.net/kb/api/api-versions#create-version

HockeyResponse

HockeyApp's success response

HockeyVersionResponse

HockeyAppVersion's success response https://support.hockeyapp.net/kb/api/api-versions#create-version

IBaseHockeyAppParams
MandatoryOption

The mandatory options

NoteType

The note types

NotifyOption

The notification options

ReleaseType

The release type of the app

Functions and values

Function or valueDescription
HockeyApp.createAppVersion(setParams)
Signature: setParams:(HockeyAppVersionParams -> HockeyAppVersionParams) -> HockeyVersionResponse

Create a new version of an app on HockeyApp

Parameters

  • setParams - Function used to override the default parameters

Sample

1: 
2: 
3: 
4: 
5: 
6: 
7: 
HockeyApp.createAppVersion (fun defaults ->
    {defaults with
        AppId = ...
        ApiToken = ...
        Version = ...
        ...
    })
HockeyApp.HockeyAppUploadDefaults
Signature: HockeyAppUploadParams

The default HockeyApp parameters to upload a build

HockeyApp.HockeyAppVersionDefaults
Signature: HockeyAppVersionParams

The default HockeyAppVersion parameters to create a version

HockeyApp.uploadApp(setParams)
Signature: setParams:(HockeyAppUploadParams -> HockeyAppUploadParams) -> HockeyResponse

Uploads an app to HockeyApp

Parameters

  • setParams - Function used to override the default parameters

Sample

1: 
2: 
3: 
4: 
5: 
6: 
HockeyApp.uploadApp (fun defaults ->
    {defaults with
        AppId = ...
        ApiToken = ...
        ...
    })