@heymantle/core-api-client 0.1.1 → 0.1.2

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
@@ -252,9 +252,8 @@ interface CustomFieldUpdateParams extends Partial<Omit<CustomFieldCreateParams,
252
252
  * Social profile for a contact
253
253
  */
254
254
  interface SocialProfile {
255
- platform: string;
256
- url: string;
257
- username?: string;
255
+ key: string;
256
+ value: string;
258
257
  }
259
258
  /**
260
259
  * Contact entity
package/dist/index.d.ts CHANGED
@@ -252,9 +252,8 @@ interface CustomFieldUpdateParams extends Partial<Omit<CustomFieldCreateParams,
252
252
  * Social profile for a contact
253
253
  */
254
254
  interface SocialProfile {
255
- platform: string;
256
- url: string;
257
- username?: string;
255
+ key: string;
256
+ value: string;
258
257
  }
259
258
  /**
260
259
  * Contact entity
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heymantle/core-api-client",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "TypeScript SDK for the Mantle Core API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",