Documentation
¶
Index ¶
Constants ¶
View Source
const ( ToolPing = "ping" ToolUploadImage = "upload_image" ToolUploadAppPackage = "upload_app_package" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type PingOutput ¶
type PingOutput struct {
Message string `json:"message" jsonschema:"service liveness message"`
}
type UploadAppPackageInput ¶
type UploadAppPackageInput struct {
FilePath string `json:"file_path,omitempty" jsonschema:"server-readable local APK or AAB path"`
ContentBase64 string `json:"content_base64,omitempty" jsonschema:"base64-encoded APK or AAB content"`
Filename string `json:"filename,omitempty" jsonschema:"filename to use with content_base64 or as an override for file_path"`
AppName string `json:"app_name" jsonschema:"application name used in object keys"`
Version string `json:"version,omitempty" jsonschema:"application version; defaults to nightly when omitted or blank"`
}
type UploadImageInput ¶
type UploadImageInput struct {
FilePath string `json:"file_path,omitempty" jsonschema:"server-readable local image path"`
ContentBase64 string `json:"content_base64,omitempty" jsonschema:"base64-encoded image content"`
Filename string `json:"filename,omitempty" jsonschema:"filename to use with content_base64 or as an override for file_path"`
}
Click to show internal directories.
Click to hide internal directories.