Versions in this module Expand all Collapse all v0 v0.1.13 Feb 16, 2025 Changes in this version + type Client struct + func NewClient(opts ClientOptions) (*Client, error) + func (c *Client) Execute(ctx context.Context, actionID string, input string, params map[string]string) (interface{}, error) + func (c *Client) ExecuteAsString(ctx context.Context, actionID string, input string, params map[string]string) (string, error) + func (c *Client) List(ctx context.Context) ([]ListResult, error) + type ClientOptions struct + APIKey string + AccessToken string + UserAgent string + ZapierNLABaseURL string + func (cOpts *ClientOptions) Validate() error + type ListResult struct + Description string + ID string + OperationID string + Params map[string]string + type NoCredentialsError struct + func (e NoCredentialsError) Error() string + type Transport struct + RoundTripper http.RoundTripper + UserAgent string + func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error)