| generateTypeScriptChannels | - |
| generateTypescriptParameters | - |
| generateTypescriptPayload | - |
| getDefaultConfiguration | Returns the default generator for the preset of the language |
| loadAndRealizeConfigFile | Load the configuration file and realize it with default options if necessary. |
| loadAsyncapi | - |
| loadAsyncapiFromMemory | - |
| loadConfigFile | Load configuration from file. |
| loadJsonSchema | Load JSON Schema document from file path or remote URL in context. |
| loadJsonSchemaFromMemory | Load JSON Schema document from memory. |
| loadOpenapiFromMemory | Load and normalize an OpenAPI document already held in memory (as a raw JSON/YAML string). Runs the exact same normalization as the local-file path of loadOpenapiDocument — dereference followed by reflectComponentSchemaNames — so in-memory callers (the platform's generateInMemory, preview, and the playground) produce byte-identical output to codegen generate on a file. |
| realizeConfiguration | Ensure that each generator has the default options along side custom properties |
| realizeGeneratorContext | Load configuration and input document to create generator context |
| realizeInMemoryGeneratorContext | In-memory counterpart of realizeGeneratorContext. Given a config object and the raw specification string, it produces a fully-loaded RunGeneratorContext using the same per-input loaders as the file flow — so callers that hold a spec in memory (the platform's generateInMemory, preview, the playground) generate identical output to codegen generate. This is the single seam for in-memory generation: parsing/normalization lives here, never in downstream consumers. |
| renderGenerator | - |
| run | - |
| runGenerators | Function that runs the given generator context ensuring the generators are rendered in the correct order. |