Skip to content

Commit

Permalink
fix: removing unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 committed Dec 3, 2024
1 parent 2337c7b commit 9eb31bf
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/v1/destinations/iterable/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ interface FailedUpdates {
}

export interface CommonResponse {
msg?: string; // Optional since it's only in Response 1
code?: string; // Optional since it's only in Response 1
params?: Record<string, unknown>; // Optional, specific to Response 1
successCount?: number; // Shared by Response 2 and 3
failCount?: number; // Shared by Response 2 and 3
invalidEmails?: string[]; // Shared by Response 2 and 3
invalidUserIds?: string[]; // Shared by Response 2 and 3
filteredOutFields?: string[]; // Shared by Response 2 and 3
createdFields?: string[]; // Shared by Response 2 and 3
disallowedEventNames?: string[]; // Specific to Response 3
failedUpdates?: FailedUpdates; // Nested object for failed updates
msg?: string;
code?: string;
params?: Record<string, unknown>;
successCount?: number;
failCount?: number;
invalidEmails?: string[];
invalidUserIds?: string[];
filteredOutFields?: string[];
createdFields?: string[];
disallowedEventNames?: string[];
failedUpdates?: FailedUpdates;
}

0 comments on commit 9eb31bf

Please sign in to comment.