beeperdesktopapi

package module
v5.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 6, 2026 License: MIT Imports: 22 Imported by: 0

README

Beeper Desktop Go API Library

Go Reference

The Beeper Desktop Go library provides convenient access to the Beeper Desktop REST API from applications written in Go.

MCP Server

Use the Beeper Desktop MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.

Add to Cursor Install in VS Code

Note: You may need to set environment variables in your MCP client.

Installation

import (
	"github.com/beeper/desktop-api-go/v5" // imported as beeperdesktopapi
)

Or to pin the version:

go get -u 'github.com/beeper/desktop-api-go@v5.0.0'

Requirements

This library requires Go 1.22+.

Usage

The full API of this library can be found in api.md.

package main

import (
	"context"
	"fmt"

	"github.com/beeper/desktop-api-go/v5"
	"github.com/beeper/desktop-api-go/v5/option"
)

func main() {
	client := beeperdesktopapi.NewClient(
		option.WithAccessToken("My Access Token"), // defaults to os.LookupEnv("BEEPER_ACCESS_TOKEN")
	)
	page, err := client.Chats.Search(context.TODO(), beeperdesktopapi.ChatSearchParams{
		AccountIDs:   []string{"matrix", "discordgo", "local-whatsapp_ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc"},
		IncludeMuted: beeperdesktopapi.Bool(true),
		Limit:        beeperdesktopapi.Int(3),
		Type:         beeperdesktopapi.ChatSearchParamsTypeSingle,
	})
	if err != nil {
		panic(err.Error())
	}
	fmt.Printf("%+v\n", page)
}

Request fields

The beeperdesktopapi library uses the omitzero semantics from the Go 1.24+ encoding/json release for request fields.

Required primitive fields (int64, string, etc.) feature the tag `api:"required"`. These fields are always serialized, even their zero values.

Optional primitive types are wrapped in a param.Opt[T]. These fields can be set with the provided constructors, beeperdesktopapi.String(string), beeperdesktopapi.Int(int64), etc.

Any param.Opt[T], map, slice, struct or string enum uses the tag `json:"...,omitzero"`. Its zero value is considered omitted.

The param.IsOmitted(any) function can confirm the presence of any omitzero field.

p := beeperdesktopapi.ExampleParams{
	ID:   "id_xxx",                       // required property
	Name: beeperdesktopapi.String("..."), // optional property

	Point: beeperdesktopapi.Point{
		X: 0,                       // required field will serialize as 0
		Y: beeperdesktopapi.Int(1), // optional field will serialize as 1
		// ... omitted non-required fields will not be serialized
	},

	Origin: beeperdesktopapi.Origin{}, // the zero value of [Origin] is considered omitted
}

To send null instead of a param.Opt[T], use param.Null[T](). To send null instead of a struct T, use param.NullStruct[T]().

p.Name = param.Null[string]()       // 'null' instead of string
p.Point = param.NullStruct[Point]() // 'null' instead of struct

param.IsNull(p.Name)  // true
param.IsNull(p.Point) // true

Request structs contain a .SetExtraFields(map[string]any) method which can send non-conforming fields in the request body. Extra fields overwrite any struct fields with a matching key. For security reasons, only use SetExtraFields with trusted data.

To send a custom value instead of a struct, use param.Override[T](value).

// In cases where the API specifies a given type,
// but you want to send something else, use [SetExtraFields]:
p.SetExtraFields(map[string]any{
	"x": 0.01, // send "x" as a float instead of int
})

// Send a number instead of an object
custom := param.Override[beeperdesktopapi.FooParams](12)
Request unions

Unions are represented as a struct with fields prefixed by "Of" for each of its variants, only one field can be non-zero. The non-zero field will be serialized.

Sub-properties of the union can be accessed via methods on the union struct. These methods return a mutable pointer to the underlying data, if present.

// Only one field can be non-zero, use param.IsOmitted() to check if a field is set
type AnimalUnionParam struct {
	OfCat *Cat `json:",omitzero,inline`
	OfDog *Dog `json:",omitzero,inline`
}

animal := AnimalUnionParam{
	OfCat: &Cat{
		Name: "Whiskers",
		Owner: PersonParam{
			Address: AddressParam{Street: "3333 Coyote Hill Rd", Zip: 0},
		},
	},
}

// Mutating a field
if address := animal.GetOwner().GetAddress(); address != nil {
	address.ZipCode = 94304
}
Response objects

All fields in response structs are ordinary value types (not pointers or wrappers). Response structs also include a special JSON field containing metadata about each property.

type Animal struct {
	Name   string `json:"name,nullable"`
	Owners int    `json:"owners"`
	Age    int    `json:"age"`
	JSON   struct {
		Name        respjson.Field
		Owner       respjson.Field
		Age         respjson.Field
		ExtraFields map[string]respjson.Field
	} `json:"-"`
}

To handle optional data, use the .Valid() method on the JSON field. .Valid() returns true if a field is not null, not present, or couldn't be marshaled.

If .Valid() is false, the corresponding field will simply be its zero value.

raw := `{"owners": 1, "name": null}`

var res Animal
json.Unmarshal([]byte(raw), &res)

// Accessing regular fields

res.Owners // 1
res.Name   // ""
res.Age    // 0

// Optional field checks

res.JSON.Owners.Valid() // true
res.JSON.Name.Valid()   // false
res.JSON.Age.Valid()    // false

// Raw JSON values

res.JSON.Owners.Raw()                  // "1"
res.JSON.Name.Raw() == "null"          // true
res.JSON.Name.Raw() == respjson.Null   // true
res.JSON.Age.Raw() == ""               // true
res.JSON.Age.Raw() == respjson.Omitted // true

These .JSON structs also include an ExtraFields map containing any properties in the json response that were not specified in the struct. This can be useful for API features not yet present in the SDK.

body := res.JSON.ExtraFields["my_unexpected_field"].Raw()
Response Unions

In responses, unions are represented by a flattened struct containing all possible fields from each of the object variants. To convert it to a variant use the .AsFooVariant() method or the .AsAny() method if present.

If a response value union contains primitive values, primitive fields will be alongside the properties but prefixed with Of and feature the tag json:"...,inline".

type AnimalUnion struct {
	// From variants [Dog], [Cat]
	Owner Person `json:"owner"`
	// From variant [Dog]
	DogBreed string `json:"dog_breed"`
	// From variant [Cat]
	CatBreed string `json:"cat_breed"`
	// ...

	JSON struct {
		Owner respjson.Field
		// ...
	} `json:"-"`
}

// If animal variant
if animal.Owner.Address.ZipCode == "" {
	panic("missing zip code")
}

// Switch on the variant
switch variant := animal.AsAny().(type) {
case Dog:
case Cat:
default:
	panic("unexpected type")
}
RequestOptions

This library uses the functional options pattern. Functions defined in the option package return a RequestOption, which is a closure that mutates a RequestConfig. These options can be supplied to the client or at individual requests. For example:

client := beeperdesktopapi.NewClient(
	// Adds a header to every request made by the client
	option.WithHeader("X-Some-Header", "custom_header_info"),
)

client.Accounts.List(context.TODO(), ...,
	// Override the header
	option.WithHeader("X-Some-Header", "some_other_custom_header_info"),
	// Add an undocumented field to the request body, using sjson syntax
	option.WithJSONSet("some.json.path", map[string]string{"my": "object"}),
)

The request option option.WithDebugLog(nil) may be helpful while debugging.

See the full list of request options.

Pagination

This library provides some conveniences for working with paginated list endpoints.

You can use .ListAutoPaging() methods to iterate through items across all pages:

iter := client.Messages.SearchAutoPaging(context.TODO(), beeperdesktopapi.MessageSearchParams{
	AccountIDs: []string{"discordgo", "local-whatsapp_ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc"},
	Limit:      beeperdesktopapi.Int(10),
	Query:      beeperdesktopapi.String("oauth"),
})
// Automatically fetches more pages as needed.
for iter.Next() {
	message := iter.Current()
	fmt.Printf("%+v\n", message)
}
if err := iter.Err(); err != nil {
	panic(err.Error())
}

Or you can use simple .List() methods to fetch a single page and receive a standard response object with additional helper methods like .GetNextPage(), e.g.:

page, err := client.Messages.Search(context.TODO(), beeperdesktopapi.MessageSearchParams{
	AccountIDs: []string{"discordgo", "local-whatsapp_ba_EvYDBBsZbRQAy3UOSWqG0LuTVkc"},
	Limit:      beeperdesktopapi.Int(10),
	Query:      beeperdesktopapi.String("oauth"),
})
for page != nil {
	for _, message := range page.Items {
		fmt.Printf("%+v\n", message)
	}
	page, err = page.GetNextPage()
}
if err != nil {
	panic(err.Error())
}
Errors

When the API returns a non-success status code, we return an error with type *beeperdesktopapi.Error. This contains the StatusCode, *http.Request, and *http.Response values of the request, as well as the JSON of the error body (much like other response objects in the SDK).

To handle errors, we recommend that you use the errors.As pattern:

_, err := client.Accounts.List(context.TODO())
if err != nil {
	var apierr *beeperdesktopapi.Error
	if errors.As(err, &apierr) {
		println(string(apierr.DumpRequest(true)))  // Prints the serialized HTTP request
		println(string(apierr.DumpResponse(true))) // Prints the serialized HTTP response
	}
	panic(err.Error()) // GET "/v1/accounts": 400 Bad Request { ... }
}

When other errors occur, they are returned unwrapped; for example, if HTTP transport fails, you might receive *url.Error wrapping *net.OpError.

Timeouts

Requests do not time out by default; use context to configure a timeout for a request lifecycle.

Note that if a request is retried, the context timeout does not start over. To set a per-retry timeout, use option.WithRequestTimeout().

// This sets the timeout for the request, including all the retries.
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
client.Accounts.List(
	ctx,
	// This sets the per-retry timeout
	option.WithRequestTimeout(20*time.Second),
)
File uploads

Request parameters that correspond to file uploads in multipart requests are typed as io.Reader. The contents of the io.Reader will by default be sent as a multipart form part with the file name of "anonymous_file" and content-type of "application/octet-stream".

The file name and content-type can be customized by implementing Name() string or ContentType() string on the run-time type of io.Reader. Note that os.File implements Name() string, so a file returned by os.Open will be sent with the file name on disk.

We also provide a helper beeperdesktopapi.File(reader io.Reader, filename string, contentType string) which can be used to wrap any io.Reader with the appropriate file name and content type.

// A file from the file system
file, err := os.Open("/path/to/file")
beeperdesktopapi.AssetUploadParams{
	File: file,
}

// A file from a string
beeperdesktopapi.AssetUploadParams{
	File: strings.NewReader("my file contents"),
}

// With a custom filename and contentType
beeperdesktopapi.AssetUploadParams{
	File: beeperdesktopapi.File(strings.NewReader(`{"hello": "foo"}`), "file.go", "application/json"),
}
Retries

Certain errors will be automatically retried 2 times by default, with a short exponential backoff. We retry by default all connection errors, 408 Request Timeout, 409 Conflict, 429 Rate Limit, and >=500 Internal errors.

You can use the WithMaxRetries option to configure or disable this:

// Configure the default for all requests:
client := beeperdesktopapi.NewClient(
	option.WithMaxRetries(0), // default is 2
)

// Override per-request:
client.Accounts.List(context.TODO(), option.WithMaxRetries(5))
Accessing raw response data (e.g. response headers)

You can access the raw HTTP response data by using the option.WithResponseInto() request option. This is useful when you need to examine response headers, status codes, or other details.

// Create a variable to store the HTTP response
var response *http.Response
accounts, err := client.Accounts.List(context.TODO(), option.WithResponseInto(&response))
if err != nil {
	// handle error
}
fmt.Printf("%+v\n", accounts)

fmt.Printf("Status Code: %d\n", response.StatusCode)
fmt.Printf("Headers: %+#v\n", response.Header)
Making custom/undocumented requests

This library is typed for convenient access to the documented API. If you need to access undocumented endpoints, params, or response properties, the library can still be used.

Undocumented endpoints

To make requests to undocumented endpoints, you can use client.Get, client.Post, and other HTTP verbs. RequestOptions on the client, such as retries, will be respected when making these requests.

var (
    // params can be an io.Reader, a []byte, an encoding/json serializable object,
    // or a "…Params" struct defined in this library.
    params map[string]any

    // result can be an []byte, *http.Response, a encoding/json deserializable object,
    // or a model defined in this library.
    result *http.Response
)
err := client.Post(context.Background(), "/unspecified", params, &result)
if err != nil {
    …
}
Undocumented request params

To make requests using undocumented parameters, you may use either the option.WithQuerySet() or the option.WithJSONSet() methods.

params := FooNewParams{
    ID:   "id_xxxx",
    Data: FooNewParamsData{
        FirstName: beeperdesktopapi.String("John"),
    },
}
client.Foo.New(context.Background(), params, option.WithJSONSet("data.last_name", "Doe"))
Undocumented response properties

To access undocumented response properties, you may either access the raw JSON of the response as a string with result.JSON.RawJSON(), or get the raw JSON of a particular field on the result with result.JSON.Foo.Raw().

Any fields that are not present on the response struct will be saved and can be accessed by result.JSON.ExtraFields() which returns the extra fields as a map[string]Field.

Middleware

We provide option.WithMiddleware which applies the given middleware to requests.

func Logger(req *http.Request, next option.MiddlewareNext) (res *http.Response, err error) {
	// Before the request
	start := time.Now()
	LogReq(req)

	// Forward the request to the next handler
	res, err = next(req)

	// Handle stuff after the request
	end := time.Now()
	LogRes(res, err, start - end)

    return res, err
}

client := beeperdesktopapi.NewClient(
	option.WithMiddleware(Logger),
)

When multiple middlewares are provided as variadic arguments, the middlewares are applied left to right. If option.WithMiddleware is given multiple times, for example first in the client then the method, the middleware in the client will run first and the middleware given in the method will run next.

You may also replace the default http.Client with option.WithHTTPClient(client). Only one http client is accepted (this overwrites any previous client) and receives requests after any middleware has been applied.

Semantic versioning

This package generally follows SemVer conventions, though certain backwards-incompatible changes may be released as minor versions:

  1. Changes to library internals which are technically public but not intended or documented for external use. (Please open a GitHub issue to let us know if you are relying on such internals.)
  2. Changes that we do not expect to impact the vast majority of users in practice.

We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

We are keen for your feedback; please open an issue with questions, bugs, or suggestions.

Contributing

See the contributing documentation.

Documentation

Index

Constants

View Source
const AttachmentTypeAudio = shared.AttachmentTypeAudio

Equals "audio"

View Source
const AttachmentTypeImg = shared.AttachmentTypeImg

Equals "img"

View Source
const AttachmentTypeUnknown = shared.AttachmentTypeUnknown

Equals "unknown"

View Source
const AttachmentTypeVideo = shared.AttachmentTypeVideo

Equals "video"

View Source
const MessageTypeAudio = shared.MessageTypeAudio

Equals "AUDIO"

View Source
const MessageTypeFile = shared.MessageTypeFile

Equals "FILE"

View Source
const MessageTypeImage = shared.MessageTypeImage

Equals "IMAGE"

View Source
const MessageTypeLocation = shared.MessageTypeLocation

Equals "LOCATION"

View Source
const MessageTypeNotice = shared.MessageTypeNotice

Equals "NOTICE"

View Source
const MessageTypeReaction = shared.MessageTypeReaction

Equals "REACTION"

View Source
const MessageTypeSticker = shared.MessageTypeSticker

Equals "STICKER"

View Source
const MessageTypeText = shared.MessageTypeText

Equals "TEXT"

View Source
const MessageTypeVideo = shared.MessageTypeVideo

Equals "VIDEO"

View Source
const MessageTypeVoice = shared.MessageTypeVoice

Equals "VOICE"

Variables

This section is empty.

Functions

func Bool

func Bool(b bool) param.Opt[bool]

func BoolPtr

func BoolPtr(v bool) *bool

func DefaultClientOptions

func DefaultClientOptions() []option.RequestOption

DefaultClientOptions read from the environment (BEEPER_ACCESS_TOKEN, BEEPER_BASE_URL). This should be used to initialize new clients.

func File

func File(rdr io.Reader, filename string, contentType string) file

func Float

func Float(f float64) param.Opt[float64]

func FloatPtr

func FloatPtr(v float64) *float64

func Int

func Int(i int64) param.Opt[int64]

func IntPtr

func IntPtr(v int64) *int64

func Opt

func Opt[T comparable](v T) param.Opt[T]

func Ptr

func Ptr[T any](v T) *T

func String

func String(s string) param.Opt[string]

func StringPtr

func StringPtr(v string) *string

func Time

func Time(t time.Time) param.Opt[time.Time]

func TimePtr

func TimePtr(v time.Time) *time.Time

Types

type Account

type Account struct {
	// Chat account added to Beeper. Use this to route account-scoped actions. Examples
	// include matrix for Beeper/Matrix, discordgo for a cloud bridge,
	// slackgo.TEAM-USER for workspace-scoped cloud bridges, and local-whatsapp*ba*...
	// for local bridges.
	AccountID string `json:"accountID" api:"required"`
	// Bridge metadata for the account. Available in Beeper Desktop v4.2.785+.
	Bridge AccountBridge `json:"bridge" api:"required"`
	// User the account belongs to.
	User shared.User `json:"user" api:"required"`
	// Human-friendly network name for the account. Omitted when the network is
	// unknown.
	Network string `json:"network"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		AccountID   respjson.Field
		Bridge      respjson.Field
		User        respjson.Field
		Network     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

A chat account added to Beeper.

func (Account) RawJSON

func (r Account) RawJSON() string

Returns the unmodified JSON received from the API

func (*Account) UnmarshalJSON

func (r *Account) UnmarshalJSON(data []byte) error

type AccountBridge

type AccountBridge struct {
	// Bridge instance identifier. Matrix and cloud bridges often use the bridge type
	// (for example matrix or discordgo); local bridges use a local bridge ID (for
	// example local-whatsapp). Available in Beeper Desktop v4.2.785+.
	ID string `json:"id" api:"required"`
	// Bridge provider for the account. Available in Beeper Desktop v4.2.785+.
	//
	// Any of "cloud", "self-hosted", "local", "platform-sdk".
	Provider string `json:"provider" api:"required"`
	// Bridge type, such as matrix, discordgo, slackgo, whatsapp, telegram, or twitter.
	// Available in Beeper Desktop v4.2.785+.
	Type string `json:"type" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ID          respjson.Field
		Provider    respjson.Field
		Type        respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Bridge metadata for the account. Available in Beeper Desktop v4.2.785+.

func (AccountBridge) RawJSON

func (r AccountBridge) RawJSON() string

Returns the unmodified JSON received from the API

func (*AccountBridge) UnmarshalJSON

func (r *AccountBridge) UnmarshalJSON(data []byte) error

type AccountContactListParams

type AccountContactListParams struct {
	// Opaque pagination cursor; do not inspect. Use together with 'direction'.
	Cursor param.Opt[string] `query:"cursor,omitzero" json:"-"`
	// Maximum contacts to return per page.
	Limit param.Opt[int64] `query:"limit,omitzero" json:"-"`
	// Optional search query for blended contact lookup.
	Query param.Opt[string] `query:"query,omitzero" json:"-"`
	// Pagination direction used with 'cursor': 'before' fetches older results, 'after'
	// fetches newer results. Defaults to 'before' when only 'cursor' is provided.
	//
	// Any of "after", "before".
	Direction AccountContactListParamsDirection `query:"direction,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (AccountContactListParams) URLQuery

func (r AccountContactListParams) URLQuery() (v url.Values, err error)

URLQuery serializes AccountContactListParams's query parameters as `url.Values`.

type AccountContactListParamsDirection

type AccountContactListParamsDirection string

Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.

const (
	AccountContactListParamsDirectionAfter  AccountContactListParamsDirection = "after"
	AccountContactListParamsDirectionBefore AccountContactListParamsDirection = "before"
)

type AccountContactSearchParams

type AccountContactSearchParams struct {
	// Text to search users by. Network-specific behavior.
	Query string `query:"query" api:"required" json:"-"`
	// contains filtered or unexported fields
}

func (AccountContactSearchParams) URLQuery

func (r AccountContactSearchParams) URLQuery() (v url.Values, err error)

URLQuery serializes AccountContactSearchParams's query parameters as `url.Values`.

type AccountContactSearchResponse

type AccountContactSearchResponse struct {
	Items []shared.User `json:"items" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Items       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (AccountContactSearchResponse) RawJSON

Returns the unmodified JSON received from the API

func (*AccountContactSearchResponse) UnmarshalJSON

func (r *AccountContactSearchResponse) UnmarshalJSON(data []byte) error

type AccountContactService

type AccountContactService struct {
	Options []option.RequestOption
}

Manage contacts on a specific account

AccountContactService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewAccountContactService method instead.

func NewAccountContactService

func NewAccountContactService(opts ...option.RequestOption) (r AccountContactService)

NewAccountContactService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*AccountContactService) List

List merged contacts for a specific account with cursor-based pagination.

func (*AccountContactService) ListAutoPaging

List merged contacts for a specific account with cursor-based pagination.

func (*AccountContactService) Search

Search contacts on a specific account using merged account contacts, network search, and exact identifier lookup.

type AccountService

type AccountService struct {
	Options []option.RequestOption
	// Manage contacts on a specific account
	Contacts AccountContactService
}

Manage connected chat accounts

AccountService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewAccountService method instead.

func NewAccountService

func NewAccountService(opts ...option.RequestOption) (r AccountService)

NewAccountService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*AccountService) List

func (r *AccountService) List(ctx context.Context, opts ...option.RequestOption) (res *[]Account, err error)

List Chat Accounts connected to this Beeper Desktop instance, including bridge metadata and network identity.

type AssetDownloadParams

type AssetDownloadParams struct {
	// Matrix content URL (mxc:// or localmxc://) for the file to download.
	URL string `json:"url" api:"required"`
	// contains filtered or unexported fields
}

func (AssetDownloadParams) MarshalJSON

func (r AssetDownloadParams) MarshalJSON() (data []byte, err error)

func (*AssetDownloadParams) UnmarshalJSON

func (r *AssetDownloadParams) UnmarshalJSON(data []byte) error

type AssetDownloadResponse

type AssetDownloadResponse struct {
	// Error message if the download failed.
	Error string `json:"error"`
	// Local file URL to the downloaded file.
	SrcURL string `json:"srcURL"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Error       respjson.Field
		SrcURL      respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (AssetDownloadResponse) RawJSON

func (r AssetDownloadResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*AssetDownloadResponse) UnmarshalJSON

func (r *AssetDownloadResponse) UnmarshalJSON(data []byte) error

type AssetServeParams

type AssetServeParams struct {
	// File URL to serve. Accepts mxc://, localmxc://, or file:// URLs.
	URL string `query:"url" api:"required" json:"-"`
	// contains filtered or unexported fields
}

func (AssetServeParams) URLQuery

func (r AssetServeParams) URLQuery() (v url.Values, err error)

URLQuery serializes AssetServeParams's query parameters as `url.Values`.

type AssetService

type AssetService struct {
	Options []option.RequestOption
}

Manage assets in Beeper Desktop, like message attachments

AssetService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewAssetService method instead.

func NewAssetService

func NewAssetService(opts ...option.RequestOption) (r AssetService)

NewAssetService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*AssetService) Download

func (r *AssetService) Download(ctx context.Context, body AssetDownloadParams, opts ...option.RequestOption) (res *AssetDownloadResponse, err error)

Download a Matrix file using its mxc:// or localmxc:// URL to the device running Beeper Desktop and return the local file URL.

func (*AssetService) Serve

func (r *AssetService) Serve(ctx context.Context, query AssetServeParams, opts ...option.RequestOption) (res *http.Response, err error)

Stream a file given an mxc://, localmxc://, or file:// URL. Downloads first if not cached. Supports Range requests for seeking in large files.

func (*AssetService) Upload

func (r *AssetService) Upload(ctx context.Context, body AssetUploadParams, opts ...option.RequestOption) (res *AssetUploadResponse, err error)

Upload a file to a temporary location using multipart/form-data. Returns an uploadID that can be referenced when sending a message or materializing a draft attachment.

func (*AssetService) UploadBase64

Upload a file using a JSON body with base64-encoded content. Returns an uploadID that can be referenced when sending a message or materializing a draft attachment. Alternative to the multipart upload endpoint.

type AssetUploadBase64Params

type AssetUploadBase64Params struct {
	// Base64-encoded file content (max ~500MB decoded)
	Content string `json:"content" api:"required"`
	// Original filename. Generated if omitted
	FileName param.Opt[string] `json:"fileName,omitzero"`
	// MIME type. Auto-detected from magic bytes if omitted
	MimeType param.Opt[string] `json:"mimeType,omitzero"`
	// contains filtered or unexported fields
}

func (AssetUploadBase64Params) MarshalJSON

func (r AssetUploadBase64Params) MarshalJSON() (data []byte, err error)

func (*AssetUploadBase64Params) UnmarshalJSON

func (r *AssetUploadBase64Params) UnmarshalJSON(data []byte) error

type AssetUploadBase64Response

type AssetUploadBase64Response struct {
	// Duration in seconds (audio/videos)
	Duration float64 `json:"duration"`
	// Error message if upload failed
	Error string `json:"error"`
	// Resolved filename
	FileName string `json:"fileName"`
	// File size in bytes
	FileSize float64 `json:"fileSize"`
	// Height in pixels (images/videos)
	Height float64 `json:"height"`
	// Detected or provided MIME type
	MimeType string `json:"mimeType"`
	// Local file URL (file://) for the uploaded file
	SrcURL string `json:"srcURL"`
	// Unique upload ID for this temporary file
	UploadID string `json:"uploadID"`
	// Width in pixels (images/videos)
	Width float64 `json:"width"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Duration    respjson.Field
		Error       respjson.Field
		FileName    respjson.Field
		FileSize    respjson.Field
		Height      respjson.Field
		MimeType    respjson.Field
		SrcURL      respjson.Field
		UploadID    respjson.Field
		Width       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (AssetUploadBase64Response) RawJSON

func (r AssetUploadBase64Response) RawJSON() string

Returns the unmodified JSON received from the API

func (*AssetUploadBase64Response) UnmarshalJSON

func (r *AssetUploadBase64Response) UnmarshalJSON(data []byte) error

type AssetUploadParams

type AssetUploadParams struct {
	// The file to upload (max 500 MB).
	File io.Reader `json:"file,omitzero" api:"required" format:"binary"`
	// Original filename. Defaults to the uploaded file name if omitted
	FileName param.Opt[string] `json:"fileName,omitzero"`
	// MIME type. Auto-detected from magic bytes if omitted
	MimeType param.Opt[string] `json:"mimeType,omitzero"`
	// contains filtered or unexported fields
}

func (AssetUploadParams) MarshalMultipart

func (r AssetUploadParams) MarshalMultipart() (data []byte, contentType string, err error)

type AssetUploadResponse

type AssetUploadResponse struct {
	// Duration in seconds (audio/videos)
	Duration float64 `json:"duration"`
	// Error message if upload failed
	Error string `json:"error"`
	// Resolved filename
	FileName string `json:"fileName"`
	// File size in bytes
	FileSize float64 `json:"fileSize"`
	// Height in pixels (images/videos)
	Height float64 `json:"height"`
	// Detected or provided MIME type
	MimeType string `json:"mimeType"`
	// Local file URL (file://) for the uploaded file
	SrcURL string `json:"srcURL"`
	// Unique upload ID for this temporary file
	UploadID string `json:"uploadID"`
	// Width in pixels (images/videos)
	Width float64 `json:"width"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Duration    respjson.Field
		Error       respjson.Field
		FileName    respjson.Field
		FileSize    respjson.Field
		Height      respjson.Field
		MimeType    respjson.Field
		SrcURL      respjson.Field
		UploadID    respjson.Field
		Width       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (AssetUploadResponse) RawJSON

func (r AssetUploadResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*AssetUploadResponse) UnmarshalJSON

func (r *AssetUploadResponse) UnmarshalJSON(data []byte) error

type Attachment

type Attachment = shared.Attachment

This is an alias to an internal type.

type AttachmentSize

type AttachmentSize = shared.AttachmentSize

Pixel dimensions of the attachment: width/height in px.

This is an alias to an internal type.

type AttachmentTranscription

type AttachmentTranscription = shared.AttachmentTranscription

Attachment transcription if available.

This is an alias to an internal type.

type AttachmentType

type AttachmentType = shared.AttachmentType

Attachment type.

This is an alias to an internal type.

type Chat

type Chat struct {
	// Unique identifier of the chat across Beeper.
	ID string `json:"id" api:"required"`
	// Account ID this chat belongs to.
	AccountID string `json:"accountID" api:"required"`
	// Display-only human-readable account/network name.
	Network string `json:"network" api:"required"`
	// Chat participants information.
	Participants ChatParticipants `json:"participants" api:"required"`
	// Display title of the chat as computed by the client/server.
	Title string `json:"title" api:"required"`
	// Chat type: 'single' for direct messages, 'group' for group chats.
	//
	// Any of "single", "group".
	Type ChatType `json:"type" api:"required"`
	// Number of unread messages.
	UnreadCount int64 `json:"unreadCount" api:"required"`
	// Chat capabilities reported by the platform.
	Capabilities ChatCapabilities `json:"capabilities"`
	// Group chat description/topic when available.
	Description string `json:"description" api:"nullable"`
	// Current draft object for this chat, or null when no draft is set.
	Draft ChatDraft `json:"draft" api:"nullable"`
	// Local filesystem path to the chat avatar image when available.
	ImgURL string `json:"imgURL" api:"nullable"`
	// True if chat is archived.
	IsArchived bool `json:"isArchived"`
	// True if chat is marked low priority.
	IsLowPriority bool `json:"isLowPriority"`
	// True if the chat was explicitly marked unread by the authenticated user.
	IsMarkedUnread bool `json:"isMarkedUnread"`
	// True if chat notifications are muted.
	IsMuted bool `json:"isMuted"`
	// True if chat is pinned.
	IsPinned bool `json:"isPinned"`
	// True if messages cannot be sent in this chat.
	IsReadOnly bool `json:"isReadOnly"`
	// Timestamp of last activity.
	LastActivity time.Time `json:"lastActivity" format:"date-time"`
	// Last read message sortKey.
	LastReadMessageSortKey string `json:"lastReadMessageSortKey"`
	// Local chat ID specific to this Beeper Desktop installation.
	LocalChatID string `json:"localChatID" api:"nullable"`
	// Disappearing-message timer in seconds when available.
	MessageExpirySeconds int64 `json:"messageExpirySeconds" api:"nullable"`
	// Current reminder for this chat, or null when no reminder is set.
	Reminder ChatReminder `json:"reminder" api:"nullable"`
	// Current snooze state for this chat, or null when no snooze is set.
	Snooze ChatSnooze `json:"snooze" api:"nullable"`
	// Number of unread messages that mention the authenticated user or @room.
	UnreadMentionsCount int64 `json:"unreadMentionsCount"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ID                     respjson.Field
		AccountID              respjson.Field
		Network                respjson.Field
		Participants           respjson.Field
		Title                  respjson.Field
		Type                   respjson.Field
		UnreadCount            respjson.Field
		Capabilities           respjson.Field
		Description            respjson.Field
		Draft                  respjson.Field
		ImgURL                 respjson.Field
		IsArchived             respjson.Field
		IsLowPriority          respjson.Field
		IsMarkedUnread         respjson.Field
		IsMuted                respjson.Field
		IsPinned               respjson.Field
		IsReadOnly             respjson.Field
		LastActivity           respjson.Field
		LastReadMessageSortKey respjson.Field
		LocalChatID            respjson.Field
		MessageExpirySeconds   respjson.Field
		Reminder               respjson.Field
		Snooze                 respjson.Field
		UnreadMentionsCount    respjson.Field
		ExtraFields            map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (Chat) RawJSON

func (r Chat) RawJSON() string

Returns the unmodified JSON received from the API

func (*Chat) UnmarshalJSON

func (r *Chat) UnmarshalJSON(data []byte) error

type ChatArchiveParams

type ChatArchiveParams struct {
	// True to archive, false to unarchive
	Archived param.Opt[bool] `json:"archived,omitzero"`
	// contains filtered or unexported fields
}

func (ChatArchiveParams) MarshalJSON

func (r ChatArchiveParams) MarshalJSON() (data []byte, err error)

func (*ChatArchiveParams) UnmarshalJSON

func (r *ChatArchiveParams) UnmarshalJSON(data []byte) error

type ChatCapabilities

type ChatCapabilities struct {
	// Allowed Unicode reactions. Omitted means all emoji reactions are allowed.
	AllowedReactions []string `json:"allowedReactions"`
	// True if archive/unarchive is supported.
	Archive bool `json:"archive"`
	// Supported attachment message types and their per-type constraints, keyed by
	// Matrix msgtype or pseudo-msgtype (for example m.image, m.video,
	// org.matrix.msc3245.voice). Missing message types should be treated as rejected.
	Attachments map[string]ChatCapabilitiesAttachment `json:"attachments"`
	// True if custom emoji reactions are supported.
	CustomEmojiReactions bool `json:"customEmojiReactions"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Delete int64 `json:"delete"`
	// True if deleting chats for the authenticated user is supported.
	DeleteChat bool `json:"deleteChat"`
	// True if deleting chats for everyone is supported.
	DeleteChatForEveryone bool `json:"deleteChatForEveryone"`
	// True if deleting messages only for the authenticated user is supported.
	DeleteForMe bool `json:"deleteForMe"`
	// Maximum message age for delete-for-everyone, in seconds.
	DeleteMaxAge int64 `json:"deleteMaxAge"`
	// Disappearing-message timer capabilities.
	DisappearingTimer ChatCapabilitiesDisappearingTimer `json:"disappearingTimer"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Edit int64 `json:"edit"`
	// Maximum message age for edits, in seconds.
	EditMaxAge int64 `json:"editMaxAge"`
	// Maximum number of edits allowed for one message.
	EditMaxCount int64 `json:"editMaxCount"`
	// Supported rich-text formatting features keyed by feature name (for example bold,
	// inline_code, code_block.syntax_highlighting). Omitted means no formatting
	// support is advertised.
	//
	// Any of -2, -1, 0, 1, 2.
	Formatting map[string]int64 `json:"formatting"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	LocationMessage int64 `json:"locationMessage"`
	// True if marking chats unread is supported.
	MarkAsUnread bool `json:"markAsUnread"`
	// Maximum length of normal text messages.
	MaxTextLength int64 `json:"maxTextLength"`
	// Message request capabilities.
	MessageRequest ChatCapabilitiesMessageRequest `json:"messageRequest"`
	// Participant management capabilities.
	ParticipantActions ChatCapabilitiesParticipantActions `json:"participantActions"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Poll int64 `json:"poll"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Reaction int64 `json:"reaction"`
	// Maximum number of reactions allowed on a single message.
	ReactionCount int64 `json:"reactionCount"`
	// True if read receipts are supported.
	ReadReceipts bool `json:"readReceipts"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Reply int64 `json:"reply"`
	// Chat state update capabilities.
	State ChatCapabilitiesState `json:"state"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Thread int64 `json:"thread"`
	// True if typing notifications are supported.
	TypingNotifications bool `json:"typingNotifications"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		AllowedReactions      respjson.Field
		Archive               respjson.Field
		Attachments           respjson.Field
		CustomEmojiReactions  respjson.Field
		Delete                respjson.Field
		DeleteChat            respjson.Field
		DeleteChatForEveryone respjson.Field
		DeleteForMe           respjson.Field
		DeleteMaxAge          respjson.Field
		DisappearingTimer     respjson.Field
		Edit                  respjson.Field
		EditMaxAge            respjson.Field
		EditMaxCount          respjson.Field
		Formatting            respjson.Field
		LocationMessage       respjson.Field
		MarkAsUnread          respjson.Field
		MaxTextLength         respjson.Field
		MessageRequest        respjson.Field
		ParticipantActions    respjson.Field
		Poll                  respjson.Field
		Reaction              respjson.Field
		ReactionCount         respjson.Field
		ReadReceipts          respjson.Field
		Reply                 respjson.Field
		State                 respjson.Field
		Thread                respjson.Field
		TypingNotifications   respjson.Field
		ExtraFields           map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat capabilities reported by the platform.

func (ChatCapabilities) RawJSON

func (r ChatCapabilities) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatCapabilities) UnmarshalJSON

func (r *ChatCapabilities) UnmarshalJSON(data []byte) error

type ChatCapabilitiesAttachment

type ChatCapabilitiesAttachment struct {
	// Supported MIME types or MIME patterns for this file message type. Missing MIME
	// types should be treated as rejected.
	//
	// Any of -2, -1, 0, 1, 2.
	MimeTypes map[string]int64 `json:"mimeTypes" api:"required"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Caption int64 `json:"caption"`
	// Maximum caption length when captions are supported.
	MaxCaptionLength int64 `json:"maxCaptionLength"`
	// Maximum audio or video duration in seconds.
	MaxDuration int64 `json:"maxDuration"`
	// Maximum image or video height in pixels.
	MaxHeight int64 `json:"maxHeight"`
	// Maximum file size in bytes.
	MaxSize int64 `json:"maxSize"`
	// Maximum image or video width in pixels.
	MaxWidth int64 `json:"maxWidth"`
	// True if this file type can be sent as view-once media.
	ViewOnce bool `json:"viewOnce"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		MimeTypes        respjson.Field
		Caption          respjson.Field
		MaxCaptionLength respjson.Field
		MaxDuration      respjson.Field
		MaxHeight        respjson.Field
		MaxSize          respjson.Field
		MaxWidth         respjson.Field
		ViewOnce         respjson.Field
		ExtraFields      map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Capabilities for one attachment message type.

func (ChatCapabilitiesAttachment) RawJSON

func (r ChatCapabilitiesAttachment) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesAttachment) UnmarshalJSON

func (r *ChatCapabilitiesAttachment) UnmarshalJSON(data []byte) error

type ChatCapabilitiesDisappearingTimer

type ChatCapabilitiesDisappearingTimer struct {
	// True if empty timer objects should be omitted from message content.
	OmitEmptyTimer bool `json:"omitEmptyTimer"`
	// Allowed disappearing timer values in milliseconds. Omitted means any timer is
	// allowed.
	Timers []int64 `json:"timers"`
	// Supported disappearing timer types.
	//
	// Any of "afterRead", "afterSend".
	Types []string `json:"types"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		OmitEmptyTimer respjson.Field
		Timers         respjson.Field
		Types          respjson.Field
		ExtraFields    map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Disappearing-message timer capabilities.

func (ChatCapabilitiesDisappearingTimer) RawJSON

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesDisappearingTimer) UnmarshalJSON

func (r *ChatCapabilitiesDisappearingTimer) UnmarshalJSON(data []byte) error

type ChatCapabilitiesMessageRequest

type ChatCapabilitiesMessageRequest struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	AcceptWithButton int64 `json:"acceptWithButton"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	AcceptWithMessage int64 `json:"acceptWithMessage"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		AcceptWithButton  respjson.Field
		AcceptWithMessage respjson.Field
		ExtraFields       map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Message request capabilities.

func (ChatCapabilitiesMessageRequest) RawJSON

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesMessageRequest) UnmarshalJSON

func (r *ChatCapabilitiesMessageRequest) UnmarshalJSON(data []byte) error

type ChatCapabilitiesParticipantActions

type ChatCapabilitiesParticipantActions struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Ban int64 `json:"ban"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Invite int64 `json:"invite"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Kick int64 `json:"kick"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Leave int64 `json:"leave"`
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	RevokeInvite int64 `json:"revokeInvite"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Ban          respjson.Field
		Invite       respjson.Field
		Kick         respjson.Field
		Leave        respjson.Field
		RevokeInvite respjson.Field
		ExtraFields  map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Participant management capabilities.

func (ChatCapabilitiesParticipantActions) RawJSON

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesParticipantActions) UnmarshalJSON

func (r *ChatCapabilitiesParticipantActions) UnmarshalJSON(data []byte) error

type ChatCapabilitiesState

type ChatCapabilitiesState struct {
	// Chat avatar state capability.
	Avatar ChatCapabilitiesStateAvatar `json:"avatar"`
	// Chat description/topic state capability.
	Description ChatCapabilitiesStateDescription `json:"description"`
	// Disappearing-message timer state capability.
	DisappearingTimer ChatCapabilitiesStateDisappearingTimer `json:"disappearingTimer"`
	// Chat title state capability.
	Title ChatCapabilitiesStateTitle `json:"title"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Avatar            respjson.Field
		Description       respjson.Field
		DisappearingTimer respjson.Field
		Title             respjson.Field
		ExtraFields       map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat state update capabilities.

func (ChatCapabilitiesState) RawJSON

func (r ChatCapabilitiesState) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesState) UnmarshalJSON

func (r *ChatCapabilitiesState) UnmarshalJSON(data []byte) error

type ChatCapabilitiesStateAvatar

type ChatCapabilitiesStateAvatar struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Level int64 `json:"level" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Level       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat avatar state capability.

func (ChatCapabilitiesStateAvatar) RawJSON

func (r ChatCapabilitiesStateAvatar) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesStateAvatar) UnmarshalJSON

func (r *ChatCapabilitiesStateAvatar) UnmarshalJSON(data []byte) error

type ChatCapabilitiesStateDescription

type ChatCapabilitiesStateDescription struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Level int64 `json:"level" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Level       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat description/topic state capability.

func (ChatCapabilitiesStateDescription) RawJSON

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesStateDescription) UnmarshalJSON

func (r *ChatCapabilitiesStateDescription) UnmarshalJSON(data []byte) error

type ChatCapabilitiesStateDisappearingTimer

type ChatCapabilitiesStateDisappearingTimer struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Level int64 `json:"level" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Level       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Disappearing-message timer state capability.

func (ChatCapabilitiesStateDisappearingTimer) RawJSON

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesStateDisappearingTimer) UnmarshalJSON

func (r *ChatCapabilitiesStateDisappearingTimer) UnmarshalJSON(data []byte) error

type ChatCapabilitiesStateTitle

type ChatCapabilitiesStateTitle struct {
	// -2: rejected, -1: dropped, 0: unsupported, 1: partially supported, 2: fully
	// supported.
	//
	// Any of -2, -1, 0, 1, 2.
	Level int64 `json:"level" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Level       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat title state capability.

func (ChatCapabilitiesStateTitle) RawJSON

func (r ChatCapabilitiesStateTitle) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatCapabilitiesStateTitle) UnmarshalJSON

func (r *ChatCapabilitiesStateTitle) UnmarshalJSON(data []byte) error

type ChatDraft

type ChatDraft struct {
	// Matrix HTML draft body.
	Text string `json:"text" api:"required"`
	// Draft attachments keyed by attachment ID.
	Attachments map[string]ChatDraftAttachment `json:"attachments"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Text        respjson.Field
		Attachments respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Current draft object for this chat, or null when no draft is set.

func (ChatDraft) RawJSON

func (r ChatDraft) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatDraft) UnmarshalJSON

func (r *ChatDraft) UnmarshalJSON(data []byte) error

type ChatDraftAttachment

type ChatDraftAttachment struct {
	// Draft attachment identifier.
	ID string `json:"id" api:"required"`
	// Draft attachment type. GIF and recorded audio are mutually exclusive types.
	//
	// Any of "file", "gif", "recorded_audio".
	Type string `json:"type" api:"required"`
	// Audio duration in seconds if known.
	AudioDurationSeconds float64 `json:"audioDurationSeconds"`
	// Original filename if available.
	FileName string `json:"fileName"`
	// Local filesystem path for the draft attachment.
	FilePath string `json:"filePath"`
	// File size in bytes if known.
	FileSize float64 `json:"fileSize"`
	// MIME type if known.
	MimeType string `json:"mimeType"`
	// Pixel dimensions of the attachment.
	Size ChatDraftAttachmentSize `json:"size"`
	// Sticker identifier if the draft attachment is a sticker.
	StickerID string `json:"stickerID"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ID                   respjson.Field
		Type                 respjson.Field
		AudioDurationSeconds respjson.Field
		FileName             respjson.Field
		FilePath             respjson.Field
		FileSize             respjson.Field
		MimeType             respjson.Field
		Size                 respjson.Field
		StickerID            respjson.Field
		ExtraFields          map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (ChatDraftAttachment) RawJSON

func (r ChatDraftAttachment) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatDraftAttachment) UnmarshalJSON

func (r *ChatDraftAttachment) UnmarshalJSON(data []byte) error

type ChatDraftAttachmentSize

type ChatDraftAttachmentSize struct {
	Height float64 `json:"height"`
	Width  float64 `json:"width"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Height      respjson.Field
		Width       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Pixel dimensions of the attachment.

func (ChatDraftAttachmentSize) RawJSON

func (r ChatDraftAttachmentSize) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatDraftAttachmentSize) UnmarshalJSON

func (r *ChatDraftAttachmentSize) UnmarshalJSON(data []byte) error

type ChatGetParams

type ChatGetParams struct {
	// Maximum number of participants to return. Use -1 for all; otherwise 0-500.
	// Defaults to 100. List and search endpoints return up to 20 participants per
	// chat.
	MaxParticipantCount param.Opt[int64] `query:"maxParticipantCount,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (ChatGetParams) URLQuery

func (r ChatGetParams) URLQuery() (v url.Values, err error)

URLQuery serializes ChatGetParams's query parameters as `url.Values`.

type ChatListParams

type ChatListParams struct {
	// Opaque pagination cursor; do not inspect. Use together with 'direction'.
	Cursor param.Opt[string] `query:"cursor,omitzero" json:"-"`
	// Limit to specific account IDs. If omitted, fetches from all accounts.
	AccountIDs []string `query:"accountIDs,omitzero" json:"-"`
	// Pagination direction used with 'cursor': 'before' fetches older results, 'after'
	// fetches newer results. Defaults to 'before' when only 'cursor' is provided.
	//
	// Any of "after", "before".
	Direction ChatListParamsDirection `query:"direction,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (ChatListParams) URLQuery

func (r ChatListParams) URLQuery() (v url.Values, err error)

URLQuery serializes ChatListParams's query parameters as `url.Values`.

type ChatListParamsDirection

type ChatListParamsDirection string

Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.

const (
	ChatListParamsDirectionAfter  ChatListParamsDirection = "after"
	ChatListParamsDirectionBefore ChatListParamsDirection = "before"
)

type ChatListResponse

type ChatListResponse struct {
	// Last message preview for this chat, if available.
	Preview shared.Message `json:"preview"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Preview     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
	Chat
}

Chat with optional last message preview.

func (ChatListResponse) RawJSON

func (r ChatListResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatListResponse) UnmarshalJSON

func (r *ChatListResponse) UnmarshalJSON(data []byte) error

type ChatMarkReadParams

type ChatMarkReadParams struct {
	// Optional message ID to mark read through.
	MessageID param.Opt[string] `json:"messageID,omitzero"`
	// contains filtered or unexported fields
}

func (ChatMarkReadParams) MarshalJSON

func (r ChatMarkReadParams) MarshalJSON() (data []byte, err error)

func (*ChatMarkReadParams) UnmarshalJSON

func (r *ChatMarkReadParams) UnmarshalJSON(data []byte) error

type ChatMarkUnreadParams

type ChatMarkUnreadParams struct {
	// Optional message ID to mark unread from.
	MessageID param.Opt[string] `json:"messageID,omitzero"`
	// contains filtered or unexported fields
}

func (ChatMarkUnreadParams) MarshalJSON

func (r ChatMarkUnreadParams) MarshalJSON() (data []byte, err error)

func (*ChatMarkUnreadParams) UnmarshalJSON

func (r *ChatMarkUnreadParams) UnmarshalJSON(data []byte) error

type ChatMessageReactionAddParams

type ChatMessageReactionAddParams struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `path:"chatID" api:"required" json:"-"`
	// Reaction key to add (emoji, shortcode, or custom emoji key)
	ReactionKey string `json:"reactionKey" api:"required"`
	// Optional transaction ID for deduplication and send tracking
	TransactionID param.Opt[string] `json:"transactionID,omitzero"`
	// contains filtered or unexported fields
}

func (ChatMessageReactionAddParams) MarshalJSON

func (r ChatMessageReactionAddParams) MarshalJSON() (data []byte, err error)

func (*ChatMessageReactionAddParams) UnmarshalJSON

func (r *ChatMessageReactionAddParams) UnmarshalJSON(data []byte) error

type ChatMessageReactionAddResponse

type ChatMessageReactionAddResponse struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `json:"chatID" api:"required"`
	// Message ID.
	MessageID string `json:"messageID" api:"required"`
	// Reaction key that was added.
	ReactionKey string `json:"reactionKey" api:"required"`
	// Always true. Indicates the reaction was queued; failures return an error
	// response.
	Success bool `json:"success" api:"required"`
	// Transaction ID used for send tracking.
	TransactionID string `json:"transactionID" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ChatID        respjson.Field
		MessageID     respjson.Field
		ReactionKey   respjson.Field
		Success       respjson.Field
		TransactionID respjson.Field
		ExtraFields   map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (ChatMessageReactionAddResponse) RawJSON

Returns the unmodified JSON received from the API

func (*ChatMessageReactionAddResponse) UnmarshalJSON

func (r *ChatMessageReactionAddResponse) UnmarshalJSON(data []byte) error

type ChatMessageReactionDeleteParams

type ChatMessageReactionDeleteParams struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `path:"chatID" api:"required" json:"-"`
	// Message ID.
	MessageID string `path:"messageID" api:"required" json:"-"`
	// contains filtered or unexported fields
}

type ChatMessageReactionDeleteResponse

type ChatMessageReactionDeleteResponse struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `json:"chatID" api:"required"`
	// Message ID.
	MessageID string `json:"messageID" api:"required"`
	// Reaction key that was removed.
	ReactionKey string `json:"reactionKey" api:"required"`
	// Always true. Indicates the reaction removal was queued; failures return an error
	// response.
	Success bool `json:"success" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ChatID      respjson.Field
		MessageID   respjson.Field
		ReactionKey respjson.Field
		Success     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (ChatMessageReactionDeleteResponse) RawJSON

Returns the unmodified JSON received from the API

func (*ChatMessageReactionDeleteResponse) UnmarshalJSON

func (r *ChatMessageReactionDeleteResponse) UnmarshalJSON(data []byte) error

type ChatMessageReactionService

type ChatMessageReactionService struct {
	Options []option.RequestOption
}

Manage message reactions

ChatMessageReactionService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewChatMessageReactionService method instead.

func NewChatMessageReactionService

func NewChatMessageReactionService(opts ...option.RequestOption) (r ChatMessageReactionService)

NewChatMessageReactionService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*ChatMessageReactionService) Add

Add a reaction to an existing message.

func (*ChatMessageReactionService) Delete

Remove the reaction added by the authenticated user from an existing message.

type ChatMessageService

type ChatMessageService struct {
	Options []option.RequestOption
	// Manage message reactions
	Reactions ChatMessageReactionService
}

Manage chat messages

ChatMessageService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewChatMessageService method instead.

func NewChatMessageService

func NewChatMessageService(opts ...option.RequestOption) (r ChatMessageService)

NewChatMessageService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

type ChatNewParams

type ChatNewParams struct {
	// Account to create or start the chat on.
	AccountID string `json:"accountID" api:"required"`
	// User IDs to include in the new chat.
	ParticipantIDs []string `json:"participantIDs,omitzero" api:"required"`
	// 'single' requires exactly one participantID; 'group' supports multiple
	// participants and optional title.
	//
	// Any of "single", "group".
	Type ChatNewParamsType `json:"type,omitzero" api:"required"`
	// Optional first message content if the platform requires it to create the chat.
	MessageText param.Opt[string] `json:"messageText,omitzero"`
	// Optional title for group chats; ignored for single chats on most networks.
	Title param.Opt[string] `json:"title,omitzero"`
	// contains filtered or unexported fields
}

func (ChatNewParams) MarshalJSON

func (r ChatNewParams) MarshalJSON() (data []byte, err error)

func (*ChatNewParams) UnmarshalJSON

func (r *ChatNewParams) UnmarshalJSON(data []byte) error

type ChatNewParamsType

type ChatNewParamsType string

'single' requires exactly one participantID; 'group' supports multiple participants and optional title.

const (
	ChatNewParamsTypeSingle ChatNewParamsType = "single"
	ChatNewParamsTypeGroup  ChatNewParamsType = "group"
)

type ChatNewResponse

type ChatNewResponse struct {
	// DEPRECATED - use id instead. Compatibility alias for older clients.
	//
	// Deprecated: deprecated
	ChatID string `json:"chatID" api:"required"`
	// DEPRECATED - legacy start-chat status for older clients. New clients should
	// inspect the returned Chat instead.
	//
	// Any of "existing", "created".
	//
	// Deprecated: deprecated
	Status string `json:"status"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ChatID      respjson.Field
		Status      respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
	Chat
}

func (ChatNewResponse) RawJSON

func (r ChatNewResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatNewResponse) UnmarshalJSON

func (r *ChatNewResponse) UnmarshalJSON(data []byte) error

type ChatNotifyAnywayParams

type ChatNotifyAnywayParams struct {
	// contains filtered or unexported fields
}

func (ChatNotifyAnywayParams) MarshalJSON

func (r ChatNotifyAnywayParams) MarshalJSON() (data []byte, err error)

func (*ChatNotifyAnywayParams) UnmarshalJSON

func (r *ChatNotifyAnywayParams) UnmarshalJSON(data []byte) error

type ChatParticipants

type ChatParticipants struct {
	// True if there are more participants than included in items.
	HasMore bool `json:"hasMore" api:"required"`
	// Participants returned for this chat (limited by the request; may be a subset).
	Items []ChatParticipantsItem `json:"items" api:"required"`
	// Total number of participants in the chat.
	Total int64 `json:"total" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		HasMore     respjson.Field
		Items       respjson.Field
		Total       respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Chat participants information.

func (ChatParticipants) RawJSON

func (r ChatParticipants) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatParticipants) UnmarshalJSON

func (r *ChatParticipants) UnmarshalJSON(data []byte) error

type ChatParticipantsItem

type ChatParticipantsItem struct {
	// True if this participant has admin privileges in the chat.
	IsAdmin bool `json:"isAdmin"`
	// True if this participant represents a network or bridge bot.
	IsNetworkBot bool `json:"isNetworkBot"`
	// True if this participant has been invited but has not joined yet.
	IsPending bool `json:"isPending"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		IsAdmin      respjson.Field
		IsNetworkBot respjson.Field
		IsPending    respjson.Field
		ExtraFields  map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
	shared.User
}

A chat participant. Extends User with chat membership metadata.

func (ChatParticipantsItem) RawJSON

func (r ChatParticipantsItem) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatParticipantsItem) UnmarshalJSON

func (r *ChatParticipantsItem) UnmarshalJSON(data []byte) error

type ChatReminder

type ChatReminder struct {
	// Cancel reminder if someone messages in the chat.
	DismissOnIncomingMessage bool `json:"dismissOnIncomingMessage"`
	// Timestamp when the reminder should trigger.
	RemindAt time.Time `json:"remindAt" format:"date-time"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		DismissOnIncomingMessage respjson.Field
		RemindAt                 respjson.Field
		ExtraFields              map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Current reminder for this chat, or null when no reminder is set.

func (ChatReminder) RawJSON

func (r ChatReminder) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatReminder) UnmarshalJSON

func (r *ChatReminder) UnmarshalJSON(data []byte) error

type ChatReminderNewParams

type ChatReminderNewParams struct {
	// Reminder configuration
	Reminder ChatReminderNewParamsReminder `json:"reminder,omitzero" api:"required"`
	// contains filtered or unexported fields
}

func (ChatReminderNewParams) MarshalJSON

func (r ChatReminderNewParams) MarshalJSON() (data []byte, err error)

func (*ChatReminderNewParams) UnmarshalJSON

func (r *ChatReminderNewParams) UnmarshalJSON(data []byte) error

type ChatReminderNewParamsReminder

type ChatReminderNewParamsReminder struct {
	// Timestamp when the reminder should trigger.
	RemindAt time.Time `json:"remindAt" api:"required" format:"date-time"`
	// Cancel reminder if someone messages in the chat
	DismissOnIncomingMessage param.Opt[bool] `json:"dismissOnIncomingMessage,omitzero"`
	// contains filtered or unexported fields
}

Reminder configuration

The property RemindAt is required.

func (ChatReminderNewParamsReminder) MarshalJSON

func (r ChatReminderNewParamsReminder) MarshalJSON() (data []byte, err error)

func (*ChatReminderNewParamsReminder) UnmarshalJSON

func (r *ChatReminderNewParamsReminder) UnmarshalJSON(data []byte) error

type ChatReminderService

type ChatReminderService struct {
	Options []option.RequestOption
}

Manage reminders for chats

ChatReminderService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewChatReminderService method instead.

func NewChatReminderService

func NewChatReminderService(opts ...option.RequestOption) (r ChatReminderService)

NewChatReminderService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*ChatReminderService) Delete

func (r *ChatReminderService) Delete(ctx context.Context, chatID string, opts ...option.RequestOption) (err error)

Clear an existing reminder from a chat

func (*ChatReminderService) New

func (r *ChatReminderService) New(ctx context.Context, chatID string, body ChatReminderNewParams, opts ...option.RequestOption) (err error)

Set a reminder for a chat at a specific time

type ChatSearchParams

type ChatSearchParams struct {
	// Include chats marked as Muted by the user, which are usually less important.
	// Default: true. Set to false if the user wants a more refined search.
	IncludeMuted param.Opt[bool] `query:"includeMuted,omitzero" json:"-"`
	// Set to true to only retrieve chats that have unread messages
	UnreadOnly param.Opt[bool] `query:"unreadOnly,omitzero" json:"-"`
	// Opaque pagination cursor; do not inspect. Use together with 'direction'.
	Cursor param.Opt[string] `query:"cursor,omitzero" json:"-"`
	// Provide an ISO datetime string to only retrieve chats with last activity after
	// this time
	LastActivityAfter param.Opt[time.Time] `query:"lastActivityAfter,omitzero" format:"date-time" json:"-"`
	// Provide an ISO datetime string to only retrieve chats with last activity before
	// this time
	LastActivityBefore param.Opt[time.Time] `query:"lastActivityBefore,omitzero" format:"date-time" json:"-"`
	// Set the maximum number of chats to retrieve. Valid range: 1-200, default is 50
	Limit param.Opt[int64] `query:"limit,omitzero" json:"-"`
	// Literal token search (non-semantic). Use single words users type (e.g.,
	// "dinner"). When multiple words provided, ALL must match. Case-insensitive.
	Query param.Opt[string] `query:"query,omitzero" json:"-"`
	// Provide an array of account IDs to filter chats from specific messaging accounts
	// only
	AccountIDs []string `query:"accountIDs,omitzero" json:"-"`
	// Pagination direction used with 'cursor': 'before' fetches older results, 'after'
	// fetches newer results. Defaults to 'before' when only 'cursor' is provided.
	//
	// Any of "after", "before".
	Direction ChatSearchParamsDirection `query:"direction,omitzero" json:"-"`
	// Filter by inbox type: "primary" (non-archived, non-low-priority),
	// "low-priority", or "archive". If not specified, shows all chats.
	//
	// Any of "primary", "low-priority", "archive".
	Inbox ChatSearchParamsInbox `query:"inbox,omitzero" json:"-"`
	// Search scope: 'titles' matches title + network; 'participants' matches
	// participant names.
	//
	// Any of "titles", "participants".
	Scope ChatSearchParamsScope `query:"scope,omitzero" json:"-"`
	// Specify the type of chats to retrieve: use "single" for direct messages, "group"
	// for group chats, or "any" to get all types
	//
	// Any of "single", "group", "any".
	Type ChatSearchParamsType `query:"type,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (ChatSearchParams) URLQuery

func (r ChatSearchParams) URLQuery() (v url.Values, err error)

URLQuery serializes ChatSearchParams's query parameters as `url.Values`.

type ChatSearchParamsDirection

type ChatSearchParamsDirection string

Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.

const (
	ChatSearchParamsDirectionAfter  ChatSearchParamsDirection = "after"
	ChatSearchParamsDirectionBefore ChatSearchParamsDirection = "before"
)

type ChatSearchParamsInbox

type ChatSearchParamsInbox string

Filter by inbox type: "primary" (non-archived, non-low-priority), "low-priority", or "archive". If not specified, shows all chats.

const (
	ChatSearchParamsInboxPrimary     ChatSearchParamsInbox = "primary"
	ChatSearchParamsInboxLowPriority ChatSearchParamsInbox = "low-priority"
	ChatSearchParamsInboxArchive     ChatSearchParamsInbox = "archive"
)

type ChatSearchParamsScope

type ChatSearchParamsScope string

Search scope: 'titles' matches title + network; 'participants' matches participant names.

const (
	ChatSearchParamsScopeTitles       ChatSearchParamsScope = "titles"
	ChatSearchParamsScopeParticipants ChatSearchParamsScope = "participants"
)

type ChatSearchParamsType

type ChatSearchParamsType string

Specify the type of chats to retrieve: use "single" for direct messages, "group" for group chats, or "any" to get all types

const (
	ChatSearchParamsTypeSingle ChatSearchParamsType = "single"
	ChatSearchParamsTypeGroup  ChatSearchParamsType = "group"
	ChatSearchParamsTypeAny    ChatSearchParamsType = "any"
)

type ChatService

type ChatService struct {
	Options []option.RequestOption
	// Manage reminders for chats
	Reminders ChatReminderService
	// Manage chat messages
	Messages ChatMessageService
}

Manage chats

ChatService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewChatService method instead.

func NewChatService

func NewChatService(opts ...option.RequestOption) (r ChatService)

NewChatService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*ChatService) Archive

func (r *ChatService) Archive(ctx context.Context, chatID string, body ChatArchiveParams, opts ...option.RequestOption) (err error)

Archive or unarchive a chat. Set archived=true to move to archive, archived=false to move back to inbox

func (*ChatService) Get

func (r *ChatService) Get(ctx context.Context, chatID string, query ChatGetParams, opts ...option.RequestOption) (res *Chat, err error)

Retrieve chat details including metadata, participants, and latest message

func (*ChatService) List

List all chats sorted by last activity (most recent first). Combines all accounts into a single paginated list.

func (*ChatService) ListAutoPaging

List all chats sorted by last activity (most recent first). Combines all accounts into a single paginated list.

func (*ChatService) MarkRead

func (r *ChatService) MarkRead(ctx context.Context, chatID string, body ChatMarkReadParams, opts ...option.RequestOption) (res *Chat, err error)

Mark a chat as read, optionally through a specific message ID.

func (*ChatService) MarkUnread

func (r *ChatService) MarkUnread(ctx context.Context, chatID string, body ChatMarkUnreadParams, opts ...option.RequestOption) (res *Chat, err error)

Mark a chat as unread, optionally from a specific message ID.

func (*ChatService) New

func (r *ChatService) New(ctx context.Context, body ChatNewParams, opts ...option.RequestOption) (res *ChatNewResponse, err error)

Create a direct or group chat from participant IDs. Returns the created chat.

func (*ChatService) NotifyAnyway

func (r *ChatService) NotifyAnyway(ctx context.Context, chatID string, body ChatNotifyAnywayParams, opts ...option.RequestOption) (res *Chat, err error)

Force a delivery notification when supported by the underlying network. Currently intended for iMessage on macOS; unsupported networks return an error.

func (*ChatService) Search

func (r *ChatService) Search(ctx context.Context, query ChatSearchParams, opts ...option.RequestOption) (res *pagination.CursorSearch[Chat], err error)

Search chats by title, network, or participant names.

func (*ChatService) SearchAutoPaging

Search chats by title, network, or participant names.

func (*ChatService) Start

func (r *ChatService) Start(ctx context.Context, body ChatStartParams, opts ...option.RequestOption) (res *ChatStartResponse, err error)

Resolve a user/contact and open a direct chat. Reuses and returns an existing direct chat when one is found. Available in Beeper Desktop v4.2.808+.

func (*ChatService) Update

func (r *ChatService) Update(ctx context.Context, chatID string, body ChatUpdateParams, opts ...option.RequestOption) (res *Chat, err error)

Update supported chat fields. Non-empty draft objects are accepted only when the current draft is empty. Send draft=null to clear the draft before setting new draft text or attachments.

type ChatSnooze

type ChatSnooze struct {
	// Timestamp when the snooze expires.
	SnoozeUntil time.Time `json:"snoozeUntil" format:"date-time"`
	// Timestamp when the user set the snooze.
	UserSnoozedAt time.Time `json:"userSnoozedAt" format:"date-time"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		SnoozeUntil   respjson.Field
		UserSnoozedAt respjson.Field
		ExtraFields   map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Current snooze state for this chat, or null when no snooze is set.

func (ChatSnooze) RawJSON

func (r ChatSnooze) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatSnooze) UnmarshalJSON

func (r *ChatSnooze) UnmarshalJSON(data []byte) error

type ChatStartParams

type ChatStartParams struct {
	// Account to create or start the chat on.
	AccountID string `json:"accountID" api:"required"`
	// Merged user-like contact payload used to resolve the best identifier.
	User ChatStartParamsUser `json:"user,omitzero" api:"required"`
	// Whether invite-based DM creation is allowed when required by the platform.
	AllowInvite param.Opt[bool] `json:"allowInvite,omitzero"`
	// Optional first message content if the platform requires it to create the chat.
	MessageText param.Opt[string] `json:"messageText,omitzero"`
	// contains filtered or unexported fields
}

func (ChatStartParams) MarshalJSON

func (r ChatStartParams) MarshalJSON() (data []byte, err error)

func (*ChatStartParams) UnmarshalJSON

func (r *ChatStartParams) UnmarshalJSON(data []byte) error

type ChatStartParamsUser

type ChatStartParamsUser struct {
	// Known user ID when available.
	ID param.Opt[string] `json:"id,omitzero"`
	// Email candidate.
	Email param.Opt[string] `json:"email,omitzero"`
	// Display name hint used for ranking only.
	FullName param.Opt[string] `json:"fullName,omitzero"`
	// Phone number candidate (E.164 preferred).
	PhoneNumber param.Opt[string] `json:"phoneNumber,omitzero"`
	// Username/handle candidate.
	Username param.Opt[string] `json:"username,omitzero"`
	// contains filtered or unexported fields
}

Merged user-like contact payload used to resolve the best identifier.

func (ChatStartParamsUser) MarshalJSON

func (r ChatStartParamsUser) MarshalJSON() (data []byte, err error)

func (*ChatStartParamsUser) UnmarshalJSON

func (r *ChatStartParamsUser) UnmarshalJSON(data []byte) error

type ChatStartResponse

type ChatStartResponse struct {
	// DEPRECATED - use id instead. Compatibility alias for older clients.
	//
	// Deprecated: deprecated
	ChatID string `json:"chatID" api:"required"`
	// DEPRECATED - legacy start-chat status for older clients. New clients should
	// inspect the returned Chat instead.
	//
	// Any of "existing", "created".
	//
	// Deprecated: deprecated
	Status string `json:"status"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ChatID      respjson.Field
		Status      respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
	Chat
}

func (ChatStartResponse) RawJSON

func (r ChatStartResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*ChatStartResponse) UnmarshalJSON

func (r *ChatStartResponse) UnmarshalJSON(data []byte) error

type ChatType

type ChatType string

Chat type: 'single' for direct messages, 'group' for group chats.

const (
	ChatTypeSingle ChatType = "single"
	ChatTypeGroup  ChatType = "group"
)

type ChatUpdateParams

type ChatUpdateParams struct {
	// Group chat description/topic. Support depends on the chat account and chat
	// permissions.
	Description param.Opt[string] `json:"description,omitzero"`
	// Local filesystem path to a group chat avatar image. Support depends on the chat
	// account and chat permissions.
	ImgURL param.Opt[string] `json:"imgURL,omitzero"`
	// Disappearing-message timer in seconds, or null to clear when supported.
	MessageExpirySeconds param.Opt[int64] `json:"messageExpirySeconds,omitzero"`
	// Custom chat title. Support depends on the chat account and chat permissions.
	Title param.Opt[string] `json:"title,omitzero"`
	// Archive or unarchive the chat.
	IsArchived param.Opt[bool] `json:"isArchived,omitzero"`
	// Mark or unmark the chat as low priority when supported by the account.
	IsLowPriority param.Opt[bool] `json:"isLowPriority,omitzero"`
	// Mute or unmute the chat.
	IsMuted param.Opt[bool] `json:"isMuted,omitzero"`
	// Pin or unpin the chat when supported by the account.
	IsPinned param.Opt[bool] `json:"isPinned,omitzero"`
	// Draft object to set or clear. Non-empty drafts are only accepted when the
	// current draft is empty. Send draft=null to clear text and attachments together
	// before setting a new draft.
	Draft ChatUpdateParamsDraft `json:"draft,omitzero"`
	// contains filtered or unexported fields
}

func (ChatUpdateParams) MarshalJSON

func (r ChatUpdateParams) MarshalJSON() (data []byte, err error)

func (*ChatUpdateParams) UnmarshalJSON

func (r *ChatUpdateParams) UnmarshalJSON(data []byte) error

type ChatUpdateParamsDraft

type ChatUpdateParamsDraft struct {
	// Draft text. Plain text and Markdown are converted to Matrix HTML with the same
	// rules used by send and edit.
	Text string `json:"text" api:"required"`
	// Draft attachments keyed by attachment ID. Each attachment must reference an
	// uploadID returned by the upload file endpoint.
	Attachments map[string]ChatUpdateParamsDraftAttachment `json:"attachments,omitzero"`
	// contains filtered or unexported fields
}

Draft object to set or clear. Non-empty drafts are only accepted when the current draft is empty. Send draft=null to clear text and attachments together before setting a new draft.

The property Text is required.

func (ChatUpdateParamsDraft) MarshalJSON

func (r ChatUpdateParamsDraft) MarshalJSON() (data []byte, err error)

func (*ChatUpdateParamsDraft) UnmarshalJSON

func (r *ChatUpdateParamsDraft) UnmarshalJSON(data []byte) error

type ChatUpdateParamsDraftAttachment

type ChatUpdateParamsDraftAttachment struct {
	// Upload ID from uploadAsset endpoint. Required to reference uploaded files.
	UploadID string `json:"uploadID" api:"required"`
	// Optional draft attachment identifier. If omitted, a new identifier is generated.
	ID param.Opt[string] `json:"id,omitzero"`
	// Duration in seconds (optional override of cached value)
	Duration param.Opt[float64] `json:"duration,omitzero"`
	// Filename (optional override of cached value)
	FileName param.Opt[string] `json:"fileName,omitzero"`
	// MIME type (optional override of cached value)
	MimeType param.Opt[string] `json:"mimeType,omitzero"`
	// Dimensions (optional override of cached value)
	Size ChatUpdateParamsDraftAttachmentSize `json:"size,omitzero"`
	// Attachment type hint (image, video, audio, file, gif, voice-note, sticker). If
	// omitted, auto-detected from mimeType
	//
	// Any of "image", "video", "audio", "file", "gif", "voice-note", "sticker".
	Type string `json:"type,omitzero"`
	// contains filtered or unexported fields
}

The property UploadID is required.

func (ChatUpdateParamsDraftAttachment) MarshalJSON

func (r ChatUpdateParamsDraftAttachment) MarshalJSON() (data []byte, err error)

func (*ChatUpdateParamsDraftAttachment) UnmarshalJSON

func (r *ChatUpdateParamsDraftAttachment) UnmarshalJSON(data []byte) error

type ChatUpdateParamsDraftAttachmentSize

type ChatUpdateParamsDraftAttachmentSize struct {
	Height float64 `json:"height" api:"required"`
	Width  float64 `json:"width" api:"required"`
	// contains filtered or unexported fields
}

Dimensions (optional override of cached value)

The properties Height, Width are required.

func (ChatUpdateParamsDraftAttachmentSize) MarshalJSON

func (r ChatUpdateParamsDraftAttachmentSize) MarshalJSON() (data []byte, err error)

func (*ChatUpdateParamsDraftAttachmentSize) UnmarshalJSON

func (r *ChatUpdateParamsDraftAttachmentSize) UnmarshalJSON(data []byte) error

type Client

type Client struct {
	Options []option.RequestOption
	// Manage connected chat accounts
	Accounts AccountService
	// Manage chats
	Chats ChatService
	// Manage messages in chats
	Messages MessageService
	// Manage assets in Beeper Desktop, like message attachments
	Assets AssetService
	// Server discovery and capability metadata. Use /v1/info before authentication
	// setup.
	Info InfoService
}

Client creates a struct with services and top level methods that help with interacting with the beeperdesktop API. You should not instantiate this client directly, and instead use the NewClient method instead.

func NewClient

func NewClient(opts ...option.RequestOption) (r Client)

NewClient generates a new client with the default option read from the environment (BEEPER_ACCESS_TOKEN, BEEPER_BASE_URL). The option passed in as arguments are applied after these default arguments, and all option will be passed down to the services and requests that this client makes.

func (*Client) Delete

func (r *Client) Delete(ctx context.Context, path string, params any, res any, opts ...option.RequestOption) error

Delete makes a DELETE request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.

func (*Client) Execute

func (r *Client) Execute(ctx context.Context, method string, path string, params any, res any, opts ...option.RequestOption) error

Execute makes a request with the given context, method, URL, request params, response, and request options. This is useful for hitting undocumented endpoints while retaining the base URL, auth, retries, and other options from the client.

If a byte slice or an io.Reader is supplied to params, it will be used as-is for the request body.

The params is by default serialized into the body using encoding/json. If your type implements a MarshalJSON function, it will be used instead to serialize the request. If a URLQuery method is implemented, the returned url.Values will be used as query strings to the url.

If your params struct uses param.Field, you must provide either [MarshalJSON], [URLQuery], and/or [MarshalForm] functions. It is undefined behavior to use a struct uses param.Field without specifying how it is serialized.

Any "…Params" object defined in this library can be used as the request argument. Note that 'path' arguments will not be forwarded into the url.

The response body will be deserialized into the res variable, depending on its type:

  • A pointer to a *http.Response is populated by the raw response.
  • A pointer to a byte array will be populated with the contents of the request body.
  • A pointer to any other type uses this library's default JSON decoding, which respects UnmarshalJSON if it is defined on the type.
  • A nil value will not read the response body.

For even greater flexibility, see option.WithResponseInto and option.WithResponseBodyInto.

func (*Client) Focus

func (r *Client) Focus(ctx context.Context, body FocusParams, opts ...option.RequestOption) (res *FocusResponse, err error)

Focus Beeper Desktop and optionally navigate to a specific chat, message, or pre-fill plain text and an image path.

func (*Client) Get

func (r *Client) Get(ctx context.Context, path string, params any, res any, opts ...option.RequestOption) error

Get makes a GET request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.

func (*Client) Patch

func (r *Client) Patch(ctx context.Context, path string, params any, res any, opts ...option.RequestOption) error

Patch makes a PATCH request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.

func (*Client) Post

func (r *Client) Post(ctx context.Context, path string, params any, res any, opts ...option.RequestOption) error

Post makes a POST request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.

func (*Client) Put

func (r *Client) Put(ctx context.Context, path string, params any, res any, opts ...option.RequestOption) error

Put makes a PUT request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.

func (*Client) Search

func (r *Client) Search(ctx context.Context, query SearchParams, opts ...option.RequestOption) (res *SearchResponse, err error)

Returns matching chats, participant name matches in groups, and the first page of messages in one call. Paginate messages via search-messages. Paginate chats via search-chats.

type Error

type Error = apierror.Error

type FocusParams

type FocusParams struct {
	// Optional Beeper chat ID (or local chat ID) to focus after opening the app. If
	// omitted, only opens/focuses the app.
	ChatID param.Opt[string] `json:"chatID,omitzero"`
	// Optional image path to populate in the message input field.
	DraftAttachmentPath param.Opt[string] `json:"draftAttachmentPath,omitzero"`
	// Optional plain text to populate in the message input field.
	DraftText param.Opt[string] `json:"draftText,omitzero"`
	// Optional message ID. Jumps to that message in the chat when opening.
	MessageID param.Opt[string] `json:"messageID,omitzero"`
	// contains filtered or unexported fields
}

func (FocusParams) MarshalJSON

func (r FocusParams) MarshalJSON() (data []byte, err error)

func (*FocusParams) UnmarshalJSON

func (r *FocusParams) UnmarshalJSON(data []byte) error

type FocusResponse

type FocusResponse struct {
	// Whether the app was successfully opened/focused.
	Success bool `json:"success" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Success     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

Response indicating successful app focus action.

func (FocusResponse) RawJSON

func (r FocusResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*FocusResponse) UnmarshalJSON

func (r *FocusResponse) UnmarshalJSON(data []byte) error

type InfoGetResponse

type InfoGetResponse struct {
	App       InfoGetResponseApp       `json:"app" api:"required"`
	Endpoints InfoGetResponseEndpoints `json:"endpoints" api:"required"`
	Platform  InfoGetResponsePlatform  `json:"platform" api:"required"`
	Server    InfoGetResponseServer    `json:"server" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		App         respjson.Field
		Endpoints   respjson.Field
		Platform    respjson.Field
		Server      respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponse) RawJSON

func (r InfoGetResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*InfoGetResponse) UnmarshalJSON

func (r *InfoGetResponse) UnmarshalJSON(data []byte) error

type InfoGetResponseApp

type InfoGetResponseApp struct {
	// App bundle identifier
	BundleID string `json:"bundle_id" api:"required"`
	// App name
	Name string `json:"name" api:"required"`
	// App version
	Version string `json:"version" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		BundleID    respjson.Field
		Name        respjson.Field
		Version     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponseApp) RawJSON

func (r InfoGetResponseApp) RawJSON() string

Returns the unmodified JSON received from the API

func (*InfoGetResponseApp) UnmarshalJSON

func (r *InfoGetResponseApp) UnmarshalJSON(data []byte) error

type InfoGetResponseEndpoints

type InfoGetResponseEndpoints struct {
	// MCP endpoint
	Mcp   string                        `json:"mcp" api:"required"`
	OAuth InfoGetResponseEndpointsOAuth `json:"oauth" api:"required"`
	// OpenAPI spec endpoint
	Spec string `json:"spec" api:"required"`
	// WebSocket events endpoint
	WsEvents string `json:"ws_events" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Mcp         respjson.Field
		OAuth       respjson.Field
		Spec        respjson.Field
		WsEvents    respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponseEndpoints) RawJSON

func (r InfoGetResponseEndpoints) RawJSON() string

Returns the unmodified JSON received from the API

func (*InfoGetResponseEndpoints) UnmarshalJSON

func (r *InfoGetResponseEndpoints) UnmarshalJSON(data []byte) error

type InfoGetResponseEndpointsOAuth

type InfoGetResponseEndpointsOAuth struct {
	// OAuth authorization endpoint
	AuthorizationEndpoint string `json:"authorization_endpoint" api:"required"`
	// OAuth introspection endpoint
	IntrospectionEndpoint string `json:"introspection_endpoint" api:"required"`
	// OAuth dynamic client registration endpoint
	RegistrationEndpoint string `json:"registration_endpoint" api:"required"`
	// OAuth token revocation endpoint
	RevocationEndpoint string `json:"revocation_endpoint" api:"required"`
	// OAuth token endpoint
	TokenEndpoint string `json:"token_endpoint" api:"required"`
	// OAuth userinfo endpoint
	UserinfoEndpoint string `json:"userinfo_endpoint" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		AuthorizationEndpoint respjson.Field
		IntrospectionEndpoint respjson.Field
		RegistrationEndpoint  respjson.Field
		RevocationEndpoint    respjson.Field
		TokenEndpoint         respjson.Field
		UserinfoEndpoint      respjson.Field
		ExtraFields           map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponseEndpointsOAuth) RawJSON

Returns the unmodified JSON received from the API

func (*InfoGetResponseEndpointsOAuth) UnmarshalJSON

func (r *InfoGetResponseEndpointsOAuth) UnmarshalJSON(data []byte) error

type InfoGetResponsePlatform

type InfoGetResponsePlatform struct {
	// CPU architecture
	Arch string `json:"arch" api:"required"`
	// Operating system identifier
	Os string `json:"os" api:"required"`
	// Runtime release version
	Release string `json:"release"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Arch        respjson.Field
		Os          respjson.Field
		Release     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponsePlatform) RawJSON

func (r InfoGetResponsePlatform) RawJSON() string

Returns the unmodified JSON received from the API

func (*InfoGetResponsePlatform) UnmarshalJSON

func (r *InfoGetResponsePlatform) UnmarshalJSON(data []byte) error

type InfoGetResponseServer

type InfoGetResponseServer struct {
	// Base URL of the Beeper Desktop API server
	BaseURL string `json:"base_url" api:"required"`
	// Listening host
	Hostname string `json:"hostname" api:"required"`
	// Whether MCP endpoint is enabled
	McpEnabled bool `json:"mcp_enabled" api:"required"`
	// Listening port
	Port int64 `json:"port" api:"required"`
	// Whether remote access is enabled
	RemoteAccess bool `json:"remote_access" api:"required"`
	// Server status
	Status string `json:"status" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		BaseURL      respjson.Field
		Hostname     respjson.Field
		McpEnabled   respjson.Field
		Port         respjson.Field
		RemoteAccess respjson.Field
		Status       respjson.Field
		ExtraFields  map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (InfoGetResponseServer) RawJSON

func (r InfoGetResponseServer) RawJSON() string

Returns the unmodified JSON received from the API

func (*InfoGetResponseServer) UnmarshalJSON

func (r *InfoGetResponseServer) UnmarshalJSON(data []byte) error

type InfoService

type InfoService struct {
	Options []option.RequestOption
}

Server discovery and capability metadata. Use /v1/info before authentication setup.

InfoService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewInfoService method instead.

func NewInfoService

func NewInfoService(opts ...option.RequestOption) (r InfoService)

NewInfoService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*InfoService) Get

func (r *InfoService) Get(ctx context.Context, opts ...option.RequestOption) (res *InfoGetResponse, err error)

Returns app, platform, server, endpoint discovery, OAuth, and WebSocket metadata for this Beeper Desktop instance.

type Message

type Message = shared.Message

This is an alias to an internal type.

type MessageDeleteParams

type MessageDeleteParams struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `path:"chatID" api:"required" json:"-"`
	// True to request deletion for everyone when the network supports it; false to
	// delete only for the authenticated user when supported.
	ForEveryone param.Opt[bool] `query:"forEveryone,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (MessageDeleteParams) URLQuery

func (r MessageDeleteParams) URLQuery() (v url.Values, err error)

URLQuery serializes MessageDeleteParams's query parameters as `url.Values`.

type MessageGetParams

type MessageGetParams struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `path:"chatID" api:"required" json:"-"`
	// contains filtered or unexported fields
}
type MessageLink = shared.MessageLink

Link preview included with a message.

This is an alias to an internal type.

type MessageLinkImgSize

type MessageLinkImgSize = shared.MessageLinkImgSize

Preview image dimensions.

This is an alias to an internal type.

type MessageListParams

type MessageListParams struct {
	// Opaque pagination cursor; do not inspect. Use together with 'direction'.
	Cursor param.Opt[string] `query:"cursor,omitzero" json:"-"`
	// Pagination direction used with 'cursor': 'before' fetches older results, 'after'
	// fetches newer results. Defaults to 'before' when only 'cursor' is provided.
	//
	// Any of "after", "before".
	Direction MessageListParamsDirection `query:"direction,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (MessageListParams) URLQuery

func (r MessageListParams) URLQuery() (v url.Values, err error)

URLQuery serializes MessageListParams's query parameters as `url.Values`.

type MessageListParamsDirection

type MessageListParamsDirection string

Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.

const (
	MessageListParamsDirectionAfter  MessageListParamsDirection = "after"
	MessageListParamsDirectionBefore MessageListParamsDirection = "before"
)

type MessageSearchParams

type MessageSearchParams struct {
	// Exclude messages marked Low Priority by the user. Default: true. Set to false to
	// include all.
	ExcludeLowPriority param.Opt[bool] `query:"excludeLowPriority,omitzero" json:"-"`
	// Include messages in chats marked as Muted by the user, which are usually less
	// important. Default: true. Set to false if the user wants a more refined search.
	IncludeMuted param.Opt[bool] `query:"includeMuted,omitzero" json:"-"`
	// Opaque pagination cursor; do not inspect. Use together with 'direction'.
	Cursor param.Opt[string] `query:"cursor,omitzero" json:"-"`
	// Only include messages with timestamp strictly after this ISO 8601 datetime
	// (e.g., '2024-07-01T00:00:00Z' or '2024-07-01T00:00:00+02:00').
	DateAfter param.Opt[time.Time] `query:"dateAfter,omitzero" format:"date-time" json:"-"`
	// Only include messages with timestamp strictly before this ISO 8601 datetime
	// (e.g., '2024-07-31T23:59:59Z' or '2024-07-31T23:59:59+02:00').
	DateBefore param.Opt[time.Time] `query:"dateBefore,omitzero" format:"date-time" json:"-"`
	// Maximum number of messages to return.
	Limit param.Opt[int64] `query:"limit,omitzero" json:"-"`
	// Literal word search (non-semantic). Finds messages containing these EXACT words
	// in any order. Use single words users actually type, not concepts or phrases.
	// Example: use "dinner" not "dinner plans", use "sick" not "health issues". If
	// omitted, returns results filtered only by other parameters.
	Query param.Opt[string] `query:"query,omitzero" json:"-"`
	// Filter by sender: 'me' (messages sent by the authenticated user), 'others'
	// (messages sent by others), or a specific user ID string (user.id).
	Sender param.Opt[string] `query:"sender,omitzero" json:"-"`
	// Limit search to specific account IDs.
	AccountIDs []string `query:"accountIDs,omitzero" json:"-"`
	// Limit search to specific chat IDs.
	ChatIDs []string `query:"chatIDs,omitzero" json:"-"`
	// Filter by chat type: 'group' for group chats, 'single' for 1:1 chats.
	//
	// Any of "group", "single".
	ChatType MessageSearchParamsChatType `query:"chatType,omitzero" json:"-"`
	// Pagination direction used with 'cursor': 'before' fetches older results, 'after'
	// fetches newer results. Defaults to 'before' when only 'cursor' is provided.
	//
	// Any of "after", "before".
	Direction MessageSearchParamsDirection `query:"direction,omitzero" json:"-"`
	// Filter messages by media types. Use ['any'] for any media type, or specify exact
	// types like ['video', 'image']. Omit for no media filtering.
	//
	// Any of "any", "video", "image", "link", "file".
	MediaTypes []string `query:"mediaTypes,omitzero" json:"-"`
	// contains filtered or unexported fields
}

func (MessageSearchParams) URLQuery

func (r MessageSearchParams) URLQuery() (v url.Values, err error)

URLQuery serializes MessageSearchParams's query parameters as `url.Values`.

type MessageSearchParamsChatType

type MessageSearchParamsChatType string

Filter by chat type: 'group' for group chats, 'single' for 1:1 chats.

const (
	MessageSearchParamsChatTypeGroup  MessageSearchParamsChatType = "group"
	MessageSearchParamsChatTypeSingle MessageSearchParamsChatType = "single"
)

type MessageSearchParamsDirection

type MessageSearchParamsDirection string

Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.

const (
	MessageSearchParamsDirectionAfter  MessageSearchParamsDirection = "after"
	MessageSearchParamsDirectionBefore MessageSearchParamsDirection = "before"
)

type MessageSeenByParticipantItemUnion

type MessageSeenByParticipantItemUnion = shared.MessageSeenByParticipantItemUnion

ISO 8601 timestamp.

This is an alias to an internal type.

type MessageSeenUnion

type MessageSeenUnion = shared.MessageSeenUnion

Read receipt state for this message, when available.

This is an alias to an internal type.

type MessageSendParams

type MessageSendParams struct {
	// Provide a message ID to send this as a reply to an existing message
	ReplyToMessageID param.Opt[string] `json:"replyToMessageID,omitzero"`
	// Draft text. Plain text and Markdown are converted to Matrix HTML with the same
	// rules used by send and edit.
	Text param.Opt[string] `json:"text,omitzero"`
	// Single attachment to send with the message
	Attachment MessageSendParamsAttachment `json:"attachment,omitzero"`
	// contains filtered or unexported fields
}

func (MessageSendParams) MarshalJSON

func (r MessageSendParams) MarshalJSON() (data []byte, err error)

func (*MessageSendParams) UnmarshalJSON

func (r *MessageSendParams) UnmarshalJSON(data []byte) error

type MessageSendParamsAttachment

type MessageSendParamsAttachment struct {
	// Upload ID from uploadAsset endpoint. Required to reference uploaded files.
	UploadID string `json:"uploadID" api:"required"`
	// Duration in seconds (optional override of cached value)
	Duration param.Opt[float64] `json:"duration,omitzero"`
	// Filename (optional override of cached value)
	FileName param.Opt[string] `json:"fileName,omitzero"`
	// MIME type (optional override of cached value)
	MimeType param.Opt[string] `json:"mimeType,omitzero"`
	// Dimensions (optional override of cached value)
	Size MessageSendParamsAttachmentSize `json:"size,omitzero"`
	// Attachment type hint (image, video, audio, file, gif, voice-note, sticker). If
	// omitted, auto-detected from mimeType
	//
	// Any of "image", "video", "audio", "file", "gif", "voice-note", "sticker".
	Type string `json:"type,omitzero"`
	// contains filtered or unexported fields
}

Single attachment to send with the message

The property UploadID is required.

func (MessageSendParamsAttachment) MarshalJSON

func (r MessageSendParamsAttachment) MarshalJSON() (data []byte, err error)

func (*MessageSendParamsAttachment) UnmarshalJSON

func (r *MessageSendParamsAttachment) UnmarshalJSON(data []byte) error

type MessageSendParamsAttachmentSize

type MessageSendParamsAttachmentSize struct {
	Height float64 `json:"height" api:"required"`
	Width  float64 `json:"width" api:"required"`
	// contains filtered or unexported fields
}

Dimensions (optional override of cached value)

The properties Height, Width are required.

func (MessageSendParamsAttachmentSize) MarshalJSON

func (r MessageSendParamsAttachmentSize) MarshalJSON() (data []byte, err error)

func (*MessageSendParamsAttachmentSize) UnmarshalJSON

func (r *MessageSendParamsAttachmentSize) UnmarshalJSON(data []byte) error

type MessageSendResponse

type MessageSendResponse struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `json:"chatID" api:"required"`
	// Pending ID assigned to the message before the network confirms the send. Pass it
	// to GET /v1/chats/{chatID}/messages/{messageID} to resolve, or wait for the
	// matching message.upserted over the WebSocket.
	PendingMessageID string `json:"pendingMessageID" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		ChatID           respjson.Field
		PendingMessageID respjson.Field
		ExtraFields      map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (MessageSendResponse) RawJSON

func (r MessageSendResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*MessageSendResponse) UnmarshalJSON

func (r *MessageSendResponse) UnmarshalJSON(data []byte) error

type MessageSendStatus

type MessageSendStatus = shared.MessageSendStatus

Message send status for this message, when reported by the bridge.

This is an alias to an internal type.

type MessageService

type MessageService struct {
	Options []option.RequestOption
}

Manage messages in chats

MessageService contains methods and other services that help with interacting with the beeperdesktop API.

Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewMessageService method instead.

func NewMessageService

func NewMessageService(opts ...option.RequestOption) (r MessageService)

NewMessageService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.

func (*MessageService) Delete

func (r *MessageService) Delete(ctx context.Context, messageID string, params MessageDeleteParams, opts ...option.RequestOption) (err error)

Delete a message by final message ID. Pending message IDs are not accepted because messages cannot be deleted while sending.

func (*MessageService) Get

func (r *MessageService) Get(ctx context.Context, messageID string, query MessageGetParams, opts ...option.RequestOption) (res *shared.Message, err error)

Retrieve a message by final message ID, pendingMessageID, or Matrix event ID. Chat ID may be a Beeper chat ID or local chat ID.

func (*MessageService) List

List all messages in a chat with cursor-based pagination. Sorted by timestamp.

func (*MessageService) ListAutoPaging

List all messages in a chat with cursor-based pagination. Sorted by timestamp.

func (*MessageService) Search

Search messages across chats.

func (*MessageService) SearchAutoPaging

Search messages across chats.

func (*MessageService) Send

func (r *MessageService) Send(ctx context.Context, chatID string, body MessageSendParams, opts ...option.RequestOption) (res *MessageSendResponse, err error)

Send a text message to a specific chat. Supports replying to existing messages. Returns a pending message ID.

func (*MessageService) Update

func (r *MessageService) Update(ctx context.Context, messageID string, params MessageUpdateParams, opts ...option.RequestOption) (res *MessageUpdateResponse, err error)

Edit the text content of an existing message. Messages with attachments cannot be edited.

type MessageType

type MessageType = shared.MessageType

Message content type. Useful for distinguishing reactions, media messages, and state events from regular text messages.

This is an alias to an internal type.

type MessageUpdateParams

type MessageUpdateParams struct {
	// Chat ID. Input routes also accept the local chat ID from this Beeper Desktop
	// installation when available.
	ChatID string `path:"chatID" api:"required" json:"-"`
	// New text content for the message
	Text string `json:"text" api:"required"`
	// contains filtered or unexported fields
}

func (MessageUpdateParams) MarshalJSON

func (r MessageUpdateParams) MarshalJSON() (data []byte, err error)

func (*MessageUpdateParams) UnmarshalJSON

func (r *MessageUpdateParams) UnmarshalJSON(data []byte) error

type MessageUpdateResponse

type MessageUpdateResponse struct {
	// DEPRECATED - use id instead. Compatibility alias for older clients.
	//
	// Deprecated: deprecated
	MessageID string `json:"messageID" api:"required"`
	// DEPRECATED - compatibility field. Successful responses are already represented
	// by the 200 status code.
	//
	// Any of true.
	//
	// Deprecated: deprecated
	Success bool `json:"success" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		MessageID   respjson.Field
		Success     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
	shared.Message
}

func (MessageUpdateResponse) RawJSON

func (r MessageUpdateResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*MessageUpdateResponse) UnmarshalJSON

func (r *MessageUpdateResponse) UnmarshalJSON(data []byte) error

type Reaction

type Reaction = shared.Reaction

This is an alias to an internal type.

type SearchParams

type SearchParams struct {
	// User-typed search text. Literal word matching (non-semantic).
	Query string `query:"query" api:"required" json:"-"`
	// contains filtered or unexported fields
}

func (SearchParams) URLQuery

func (r SearchParams) URLQuery() (v url.Values, err error)

URLQuery serializes SearchParams's query parameters as `url.Values`.

type SearchResponse

type SearchResponse struct {
	Results SearchResponseResults `json:"results" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Results     respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (SearchResponse) RawJSON

func (r SearchResponse) RawJSON() string

Returns the unmodified JSON received from the API

func (*SearchResponse) UnmarshalJSON

func (r *SearchResponse) UnmarshalJSON(data []byte) error

type SearchResponseResults

type SearchResponseResults struct {
	// Top chat results.
	Chats []Chat `json:"chats" api:"required"`
	// Top group results by participant matches.
	InGroups []Chat                        `json:"in_groups" api:"required"`
	Messages SearchResponseResultsMessages `json:"messages" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Chats       respjson.Field
		InGroups    respjson.Field
		Messages    respjson.Field
		ExtraFields map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (SearchResponseResults) RawJSON

func (r SearchResponseResults) RawJSON() string

Returns the unmodified JSON received from the API

func (*SearchResponseResults) UnmarshalJSON

func (r *SearchResponseResults) UnmarshalJSON(data []byte) error

type SearchResponseResultsMessages

type SearchResponseResultsMessages struct {
	// Map of chatID -> chat details for chats referenced in items.
	Chats map[string]Chat `json:"chats" api:"required"`
	// True if additional results can be fetched using the provided cursors.
	HasMore bool `json:"hasMore" api:"required"`
	// Messages matching the query and filters.
	Items []shared.Message `json:"items" api:"required"`
	// Cursor for fetching newer results (use with direction='after'). Opaque string;
	// do not inspect.
	NewestCursor string `json:"newestCursor" api:"required"`
	// Cursor for fetching older results (use with direction='before'). Opaque string;
	// do not inspect.
	OldestCursor string `json:"oldestCursor" api:"required"`
	// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
	JSON struct {
		Chats        respjson.Field
		HasMore      respjson.Field
		Items        respjson.Field
		NewestCursor respjson.Field
		OldestCursor respjson.Field
		ExtraFields  map[string]respjson.Field
		// contains filtered or unexported fields
	} `json:"-"`
}

func (SearchResponseResultsMessages) RawJSON

Returns the unmodified JSON received from the API

func (*SearchResponseResultsMessages) UnmarshalJSON

func (r *SearchResponseResultsMessages) UnmarshalJSON(data []byte) error

type User

type User = shared.User

User the account belongs to.

This is an alias to an internal type.

Directories

Path Synopsis
encoding/json
Package json implements encoding and decoding of JSON as defined in RFC 7159.
Package json implements encoding and decoding of JSON as defined in RFC 7159.
encoding/json/shims
This package provides shims over Go 1.2{2,3} APIs which are missing from Go 1.22, and used by the Go 1.24 encoding/json package.
This package provides shims over Go 1.2{2,3} APIs which are missing from Go 1.22, and used by the Go 1.24 encoding/json package.
packages

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL