-
-
Notifications
You must be signed in to change notification settings - Fork 116
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
feat(schema): Add workspace invitation schema #612
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
@rajdip-b please review |
591921e
to
ccff888
Compare
894c5bf
to
9b5271b
Compare
@Souvik9205 could you please ping me over discord? Here's my ID: _the_heisenberg. |
User description
Description
Schema and relevant tests for Workspace's invitation lists
Fixes #552
PR Type
Enhancement, Tests
Description
Added schemas for
GetInvitationRequest
andGetInvitationResponse
.Defined types for the new schemas in
index.types.ts
.Implemented validation tests for the new schemas.
Enhanced workspace schema functionality with invitation-related features.
Changes walkthrough 📝
index.ts
Added schemas for workspace invitation handling
packages/schema/src/workspace/index.ts
GetInvitationRequestSchema
andGetInvitationResponseSchema
.WorkspaceInvitationDetailsSchema
for invitation details.index.types.ts
Defined types for new invitation schemas
packages/schema/src/workspace/index.types.ts
GetInvitationRequestSchema
andGetInvitationResponseSchema
.workspace.spec.ts
Added tests for workspace invitation schemas
packages/schema/tests/workspace.spec.ts
GetInvitationRequestSchema
.GetInvitationResponseSchema
.