-
Notifications
You must be signed in to change notification settings - Fork 524
chore: Add unthreadCustomerId to TeamResponse #6837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🦋 Changeset detectedLatest commit: d95b3d3 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6837 +/- ##
==========================================
+ Coverage 55.23% 55.30% +0.06%
==========================================
Files 896 896
Lines 57020 57023 +3
Branches 3955 3968 +13
==========================================
+ Hits 31497 31536 +39
+ Misses 25427 25390 -37
- Partials 96 97 +1
🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but has to also be added to stories mocks. (Check failing vercel build for details.)
size-limit report 📦
|
Merge activity
|
<!-- start pr-codex --> ## PR-Codex overview This PR focuses on adding a new property, `unthreadCustomerId`, to the `TeamResponse` structure across various files, enhancing the data model for teams in the application. ### Detailed summary - Added `unthreadCustomerId: null` to the `TeamResponse` in `apps/dashboard/src/stories/stubs.ts`. - Updated `validTeamAndProjectResponse` to include `unthreadCustomerId` in `packages/service-utils/src/mocks.ts`. - Defined `unthreadCustomerId: string | null` in the `TeamResponse` interface in `packages/service-utils/src/core/api.ts`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
5df6218
to
d95b3d3
Compare
PR-Codex overview
This PR focuses on adding the
unthreadCustomerId
property to theTeamResponse
interface and related mock data structures across the codebase.Detailed summary
unthreadCustomerId: null
to the mock data inapps/dashboard/src/stories/stubs.ts
.validTeamAndProjectResponse
inpackages/service-utils/src/mocks.ts
to includeunthreadCustomerId
.unthreadCustomerId: string | null
in theTeamResponse
interface inpackages/service-utils/src/core/api.ts
.