Filip Prochazka
Filip Prochazka
version fixed to `1.8.0`
Encountered the same issue as mentioned by @atefhaloui and the likely culprit is that the backend expects IDs returned from the instance to be Strings but they are integer https://github.com/Infisical/infisical/blob/635948c4f43f855e344ba0fcc0fb7b5c89ee70d4/backend/src/services/integration-auth/integration-team.ts#L25...
Actually now I see it - the integration-team puts it as `teamId` but the Zod schema as `id` - that's why its not included and no validation error so the...