BluefinTecsEcr SDK

BluefinTecsEcr SDK

tecsclientrest client, generated from the OpenAPI spec.

TecsClient REST authenticated ECR API (Cloud-iA Semi-Integrated Mode).

Learn more about tecsclientrest at test.tecs.at.

This is an unofficial SDK for the tecsclientrest public API, generated by Voxgig with @voxgig/sdkgen. It is not affiliated with, endorsed by, or sponsored by the upstream API provider.

Learn more about Voxgig SDKs at voxgig.com/sdk.

TypeScript, Python, PHP, Golang, Ruby, Lua, C, Clojure, C++, C#, Dart, Elixir, Haskell, Java, JavaScript, Kotlin, OCaml, Perl, Rust, Scala, Swift, Zig SDKs, a CLI, an interactive REPL, and an MCP server for AI agents — all generated from one OpenAPI spec by @voxgig/sdkgen.

Entities, not endpoints

This SDK exposes the API as a small set of semantic entities — EcrApi — that you call directly, instead of assembling URL paths and query strings. Entities are Capitalised to mark them as the primary surface, each with the operations they support (load, create):

const client = new BluefinTecsEcrSDK()
const ecrapi = await client.EcrApi().load()

Thinking in entities keeps the mental model small — for people and AI agents alike — rather than reasoning about raw HTTP routes and query parameters.

Offline unit testing

Every SDK ships a built-in test mode that swaps the HTTP transport for an in-memory mock, so your unit tests run fully offline — no server, no network, and no credentials:

TypeScript

const client = BluefinTecsEcrSDK.test()
const ecrapi = await client.EcrApi().load()
// ecrapi is a bare EcrApi populated with mock data
console.log(ecrapi)

Python

client = BluefinTecsEcrSDK.test()
ecrapi = client.EcrApi().load()
print(ecrapi)

PHP

// Seed fixture data so offline calls resolve without a live server.
$client = BluefinTecsEcrSDK::test([
    "entity" => ["ecrapi" => ["test01" => []]],
]);
$ecrapi = $client->EcrApi()->load();

Golang

client := sdk.Test()
result, err := client.EcrApi(nil).Load(
    nil, nil,
)

Ruby

# Seed fixture data so offline calls resolve without a live server.
client = BluefinTecsEcrSDK.test({
  "entity" => { "ecrapi" => { "test01" => {} } },
})
ecrapi = client.EcrApi.load()

Lua

local client = sdk.test()
local result, err = client:EcrApi():load()

C

#include "core/api.h"

BluefinTecsEcrSDK* client = test_sdk(NULL, NULL);
PNError* err = NULL;
Entity* ecr_api = bluefintecsecr_ecr_api(client, NULL);
voxgig_value* ecr_api_rec = ecr_api->vt->load(ecr_api, NULL, NULL, &err);
printf("%s\n", voxgig_to_json(ecr_api_rec));

Clojure

(require '[sdk.api :as api]
         '[sdk.entity.ecr_api :as e-ecr_api]
         '[voxgig.struct :as vs])

(def client (api/test-sdk nil nil))
(def ecr_api (e-ecr_api/load (api/ecr_api client nil) nil nil))
(println ecr_api)

C++

auto client = BluefinTecsEcrSDK::testSDK();
Value ecr_api = client->ecr_api()->load(Value::undef(), Value::undef());
std::cout << Struct::jsonify(ecr_api) << std::endl;

C#

var client = BluefinTecsEcrSDK.TestSDK(null, null);
var ecrApi = client.EcrApi().Load(null);
Console.WriteLine(ecrApi);

Dart

import 'package:bluefin_tecs_ecr_sdk/BluefinTecsEcrSDK.dart';

Future<void> main() async {
  final client = BluefinTecsEcrSDK.test();
  final ecrapi = await client.EcrApi().load();
  print(ecrapi);
}

Elixir

alias BluefinTecsEcr.Helpers, as: H

sdk = BluefinTecsEcr.test()
ecr_api = BluefinTecsEcr.ecr_api(sdk)
record = BluefinTecsEcr.Entity.EcrApi.load(ecr_api, H.deep(%{}))
IO.inspect(record)

Haskell

import qualified SdkClient as Sdk
import VoxgigStruct (Value (..), emptyMap)
import SdkHelpers (jo)

main :: IO ()
main = do
  sdk <- Sdk.testSdk0
  ent <- Sdk.ecr_api sdk VNoval
  arg <- emptyMap
  ctrl <- emptyMap
  ecr_api <- Sdk.eLoad ent arg ctrl
  print ecr_api

Java

BluefinTecsEcrSDK client = BluefinTecsEcrSDK.testSDK(null, null);
Object ecrApi = client.ecrApi(null).load(null, null);
System.out.println(ecrApi);

JavaScript

const client = BluefinTecsEcrSDK.test()
const ecrapi = await client.EcrApi().load()
// ecrapi is a bare entity populated with mock data
console.log(ecrapi)

Kotlin

val client = BluefinTecsEcrSDK.testSDK(null, null)
val ecrApi = client.ecrApi(null).load(null, null)
println(ecrApi)

OCaml

let () =
  let client = Sdk_client.test () in
  let result = (Sdk_client.ecr_api client Noval).e_load (empty_map ()) Noval in
  print_endline (stringify result)

Perl

use lib 'perl/lib';
use BluefinTecsEcrSDK;

my $client = BluefinTecsEcrSDK->test(undef, undef);
my $ecrapi = $client->EcrApi->load();
print "$ecrapi->{id}\n";

Rust

use bluefin_tecs_ecr_sdk::{jo, test_sdk, Value};

let client = test_sdk(Value::Noval, Value::Noval);
let ecr_api = client.ecr_api(Value::Noval).load(Value::Noval, Value::Noval).unwrap();
println!("{:?}", ecr_api);

Scala

val client = BluefinTecsEcrSDK.testSDK(null, null)
val ecrApi = client.ecrApi(null).load(null, null)
println(ecrApi)

Swift

let client = BluefinTecsEcrSDK.testSDK(nil, nil)
let ecrApi = try client.EcrApi().load(nil, nil)
print(ecrApi)

Zig

const std = @import("std");
const sdk = @import("sdk");
const h = sdk.h;

const client = sdk.test_sdk(h.vnull(), h.vnull());
switch (client.ecr_api(h.vnull()).load(h.vnull(), h.vnull())) {
    .ok => |ecr_api| std.debug.print("{s}\n", .{h.stringify(ecr_api)}),
    .err => |e| std.debug.print("load failed: {s}\n", .{e.msg}),
}

Packages

LanguagePackageInstall
TypeScript@voxgig-sdk/bluefin-tecs-ecrpublish pending — install from git tag
Pythonvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
PHPvoxgig-sdk/bluefin-tecs-ecrpublish pending — install from git tag
Golanggithub.com/voxgig-sdk/bluefin-tecs-ecr-sdk/gogo get github.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go@latest
Rubyvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Luavoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Cvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Clojurevoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
C++voxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
C#voxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Dartvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Elixirvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Haskellvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Javavoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
JavaScript@voxgig-sdk/bluefin-tecs-ecr-jspublish pending — install from git tag
Kotlinvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
OCamlvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Perlvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Rustvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Scalavoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Swiftvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Zigvoxgig-sdk-bluefin-tecs-ecrpublish pending — install from git tag
Go CLIgithub.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go-cligo install github.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go-cli/cmd/bluefin-tecs-ecr@latest
Go MCP servergithub.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go-mcpgo get github.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go-mcp@latest

Quickstart

TypeScript

import { BluefinTecsEcrSDK } from '@voxgig-sdk/bluefin-tecs-ecr'

const client = new BluefinTecsEcrSDK({
  apikey: process.env.BLUEFIN_TECS_ECR_APIKEY,
})

// Load ecrapi data (returns a EcrApi)
const ecrapi = await client.EcrApi().load()
console.log(ecrapi)

See the TypeScript README for the full guide.

Surfaces

SurfacePath
SDK (TypeScript, Python, PHP, Golang, Ruby, Lua, C, Clojure, C++, C#, Dart, Elixir, Haskell, Java, JavaScript, Kotlin, OCaml, Perl, Rust, Scala, Swift, Zig)ts/ py/ php/ go/ rb/ lua/ c/ clojure/ cpp/ csharp/ dart/ elixir/ haskell/ java/ js/ kotlin/ ocaml/ perl/ rust/ scala/ swift/ zig/
CLIgo-cli/
MCP servergo-mcp/

Use it from an AI agent (MCP)

The generated MCP server exposes every operation in this SDK as an MCP tool that Claude, Cursor or Cline can call directly. Build and register it:

cd go-mcp && go build -o bluefin-tecs-ecr-mcp .

Then add it to your agent’s MCP config (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "bluefin-tecs-ecr": {
      "command": "/abs/path/to/bluefin-tecs-ecr-mcp"
    }
  }
}

Entities

The API exposes one entity:

EntityDescriptionAPI path
EcrApiThe EcrApi entity (create, load)./makeTransaction

The operations available across these entities are load, create — see each entity’s own list above for exactly which it supports.

Quickstart in other languages

Python

import os
from bluefintecsecr_sdk import BluefinTecsEcrSDK

client = BluefinTecsEcrSDK({
    "apikey": os.environ.get("BLUEFIN_TECS_ECR_APIKEY"),
})


# Load a specific ecrapi (returns the record, raises on error)
ecrapi = client.EcrApi().load()
print(ecrapi)

PHP

<?php
require_once 'bluefintecsecr_sdk.php';

$client = new BluefinTecsEcrSDK([
    "apikey" => getenv("BLUEFIN_TECS_ECR_APIKEY"),
]);


// Load a specific ecrapi (returns the bare record; throws on error)
$ecrapi = $client->EcrApi()->load();
print_r($ecrapi);

Golang

import sdk "github.com/voxgig-sdk/bluefin-tecs-ecr-sdk/go"

client := sdk.NewBluefinTecsEcrSDK(map[string]any{
    "apikey": os.Getenv("BLUEFIN_TECS_ECR_APIKEY"),
})

// Load ecrapi data
ecrApi, err := client.EcrApi(nil).Load(nil, nil)
if err != nil {
    panic(err)
}
fmt.Println(ecrApi)

Ruby

require_relative "BluefinTecsEcr_sdk"

client = BluefinTecsEcrSDK.new({
  "apikey" => ENV["BLUEFIN_TECS_ECR_APIKEY"],
})


# Load a specific ecrapi (returns the bare record; raises on error)
ecrapi = client.EcrApi.load()
puts ecrapi

Lua

local sdk = require("bluefin-tecs-ecr_sdk")

local client = sdk.new({
  apikey = os.getenv("BLUEFIN_TECS_ECR_APIKEY"),
})


-- Load a specific ecrapi
local ecrapi, err = client:EcrApi():load()
print(ecrapi)

C

#include "core/api.h"

BluefinTecsEcrSDK* client = bluefintecsecr_sdk_new(cmap(1,
    "apikey", v_str(getenv("BLUEFIN_TECS_ECR_APIKEY"))));
PNError* err = NULL;


Entity* ecr_api = bluefintecsecr_ecr_api(client, NULL);
// Load a specific ecrapi (returns the record, sets *err on failure)
voxgig_value* ecr_api_rec = ecr_api->vt->load(ecr_api, NULL, NULL, &err);
printf("%s\n", voxgig_to_json(ecr_api_rec));

Clojure

(require '[sdk.api :as api]
         '[sdk.entity.ecr_api :as e-ecr_api]
         '[voxgig.struct :as vs])

(def client (api/make-sdk (vs/jm "apikey" (System/getenv "BLUEFIN_TECS_ECR_APIKEY"))))


;; Load a specific ecr_api (returns the record, raises on error)
(def ecr_api (e-ecr_api/load (api/ecr_api client nil) nil nil))
(println ecr_api)

C++

#include <cstdlib>
#include "core/sdk.hpp"

using namespace sdk;

const char* apikey = std::getenv("BLUEFIN_TECS_ECR_APIKEY");
auto client = std::make_shared<BluefinTecsEcrSDK>(vmap({
    {"apikey", Value(apikey ? apikey : "")},
}));


// Load a specific ecr_api (returns the record, throws on error)
Value ecr_api = client->ecr_api()->load(Value::undef(), Value::undef());
std::cout << Struct::jsonify(ecr_api) << std::endl;

C#

using BluefinTecsEcrSdk;

var client = new BluefinTecsEcrSDK(new Dictionary<string, object?>
{
    ["apikey"] = Environment.GetEnvironmentVariable("BLUEFIN_TECS_ECR_APIKEY"),
});


// Load a specific ecrapi (returns the record, raises on error)
var ecrApi = client.EcrApi().Load(null);
Console.WriteLine(ecrApi);

Dart

import 'dart:io';
import 'package:bluefin_tecs_ecr_sdk/BluefinTecsEcrSDK.dart';

Future<void> main() async {
  final client = BluefinTecsEcrSDK({
    'apikey': Platform.environment['BLUEFIN_TECS_ECR_APIKEY'],
  });


  // Load a specific ecrapi (returns the record, throws on error)
  final ecrapi = await client.EcrApi().load();
  print(ecrapi);
}

Elixir

alias BluefinTecsEcr.Helpers, as: H

sdk = BluefinTecsEcr.new(H.deep(%{"apikey" => System.get_env("BLUEFIN_TECS_ECR_APIKEY")}))

ecr_api = BluefinTecsEcr.ecr_api(sdk)

# Load a specific ecrapi (returns the record, raises on error)
record = BluefinTecsEcr.Entity.EcrApi.load(ecr_api, )
IO.inspect(record)

Haskell

import System.Environment (lookupEnv)
import qualified SdkClient as Sdk
import VoxgigStruct (Value (..), emptyMap)
import SdkHelpers (jo)

main :: IO ()
main = do
  mkey <- lookupEnv "BLUEFIN_TECS_ECR_APIKEY"
  opts <- jo [("apikey", maybe VNoval VStr mkey)]
  sdk <- Sdk.newSdk opts

  -- Load a specific ecrapi (returns the record, raises on error)
  ent2 <- Sdk.ecr_api sdk VNoval
  m <- jo []
  ctrl2 <- emptyMap
  ecr_api <- Sdk.eLoad ent2 m ctrl2
  print ecr_api

Java

import voxgig.bluefintecsecrsdk.core.BluefinTecsEcrSDK;

Map<String, Object> options = new java.util.LinkedHashMap<>();
options.put("apikey", System.getenv("BLUEFIN_TECS_ECR_APIKEY"));
BluefinTecsEcrSDK client = new BluefinTecsEcrSDK(options);


// Load a specific ecrapi (returns the record, raises on error)
Object ecrApi = client.ecrApi(null).load(null, null);
System.out.println(ecrApi);

JavaScript

const { BluefinTecsEcrSDK } = require('@voxgig-sdk/bluefin-tecs-ecr-js')

const client = new BluefinTecsEcrSDK({
  apikey: process.env.BLUEFIN_TECS_ECR_APIKEY,
})

Kotlin

import voxgig.bluefintecsecrsdk.core.BluefinTecsEcrSDK

val client = BluefinTecsEcrSDK(mutableMapOf<String, Any?>(
    "apikey" to System.getenv("BLUEFIN_TECS_ECR_APIKEY"),
))


// Load a specific ecrapi (returns the record, raises on error)
val ecrApi = client.ecrApi(null).load(null, null)
println(ecrApi)

OCaml

open Voxgig_struct
open Sdk_helpers

let () =
  let client = Sdk_client.make (jo [("apikey", Str (Sys.getenv "BLUEFIN_TECS_ECR_APIKEY"))]) in
  (* Load a specific ecr_api (returns the record; raises on error) *)
  let ecr_api = (Sdk_client.ecr_api client Noval).e_load (Noval) Noval in
  print_endline (stringify ecr_api)

Perl

use lib 'perl/lib';
use BluefinTecsEcrSDK;

my $client = BluefinTecsEcrSDK->new({
    'apikey' => $ENV{'BLUEFIN_TECS_ECR_APIKEY'},
});


# Load a specific ecrapi (returns the bare record; dies on error)
my $ecrapi = $client->EcrApi->load();
print "$ecrapi->{id}\n";

Rust

use bluefin_tecs_ecr_sdk::{jo, BluefinTecsEcrSDK, Value};

let client = BluefinTecsEcrSDK::new(jo(vec![
    ("apikey", Value::str(std::env::var("BLUEFIN_TECS_ECR_APIKEY").unwrap_or_default())),
]));


// Load a specific ecrapi (returns the record, Err on failure)
let ecr_api = client.ecr_api(Value::Noval).load(Value::Noval, Value::Noval).unwrap();
println!("{:?}", ecr_api);

Scala

import voxgig.bluefintecsecrsdk.core.BluefinTecsEcrSDK

val options = new java.util.LinkedHashMap[String, Object]()
options.put("apikey", System.getenv("BLUEFIN_TECS_ECR_APIKEY"))
val client = new BluefinTecsEcrSDK(options)


// Load a specific ecrapi (returns the record, raises on error)
val ecrApi = client.ecrApi(null).load(null, null)
println(ecrApi)

Swift

import BluefinTecsEcrSdk

let options = VMap()
options.entries["apikey"] = .string(
    ProcessInfo.processInfo.environment["BLUEFIN_TECS_ECR_APIKEY"] ?? "")
let client = BluefinTecsEcrSDK(options)


// Load a specific ecrapi (returns the record, throws on error)
let ecrApi = try client.EcrApi().load(nil, nil)
print(ecrApi)

Zig

const std = @import("std");
const sdk = @import("sdk");
const h = sdk.h;

const client = sdk.BluefinTecsEcrSDK.new(h.jo(&.{
    .{ "apikey", h.vstr(std.posix.getenv("BLUEFIN_TECS_ECR_APIKEY") orelse "") },
}));


// Load a specific ecrapi (Ok is the record, .err on failure)
switch (client.ecr_api(h.vnull()).load(h.vnull(), h.vnull())) {
    .ok => |ecr_api| std.debug.print("{s}\n", .{h.stringify(ecr_api)}),
    .err => |e| std.debug.print("load failed: {s}\n", .{e.msg}),
}

Direct and prepare

For endpoints the entity model doesn’t cover, use the low-level methods:

  • direct(fetchargs) — build and send an HTTP request in one step.
  • prepare(fetchargs) — build the request without sending it.

Both accept a map with path, method, params, query, headers, and body. See the How-to guides below.

How-to guides

Make a direct API call

When the entity interface does not cover an endpoint, use direct:

TypeScript:

const result = await client.direct({
  path: '/api/resource/{id}',
  method: 'GET',
  params: { id: 'example' },
})
if (result instanceof Error) {
  throw result
}
console.log(result.data)

Python:

result = client.direct({
    "path": "/api/resource/{id}",
    "method": "GET",
    "params": {"id": "example"},
})

PHP:

$result = $client->direct([
    "path" => "/api/resource/{id}",
    "method" => "GET",
    "params" => ["id" => "example"],
]);

Go:

result, err := client.Direct(map[string]any{
    "path":   "/api/resource/{id}",
    "method": "GET",
    "params": map[string]any{"id": "example"},
})
if err != nil {
    panic(err)
}
fmt.Println(result)

Ruby:

result = client.direct({
  "path" => "/api/resource/{id}",
  "method" => "GET",
  "params" => { "id" => "example" },
})

Lua:

local result, err = client:direct({
  path = "/api/resource/{id}",
  method = "GET",
  params = { id = "example" },
})

C:

PNError* err = NULL;
voxgig_value* result = sdk_direct(client, cmap(3,
    "path", v_str("/api/resource/{id}"),
    "method", v_str("GET"),
    "params", cmap(1, "id", v_str("example"))), &err);

Clojure:

(def result
  (api/direct client
    (vs/jm "path" "/api/resource/{id}"
           "method" "GET"
           "params" (vs/jm "id" "example"))))

C++:

Value result = client->direct(vmap({
    {"path", Value("/api/resource/{id}")},
    {"method", Value("GET")},
    {"params", vmap({{"id", Value("example")}})},
}));

C#:

var result = client.Direct(new Dictionary<string, object?>
{
    ["path"] = "/api/resource/{id}",
    ["method"] = "GET",
    ["params"] = new Dictionary<string, object?> { ["id"] = "example" },
});

Dart:

final result = await client.direct({
  'path': '/api/resource/{id}',
  'method': 'GET',
  'params': {'id': 'example'},
});

Elixir:

result = BluefinTecsEcr.direct(sdk, BluefinTecsEcr.Helpers.deep(%{
  "path" => "/api/resource/{id}",
  "method" => "GET",
  "params" => %{"id" => "example"}
}))

Haskell:

import qualified SdkClient as Sdk
import qualified SdkFeatures as F
import VoxgigStruct (Value (..))
import SdkHelpers (jo)

main :: IO ()
main = do
  sdk <- Sdk.newSdk0
  params <- jo [("id", VStr "example")]
  args <- jo [("path", VStr "/api/resource/{id}"), ("method", VStr "GET"), ("params", params)]
  result <- F.direct sdk args
  print result

Java:

Map<String, Object> result = client.direct(Map.of(
    "path", "/api/resource/{id}",
    "method", "GET",
    "params", Map.of("id", "example")));

JavaScript:

const result = await client.direct({
  path: '/api/resource/{id}',
  method: 'GET',
  params: { id: 'example' },
})
if (result instanceof Error) {
  throw result
}
console.log(result.data)

Kotlin:

val result = client.direct(mutableMapOf<String, Any?>(
    "path" to "/api/resource/{id}",
    "method" to "GET",
    "params" to mapOf("id" to "example")))

OCaml:

let result = Sdk_client.direct client (jo [
    ("path", Str "/api/resource/{id}");
    ("method", Str "GET");
    ("params", jo [("id", Str "example")]);
]) in
ignore result

Perl:

my $result = $client->direct({
    'path' => '/api/resource/{id}',
    'method' => 'GET',
    'params' => { 'id' => 'example' },
});

Rust:

let result = client.direct(jo(vec![
    ("path", Value::str("/api/resource/{id}")),
    ("method", Value::str("GET")),
    ("params", jo(vec![("id", Value::str("example"))])),
]));

Scala:

val result = client.direct(java.util.Map.of(
    "path", "/api/resource/{id}",
    "method", "GET",
    "params", java.util.Map.of("id", "example")))

Swift:

let result = client.direct(VMap([
    ("path", .string("/api/resource/{id}")),
    ("method", .string("GET")),
    ("params", .map([("id", .string("example"))])),
]))

Zig:

const result = client.direct(h.jo(&.{
    .{ "path", h.vstr("/api/resource/{id}") },
    .{ "method", h.vstr("GET") },
    .{ "params", h.jo(&.{.{ "id", h.vstr("example") }}) },
}));

Advanced

Everyday use only needs the sections above. This explains the internals behind every call — relevant when writing custom features.

Every SDK call runs the same five-stage pipeline:

  1. Point — resolve the API endpoint from the operation definition.
  2. Spec — build the HTTP specification (URL, method, headers, body).
  3. Request — send the HTTP request.
  4. Response — receive and parse the response.
  5. Result — extract the result data for the caller.

A feature hook fires at each stage (e.g. PrePoint, PreSpec, PreRequest), so features can inspect or modify the pipeline without forking the SDK.

Features

FeaturePurpose
TestFeatureIn-memory mock transport for testing without a live server

Pass custom features via the extend option at construction time.

Per-language documentation

Upstream API

This SDK is generated from the upstream OpenAPI specification. It is an unofficial client and is not affiliated with the API provider.

Security

Please report security issues to security@voxgig.com. See SECURITY.md. Do not open public issues for suspected vulnerabilities.


Generated from the tecsclientrest OpenAPI spec by @voxgig/sdkgen.

Get the Voxgig dispatch

Short notes on building SDKs, CLIs, REPLs, and MCPs for API-first teams, plus the occasional Fireside episode pick.

By signing up you agree to our Terms and Conditions.