@masters-union/outbound-sdk 0.4.7 → 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 CHANGED
@@ -1027,8 +1027,16 @@ interface ContactListFieldsResponse {
1027
1027
  name: string;
1028
1028
  sample: string | null;
1029
1029
  }>;
1030
- /** Mappable alongside `fields`, but not attributes. */
1031
- reservedFields: string[];
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
- /** Mappable alongside `fields`, but not attributes. */
1031
- reservedFields: string[];
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masters-union/outbound-sdk",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
4
4
  "description": "Official Node.js SDK for the Outbound Email SaaS platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",