Skip to content

Commit

Permalink
Replace ObjectRecord<MessageChannelWorkspaceEntity> with MessageChann…
Browse files Browse the repository at this point in the history
…elWorkspaceEntity (#6059)

Replace ObjectRecord<MessageChannelWorkspaceEntity> with
MessageChannelWorkspaceEntity
  • Loading branch information
bosiraphael authored Jun 27, 2024
1 parent 46f0840 commit 845fcb6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class MessagingErrorHandlingService {
private async handleFailedPrecondition(
error: GmailError,
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
await this.messagingTelemetryService.track({
Expand Down Expand Up @@ -243,7 +243,7 @@ export class MessagingErrorHandlingService {

private async handleThrottle(
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
if (
Expand Down Expand Up @@ -307,7 +307,7 @@ export class MessagingErrorHandlingService {
private async handleUnknownError(
error: GmailError,
syncStep: SyncStep,
messageChannel: ObjectRecord<MessageChannelWorkspaceEntity>,
messageChannel: MessageChannelWorkspaceEntity,
workspaceId: string,
): Promise<void> {
await this.messagingTelemetryService.track({
Expand Down

0 comments on commit 845fcb6

Please sign in to comment.