[10-Nov-2025]
This release adds a
namespace option to the configuration for Swift, allowing users to wrap generated Snowtype classes in a Swift namespace to avoid naming conflicts. For example, the following configuration:{
"language": "swift",
"tracker": "snowplow-ios-tracker",
"outpath": "./generated",
"namespace": "Snowtype",
...
}Will result in classes being accessed through the
Snowtype namespacelet data = Snowtype.AccountConfirmed(companyCountry: "", companyName: "", ...)