Note: This API documentation is for FAKE version 4. The migration API documentation can be found here. The API documentation for the new fake 5 modules can be found here

HockeyAppHelper

Contains tasks to interact with HockeyApp

Nested types and modules

TypeDescription
BaseHockeyAppParams
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

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(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 (fun defaults ->
    {defaults with
        AppId = ...
        ApiToken = ...
        ...
    })
HockeyAppUploadDefaults
Signature: HockeyAppUploadParams

The default HockeyApp parameters to upload a build

HockeyAppVersion(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: 
HockeyAppVersions (fun defaults ->
    {defaults with
        AppId = ...
        ApiToken = ...
        Version = ...
        ...
    })
HockeyAppVersionDefaults
Signature: HockeyAppVersionParams

The default HockeyAppVersion parameters to create a version