Make Contact TypeScript interfaces nullable rather than optional#706
Closed
max-programming wants to merge 39 commits into
Closed
Make Contact TypeScript interfaces nullable rather than optional#706max-programming wants to merge 39 commits into
max-programming wants to merge 39 commits into
Conversation
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Vitor Capretz <vitor@resend.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…d#651) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gabriel Miranda <gabrielmfern@outlook.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Carolina de Moraes Josephik <32900257+CarolinaMoraes@users.noreply.github.com> Co-authored-by: Carolina de Moraes Josephik <carolina.moraesjosephik@gmail.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> Co-authored-by: Lucas da Costa <lucas@lucasfcosta.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Vitor Capretz <vitor@resend.com> Co-authored-by: Gabriel Miranda <gabrielmfern@outlook.com> Co-authored-by: Vitor Capretz <capretzvitor@gmail.com> Co-authored-by: Cassio Zen <cassiozen@gmail.com> Co-authored-by: Bu Kinoshita <6929565+bukinoshita@users.noreply.github.com>
Co-authored-by: Lucas da Costa <lucas@lucasfcosta.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Vitor Capretz <vitor@resend.com> Co-authored-by: Gabriel Miranda <gabrielmfern@outlook.com> Co-authored-by: Ty Mick <5317080+TyMick@users.noreply.github.com> Co-authored-by: Isabella Aquino <isabella@resend.com> Co-authored-by: Alexandre Cisneiros <Cisneiros@users.noreply.github.com> Co-authored-by: Carolina de Moraes Josephik <32900257+CarolinaMoraes@users.noreply.github.com> Co-authored-by: Carolina de Moraes Josephik <carolina.moraesjosephik@gmail.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> Co-authored-by: Vitor Capretz <capretzvitor@gmail.com> Co-authored-by: Cassio Zen <cassiozen@gmail.com> Co-authored-by: Bu Kinoshita <6929565+bukinoshita@users.noreply.github.com> Co-authored-by: Zeno Rocha <zno.rocha@gmail.com>
commit: |
Member
|
closing in favor of #757 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes #646 by making fields of first name and last name from TS interfaces & types for
Contactnullable and removing optional (undefined) from themSummary by cubic
Switch Contact and UpdateContactOptions first_name/last_name from optional to nullable so these fields are always present and use null instead of undefined. Addresses Linear issue #646.