@heymantle/core-api-client 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -354,6 +354,7 @@ interface Contact {
|
|
|
354
354
|
id: string;
|
|
355
355
|
name?: string;
|
|
356
356
|
email?: string;
|
|
357
|
+
secondaryEmails?: string[];
|
|
357
358
|
phone?: string;
|
|
358
359
|
jobTitle?: string;
|
|
359
360
|
notes?: string;
|
|
@@ -388,6 +389,7 @@ interface ContactListResponse extends PaginatedResponse {
|
|
|
388
389
|
interface ContactCreateParams {
|
|
389
390
|
name?: string;
|
|
390
391
|
email?: string;
|
|
392
|
+
secondaryEmails?: string[];
|
|
391
393
|
phone?: string;
|
|
392
394
|
jobTitle?: string;
|
|
393
395
|
notes?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -354,6 +354,7 @@ interface Contact {
|
|
|
354
354
|
id: string;
|
|
355
355
|
name?: string;
|
|
356
356
|
email?: string;
|
|
357
|
+
secondaryEmails?: string[];
|
|
357
358
|
phone?: string;
|
|
358
359
|
jobTitle?: string;
|
|
359
360
|
notes?: string;
|
|
@@ -388,6 +389,7 @@ interface ContactListResponse extends PaginatedResponse {
|
|
|
388
389
|
interface ContactCreateParams {
|
|
389
390
|
name?: string;
|
|
390
391
|
email?: string;
|
|
392
|
+
secondaryEmails?: string[];
|
|
391
393
|
phone?: string;
|
|
392
394
|
jobTitle?: string;
|
|
393
395
|
notes?: string;
|