@heymantle/core-api-client 0.1.7 → 0.1.8

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
@@ -362,6 +362,7 @@ interface Contact {
362
362
  customers?: Array<{
363
363
  id: string;
364
364
  name?: string;
365
+ label?: string;
365
366
  }>;
366
367
  createdAt: string;
367
368
  updatedAt: string;
@@ -393,7 +394,7 @@ interface ContactCreateParams {
393
394
  tags?: string[];
394
395
  customers?: string[] | Array<{
395
396
  id: string;
396
- name?: string;
397
+ label?: string;
397
398
  }>;
398
399
  socialProfiles?: SocialProfile[];
399
400
  }
package/dist/index.d.ts CHANGED
@@ -362,6 +362,7 @@ interface Contact {
362
362
  customers?: Array<{
363
363
  id: string;
364
364
  name?: string;
365
+ label?: string;
365
366
  }>;
366
367
  createdAt: string;
367
368
  updatedAt: string;
@@ -393,7 +394,7 @@ interface ContactCreateParams {
393
394
  tags?: string[];
394
395
  customers?: string[] | Array<{
395
396
  id: string;
396
- name?: string;
397
+ label?: string;
397
398
  }>;
398
399
  socialProfiles?: SocialProfile[];
399
400
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heymantle/core-api-client",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "TypeScript SDK for the Mantle Core API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",