@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 +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
397
|
+
label?: string;
|
|
397
398
|
}>;
|
|
398
399
|
socialProfiles?: SocialProfile[];
|
|
399
400
|
}
|