Select spec version:

RudderTyper v2 Command Reference Beta

Complete RudderTyper v2 command reference for generating type-safe client bindings via Rudder CLI.
Available Plans
  • free
  • growth
  • enterprise

This page serves as a detailed reference for the RudderTyper v2 CLI commands available through Rudder CLI.

Overview

RudderTyper v2 is integrated into Rudder CLI and provides the following commands to generate type-safe client bindings from your Tracking Plans:

CommandUse case
workspace tracking-plans listList all Tracking Plans in your workspace
typer generateGenerate type-safe client bindings from a Tracking Plan
typer optionsView available platform-specific options for customizing generated code

List Tracking Plans

The workspace tracking-plans list command displays an interactive table with all available Tracking Plans in your workspace.

Command syntax

bash
rudder-cli workspace tracking-plans list

Description

This command displays an interactive interface showing all Tracking Plans in your workspace.

Selecting a Tracking Plan from the list shows its details in a panel on the right, including the plan’s name, description, and current version, as shown:

List of Tracking Plans in your workspace

Generate bindings

The typer generate command generates type-safe bindings for a specified platform from a Tracking Plan.

Command syntax

bash
rudder-cli typer generate --platform=<PLATFORM> --tracking-plan-id=<TRACKING_PLAN_ID> [options]

Parameters

ParameterType
Description
--platform
Required
StringSpecifies the platform for code generation. Supported values: typescript, kotlin, swift.
--tracking-plan-id
Required
StringSpecifies the ID of the Tracking Plan to generate bindings from. You can obtain this ID using the List Tracking Plans command or from your RudderStack dashboard URL: https://app.rudderstack.com/trackingPlans/<ID>.
-o, --outputStringSpecifies the output directory for storing generated files. If omitted, defaults to the current working directory.
--optionStringSpecifies platform-specific options to customize the generated code. Accepts key/value pairs separated by =. You can specify multiple options by repeating the flag — see Platform options for available options.
-h, --helpFlagDisplays help information for the command.

Examples

  • Generate TypeScript bindings with default settings:
bash
rudder-cli typer generate --platform=typescript --tracking-plan-id=tp_1234567890abcdef
  • Generate Kotlin bindings with default settings:
bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef
  • Generate Swift bindings with default settings:
bash
rudder-cli typer generate --platform=swift --tracking-plan-id=tp_1234567890abcdef
  • Generate bindings to a specific output directory:
bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef -o ./generated-code
  • Generate Kotlin bindings with a custom package name:
bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef --option packageName=com.example.package

View platform options

The typer options command displays available platform-specific options for customizing generated code.

Command syntax

bash
rudder-cli typer options --platform=<platform>

Parameters

ParameterTypeDescription
--platform
Required
StringSpecifies the platform to view options for. Supported values: typescript, kotlin, swift.
-h, --helpFlagDisplays help information for the command.

Description

This command displays an interactive interface showing all available options for the specified platform, along with their descriptions and usage examples.

Rudder CLI Kotlin platform options

Example

bash
rudder-cli typer options --platform=kotlin

Platform options

Platform-specific options customize how code is generated for each platform. Pass these options to the typer generate command using the --option flag with a key/value pair format: --option key=value.

TypeScript platform options

OptionTypeDefaultDescriptionExample
outputFileNameStringRudderTyper.tsName of the generated TypeScript file.--option outputFileName=Events.ts

Examples

Generate TypeScript bindings with a custom output file name:

bash
rudder-cli typer generate --platform=typescript --tracking-plan-id=tp_1234567890abcdef --option outputFileName=Events.ts

Kotlin platform options

OptionTypeDefaultDescriptionExample
packageNameStringcom.rudderstack.ruddertyperPackage name for the generated Kotlin code. See Package name rules for more information.--option packageName=com.example.package
outputFileNameStringMain.ktName of the generated Kotlin file.--option outputFileName=MyEvents.kt
composeImmutableBooleanfalseAnnotates every generated data class with @androidx.compose.runtime.Immutable and adds the corresponding import. Useful if you use the generated types directly in Jetpack Compose UI trees — the annotation lets the Compose compiler skip recomposition when instances are structurally equal.--option composeImmutable=true
Enabling composeImmutable causes the generated file to import androidx.compose.runtime.Immutable. Your module must have androidx.compose.runtime on its classpath, otherwise the file won’t compile. Any module that already uses Jetpack Compose has this dependency. If you enable this flag in a non-Compose module, the build fails with an unresolved reference.

Package name rules

The package name:

  • Must be in lower case (regex: ^[a-z][a-z0-9_]*(\.[a-z][a-z0-9_]*)*$)
  • Can contain lower case letters, digits, and underscores
  • Segments must be separated by dots — each segment must start with a letter
  • Cannot start or end with a dot
  • Cannot have consecutive dots

Examples

Generate Kotlin bindings with a custom package name:

bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef --option packageName=com.example.package

Generate Kotlin bindings with a custom output file name:

bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef --option outputFileName=MyEvents.kt

Generate Kotlin bindings with Compose @Immutable annotations:

bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef --option composeImmutable=true

Combine multiple options:

bash
rudder-cli typer generate --platform=kotlin --tracking-plan-id=tp_1234567890abcdef --option packageName=com.example.analytics --option outputFileName=Analytics.kt --option composeImmutable=true

Swift platform options

The Swift platform does not currently expose any platform-specific options.

Supported platforms

PlatformLanguageUse case
typescriptTypeScriptWeb applications using the JavaScript SDK
kotlinKotlinAndroid and JVM applications
swiftSwiftiOS applications

Generated code structure

The generated code structure depends on the platform and options specified.

TypeScript

TypeScript bindings are generated as a single RudderTyper.ts file. The file is organized into the following sections:

RudderTyper.ts
├── Property Enums      (union type aliases for enum-constrained properties)
├── Custom Types        (type aliases and interfaces for custom types)
├── Variant Types       (discriminated unions for multi-type rules)
├── Nested Object Types (interfaces for nested object properties)
├── Event Types         (interfaces for event properties and traits)
└── RudderTyper         (wrapper class with type-safe event methods)

The generated file imports its types from @rudderstack/analytics-js.

Kotlin

By default, Kotlin bindings are generated with the package name com.rudderstack.ruddertyper. The generated files should be placed in a directory structure that matches the package name:

src/main/kotlin/com/rudderstack/ruddertyper/

Custom package structure

If you specify a custom packageName option, place the generated files in a directory structure that matches your custom package name. For example, with packageName=com.example.package:

src/main/kotlin/com/example/package/

Swift

Swift bindings are generated as a single RudderTyper.swift file. The file is organized into the following sections:

RudderTyper.swift
├── Custom Types        (type aliases and structs for custom types)
├── Property Types      (type aliases for property types)
├── Event Properties    (structs for event properties and traits)
└── RudderTyperAnalytics (wrapper class with type-safe event methods)

The generated file imports Foundation and RudderStackAnalytics.

Using generated code

After generating the code, import it into your project and use the type-safe methods for tracking.

typescript
import { RudderTyper } from "./RudderTyper";

const typer = new RudderTyper(analytics);

typer.trackUserLogin({
  // ... properties defined in your Tracking Plan
})

The generated code provides:

  • Type-safe event methods: Each event in your Tracking Plan becomes a method
  • Required parameters: Required properties are enforced at compile time
  • Property validation: Property types match your Tracking Plan schema

See the RudderTyper v2 Walkthrough Guide for a complete setup example including SDK initialization.

Type mappings

RudderTyper maps YAML types from your Tracking Plan definitions to native types for each platform.

YAML typeTypeScript type
stringstring
integernumber
numbernumber
booleanboolean
arrayunknown[] or T[]
objectRecord<string, unknown>
nullnull

Properties that support multiple types are represented as a union type in TypeScript (for example, string | number), a sealed class in Kotlin, or an enum with associated values in Swift. For Kotlin and Swift, each type variant is represented as a distinct case, and a value property provides access to the underlying value.

Naming conventions

RudderTyper applies consistent naming conventions when generating code from your Tracking Plan definitions. The mobile platforms (Kotlin and Swift) share the same conventions, while TypeScript differs in a few places (noted below).

Event methods

Event typeKotlin / SwiftTypeScriptExample
tracktrack{EventName}track{EventName}trackUserSignedUp
identifyidentifyidentifyidentify
screen (mobile) / page (web)screen{EventName}pagescreenProductViewed (Kotlin/Swift), page (TypeScript)
groupgroupgroupgroup
TypeScript targets the web-based JavaScript SDK, so it exposes a page method instead of screen.

Properties and traits types

Event typeKotlin / Swift structTypeScript typeExample (TypeScript)
trackTrack{EventName}Properties{EventName} interfaceUserSignedUp
identifyIdentify{EventName}TraitsIdentifyTraits interfaceIdentifyTraits
screen / pageScreen{EventName}PropertiesPageProperties interfacePageProperties
groupGroup{EventName}TraitsGroupTraits interfaceGroupTraits

Type name prefixes

SourcePrefixExample
PropertyPropertyPropertySomeString
Custom typeCustomTypeCustomTypeSomeStringType

Event names are converted to CamelCase for method and type names, with the original event name preserved in the underlying SDK call.

Property names

Property names follow the same principle as event names. The generated identifier is idiomatic for the language, while the key sent to RudderStack is your Tracking Plan’s property name, unchanged.

PlatformGenerated identifierKey on the wire
TypeScriptcamelCaseTracking Plan property name
KotlincamelCaseTracking Plan property name
SwiftcamelCaseTracking Plan property name

For a Tracking Plan that defines product_id and first_name, the generated TypeScript interface uses camelCase fields:

typescript
export interface OrderCompleted {
  productId: string;
  profile: CustomTypeUserProfile;
}

You write camelCase at the call site:

typescript
typer.trackOrderCompleted({
  productId: "sku-1024",
  profile: { firstName: "Ada" },
});

And the event that reaches RudderStack uses your Tracking Plan’s names:

json
{
  "event": "Order Completed",
  "properties": {
    "product_id": "sku-1024",
    "profile": { "first_name": "Ada" }
  }
}

This holds at every level of the payload, including nested objects, arrays of objects, and properties typed as a custom type with variants.

The keys on the wire always match your Tracking Plan. Your events validate against the plan, your warehouse column names stay stable, and identity stitching keys behave as defined. You never need to rename keys yourself before calling the SDK.

RudderTyper first normalizes property names that aren’t valid identifiers in the target language:

  • Separators such as dashes and spaces become word boundaries, so it emits user-id and first name as userId and firstName.
  • If a name is still not a valid identifier after normalization, for example 用户名, RudderTyper preserves it verbatim and emits it as a quoted field.

In both cases, the key sent to RudderStack is your Tracking Plan’s property name, unchanged.

Supported event types

RudderTyper generates type-safe methods for the following event types:

Event typeMethod signatureNotes
tracktrack{EventName}(properties:options:)Properties type with typed fields
identifyidentify(userId:traits:options:)Traits type with typed fields
screen / pagescreen{EventName}(properties:category:options:)Properties type with typed fields; category is optional. On TypeScript (web), this is exposed as page
groupgroup(groupId:traits:options:)Traits type with typed fields

Every generated method includes an optional options parameter that lets you pass additional configuration (such as integration overrides) to the underlying SDK call. RudderTyper automatically injects a ruddertyper context object into every call for attribution.

See more

Questions? Let's figure it out together.

Join the RudderStack Slack community to connect with other users, customers, and the RudderStack team — or reach out for direct support.