Skip to content

Commit

Permalink
fix(types): change lead external_id type to string
Browse files Browse the repository at this point in the history
  • Loading branch information
belyaev-dev authored Aug 9, 2024
1 parent 08f6966 commit fc24293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/lead/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export type RequestAddLead =
companies?: Partial<Company>[];
metadata?: Partial<UnsrotedMetadataForm> | Partial<UnsrotedMetadataSip>;
source?: {
external_id?: number;
external_id?: string;
type?: string;
};
};
Expand Down Expand Up @@ -118,7 +118,7 @@ export type RequestAddComplex =
companies?: Partial<Company>[];
metadata?: Partial<UnsrotedMetadataForm> | Partial<UnsrotedMetadataSip>;
source?: {
external_id?: number;
external_id?: string;
type?: string;
};
};
Expand Down

0 comments on commit fc24293

Please sign in to comment.