@equisoft/equisoft-connect-sdk-typescript 13.38.1-snapshot.20251118234338 → 13.39.0
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.
|
@@ -22,6 +22,13 @@ export interface ContactsSegmentation {
|
|
|
22
22
|
* @memberof ContactsSegmentation
|
|
23
23
|
*/
|
|
24
24
|
classes: Array<ContactsContactFieldValue>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<ContactsContactFieldValue>}
|
|
28
|
+
* @memberof ContactsSegmentation
|
|
29
|
+
* @deprecated
|
|
30
|
+
*/
|
|
31
|
+
categories?: Array<ContactsContactFieldValue>;
|
|
25
32
|
/**
|
|
26
33
|
*
|
|
27
34
|
* @type {Array<ContactsContactFieldValue>}
|
|
@@ -37,6 +37,7 @@ export function ContactsSegmentationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
}
|
|
38
38
|
return {
|
|
39
39
|
'classes': (json['classes'].map(ContactsContactFieldValueFromJSON)),
|
|
40
|
+
'categories': json['categories'] == null ? undefined : (json['categories'].map(ContactsContactFieldValueFromJSON)),
|
|
40
41
|
'distributionLists': (json['distributionLists'].map(ContactsContactFieldValueFromJSON)),
|
|
41
42
|
'hobbies': (json['hobbies'].map(ContactsContactFieldValueFromJSON)),
|
|
42
43
|
'referredBy': (json['referredBy'].map(ContactsContactFieldValueFromJSON)),
|
|
@@ -61,6 +62,7 @@ export function ContactsSegmentationToJSONTyped(value, ignoreDiscriminator = fal
|
|
|
61
62
|
}
|
|
62
63
|
return {
|
|
63
64
|
'classes': (value['classes'].map(ContactsContactFieldValueToJSON)),
|
|
65
|
+
'categories': value['categories'] == null ? undefined : (value['categories'].map(ContactsContactFieldValueToJSON)),
|
|
64
66
|
'distributionLists': (value['distributionLists'].map(ContactsContactFieldValueToJSON)),
|
|
65
67
|
'hobbies': (value['hobbies'].map(ContactsContactFieldValueToJSON)),
|
|
66
68
|
'referredBy': (value['referredBy'].map(ContactsContactFieldValueToJSON)),
|
|
@@ -22,6 +22,13 @@ export interface ContactsSegmentation {
|
|
|
22
22
|
* @memberof ContactsSegmentation
|
|
23
23
|
*/
|
|
24
24
|
classes: Array<ContactsContactFieldValue>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<ContactsContactFieldValue>}
|
|
28
|
+
* @memberof ContactsSegmentation
|
|
29
|
+
* @deprecated
|
|
30
|
+
*/
|
|
31
|
+
categories?: Array<ContactsContactFieldValue>;
|
|
25
32
|
/**
|
|
26
33
|
*
|
|
27
34
|
* @type {Array<ContactsContactFieldValue>}
|
|
@@ -44,6 +44,7 @@ function ContactsSegmentationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
}
|
|
45
45
|
return {
|
|
46
46
|
'classes': (json['classes'].map(ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)),
|
|
47
|
+
'categories': json['categories'] == null ? undefined : (json['categories'].map(ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)),
|
|
47
48
|
'distributionLists': (json['distributionLists'].map(ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)),
|
|
48
49
|
'hobbies': (json['hobbies'].map(ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)),
|
|
49
50
|
'referredBy': (json['referredBy'].map(ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)),
|
|
@@ -68,6 +69,7 @@ function ContactsSegmentationToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
68
69
|
}
|
|
69
70
|
return {
|
|
70
71
|
'classes': (value['classes'].map(ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)),
|
|
72
|
+
'categories': value['categories'] == null ? undefined : (value['categories'].map(ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)),
|
|
71
73
|
'distributionLists': (value['distributionLists'].map(ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)),
|
|
72
74
|
'hobbies': (value['hobbies'].map(ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)),
|
|
73
75
|
'referredBy': (value['referredBy'].map(ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)),
|
package/package.json
CHANGED
|
@@ -33,6 +33,13 @@ export interface ContactsSegmentation {
|
|
|
33
33
|
* @memberof ContactsSegmentation
|
|
34
34
|
*/
|
|
35
35
|
classes: Array<ContactsContactFieldValue>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<ContactsContactFieldValue>}
|
|
39
|
+
* @memberof ContactsSegmentation
|
|
40
|
+
* @deprecated
|
|
41
|
+
*/
|
|
42
|
+
categories?: Array<ContactsContactFieldValue>;
|
|
36
43
|
/**
|
|
37
44
|
*
|
|
38
45
|
* @type {Array<ContactsContactFieldValue>}
|
|
@@ -136,6 +143,7 @@ export function ContactsSegmentationFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
136
143
|
return {
|
|
137
144
|
|
|
138
145
|
'classes': ((json['classes'] as Array<any>).map(ContactsContactFieldValueFromJSON)),
|
|
146
|
+
'categories': json['categories'] == null ? undefined : ((json['categories'] as Array<any>).map(ContactsContactFieldValueFromJSON)),
|
|
139
147
|
'distributionLists': ((json['distributionLists'] as Array<any>).map(ContactsContactFieldValueFromJSON)),
|
|
140
148
|
'hobbies': ((json['hobbies'] as Array<any>).map(ContactsContactFieldValueFromJSON)),
|
|
141
149
|
'referredBy': ((json['referredBy'] as Array<any>).map(ContactsContactFieldValueFromJSON)),
|
|
@@ -164,6 +172,7 @@ export function ContactsSegmentationToJSONTyped(value?: ContactsSegmentation | n
|
|
|
164
172
|
return {
|
|
165
173
|
|
|
166
174
|
'classes': ((value['classes'] as Array<any>).map(ContactsContactFieldValueToJSON)),
|
|
175
|
+
'categories': value['categories'] == null ? undefined : ((value['categories'] as Array<any>).map(ContactsContactFieldValueToJSON)),
|
|
167
176
|
'distributionLists': ((value['distributionLists'] as Array<any>).map(ContactsContactFieldValueToJSON)),
|
|
168
177
|
'hobbies': ((value['hobbies'] as Array<any>).map(ContactsContactFieldValueToJSON)),
|
|
169
178
|
'referredBy': ((value['referredBy'] as Array<any>).map(ContactsContactFieldValueToJSON)),
|