3.43.4

(fix): Fix export of inline enum const values from request types. Previously, request types with inline enums (defined directly in OpenAPI schemas) were exported using export type { ... } which only exports the type, not the runtime const values. SDK consumers couldn’t access enum values like ConvertRequest.Resource.Auto at runtime. Now request types are exported using export { ... } which exports both the type and the const.