@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 +2 -3
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
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
|
-
|
|
256
|
-
|
|
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
|
-
|
|
256
|
-
|
|
257
|
-
username?: string;
|
|
255
|
+
key: string;
|
|
256
|
+
value: string;
|
|
258
257
|
}
|
|
259
258
|
/**
|
|
260
259
|
* Contact entity
|