Skip to content

Commit

Permalink
Fix 'NylasBaseResponse'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrashed-dev committed Dec 22, 2023
1 parent 3f54336 commit 391449b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/contacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import {
NylasResponse,
NylasListResponse,
NylasDeleteResponse,
NylasBaseResponse,
} from '../models/response.js';
import { AsyncListResponse, Resource } from './resource.js';

Expand Down Expand Up @@ -152,7 +152,7 @@ export class Contacts extends Resource {
identifier,
contactId,
overrides,
}: DestroyContactParams & Overrides): Promise<NylasDeleteResponse> {
}: DestroyContactParams & Overrides): Promise<NylasBaseResponse> {
return super._destroy({
path: `/v3/grants/${identifier}/contacts/${contactId}`,
overrides,
Expand Down

0 comments on commit 391449b

Please sign in to comment.