Hey :wave: I think I faced with a possible issue, the source type generated by the `swagger-typescript-api` [package](https://github.com/acacode/swagger-typescript-api). ### Steps to reproduce - Have a type with a nullable field: Failing Example: ``` ts export interface ExampleKey { /** @format int64 */ activeUntil: number | null; allowExportDashboard: boolean; email: string; firstName?: string; isValid: boolean; lastName?: string; } ``` If the `... | null` removed, the mock will be created as expected. ### Errors: [Online interface](https://google.github.io/intermock/) will throw the following error: `m[a] is not a function` CLI will throw the following error: `Unsupported Primitive type 173` Is it something expected or it is a bug?
Hey 👋
I think I faced with a possible issue, the source type generated by the
swagger-typescript-apipackage.Steps to reproduce
Failing Example:
If the
... | nullremoved, the mock will be created as expected.Errors:
Online interface will throw the following error:
m[a] is not a functionCLI will throw the following error:
Unsupported Primitive type 173Is it something expected or it is a bug?