@masters-union/outbound-sdk 0.4.8 → 0.4.9
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 +10 -2
- package/dist/index.d.ts +10 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1027,8 +1027,16 @@ interface ContactListFieldsResponse {
|
|
|
1027
1027
|
name: string;
|
|
1028
1028
|
sample: string | null;
|
|
1029
1029
|
}>;
|
|
1030
|
-
/**
|
|
1031
|
-
|
|
1030
|
+
/**
|
|
1031
|
+
* Mappable alongside `fields`, but stored on the contact rather than in its
|
|
1032
|
+
* attributes. Carries a sample for the same reason `fields` does: a mapping UI
|
|
1033
|
+
* that shows a column name with no example value gives the user nothing to
|
|
1034
|
+
* judge it by.
|
|
1035
|
+
*/
|
|
1036
|
+
reservedFields: Array<{
|
|
1037
|
+
name: string;
|
|
1038
|
+
sample: string | null;
|
|
1039
|
+
}>;
|
|
1032
1040
|
}
|
|
1033
1041
|
interface RecountContactListResponse {
|
|
1034
1042
|
contactCount: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1027,8 +1027,16 @@ interface ContactListFieldsResponse {
|
|
|
1027
1027
|
name: string;
|
|
1028
1028
|
sample: string | null;
|
|
1029
1029
|
}>;
|
|
1030
|
-
/**
|
|
1031
|
-
|
|
1030
|
+
/**
|
|
1031
|
+
* Mappable alongside `fields`, but stored on the contact rather than in its
|
|
1032
|
+
* attributes. Carries a sample for the same reason `fields` does: a mapping UI
|
|
1033
|
+
* that shows a column name with no example value gives the user nothing to
|
|
1034
|
+
* judge it by.
|
|
1035
|
+
*/
|
|
1036
|
+
reservedFields: Array<{
|
|
1037
|
+
name: string;
|
|
1038
|
+
sample: string | null;
|
|
1039
|
+
}>;
|
|
1032
1040
|
}
|
|
1033
1041
|
interface RecountContactListResponse {
|
|
1034
1042
|
contactCount: number;
|