@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heymantle/core-api-client",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "TypeScript SDK for the Mantle Core API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",