Skip to content

Commit 947b05b

Browse files
authored
fix: v2 CI breaking changes check (#24445)
* fix: v2 CI breaking changes check * fix: ensure defaults * fix
1 parent a0e5e03 commit 947b05b

File tree

2 files changed

+306
-269
lines changed

2 files changed

+306
-269
lines changed

apps/api/v2/src/modules/teams/memberships/inputs/get-team-memberships.input.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import { GetUsersInput } from "@/modules/users/inputs/get-users.input";
21
import { ApiPropertyOptional } from "@nestjs/swagger";
32
import { Transform } from "class-transformer";
43
import { ArrayMaxSize, ArrayNotEmpty, IsEmail, IsOptional } from "class-validator";
54

6-
export class GetTeamMembershipsInput extends GetUsersInput {
5+
import { SkipTakePagination } from "@calcom/platform-types";
6+
7+
export class GetTeamMembershipsInput extends SkipTakePagination {
78
@IsOptional()
89
@Transform(({ value }) => {
910
if (value == null) return undefined;

0 commit comments

Comments
 (0)