phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 732 B
JavaScript
// This file was auto-generated by Fern from our API Definition.
export var Tool;
(function (Tool) {
/** The type of tool. */
Tool.Type = {
CustomContext: "custom_context",
CustomWebhook: "custom_webhook",
CustomWebsocket: "custom_websocket",
BuiltInTransferToPhoneNumber: "built_in_transfer_to_phone_number",
BuiltInTransferToAgent: "built_in_transfer_to_agent",
};
/** Mode of operation - sync waits for response, async continues without waiting. */
Tool.ExecutionMode = {
Sync: "sync",
Async: "async",
};
/** HTTP method for webhook tools. */
Tool.EndpointMethod = {
Get: "GET",
Post: "POST",
};
})(Tool || (Tool = {}));