@equisoft/equisoft-connect-sdk-typescript 13.50.1-snapshot.20260521160103 → 13.51.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.
- package/dist/esm/models/LegacyContactGetListOptions.d.ts +0 -6
- package/dist/esm/models/LegacyContactGetListOptions.js +0 -2
- package/dist/models/LegacyContactGetListOptions.d.ts +0 -6
- package/dist/models/LegacyContactGetListOptions.js +0 -2
- package/docs/LegacyContactGetListOptions.md +0 -2
- package/package.json +1 -1
- package/src/models/LegacyContactGetListOptions.ts +0 -8
|
@@ -137,12 +137,6 @@ export interface LegacyContactGetListOptions {
|
|
|
137
137
|
* @memberof LegacyContactGetListOptions
|
|
138
138
|
*/
|
|
139
139
|
anniversaryRange?: LegacyDateRange;
|
|
140
|
-
/**
|
|
141
|
-
* Exclude contacts linked to Equisoft/plan. Default: false.
|
|
142
|
-
* @type {boolean}
|
|
143
|
-
* @memberof LegacyContactGetListOptions
|
|
144
|
-
*/
|
|
145
|
-
excludeFNA?: boolean;
|
|
146
140
|
/**
|
|
147
141
|
*
|
|
148
142
|
* @type {LegacyContactOptionGetListSearch}
|
|
@@ -71,7 +71,6 @@ export function LegacyContactGetListOptionsFromJSONTyped(json, ignoreDiscriminat
|
|
|
71
71
|
'excludeDeceased': json['exclude_deceased'] == null ? undefined : json['exclude_deceased'],
|
|
72
72
|
'anniversary': json['anniversary'] == null ? undefined : json['anniversary'],
|
|
73
73
|
'anniversaryRange': json['anniversaryRange'] == null ? undefined : LegacyDateRangeFromJSON(json['anniversaryRange']),
|
|
74
|
-
'excludeFNA': json['excludeFNA'] == null ? undefined : json['excludeFNA'],
|
|
75
74
|
'search': json['search'] == null ? undefined : LegacyContactOptionGetListSearchFromJSON(json['search']),
|
|
76
75
|
};
|
|
77
76
|
}
|
|
@@ -103,7 +102,6 @@ export function LegacyContactGetListOptionsToJSONTyped(value, ignoreDiscriminato
|
|
|
103
102
|
'exclude_deceased': value['excludeDeceased'],
|
|
104
103
|
'anniversary': value['anniversary'],
|
|
105
104
|
'anniversaryRange': LegacyDateRangeToJSON(value['anniversaryRange']),
|
|
106
|
-
'excludeFNA': value['excludeFNA'],
|
|
107
105
|
'search': LegacyContactOptionGetListSearchToJSON(value['search']),
|
|
108
106
|
};
|
|
109
107
|
}
|
|
@@ -137,12 +137,6 @@ export interface LegacyContactGetListOptions {
|
|
|
137
137
|
* @memberof LegacyContactGetListOptions
|
|
138
138
|
*/
|
|
139
139
|
anniversaryRange?: LegacyDateRange;
|
|
140
|
-
/**
|
|
141
|
-
* Exclude contacts linked to Equisoft/plan. Default: false.
|
|
142
|
-
* @type {boolean}
|
|
143
|
-
* @memberof LegacyContactGetListOptions
|
|
144
|
-
*/
|
|
145
|
-
excludeFNA?: boolean;
|
|
146
140
|
/**
|
|
147
141
|
*
|
|
148
142
|
* @type {LegacyContactOptionGetListSearch}
|
|
@@ -79,7 +79,6 @@ function LegacyContactGetListOptionsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
79
79
|
'excludeDeceased': json['exclude_deceased'] == null ? undefined : json['exclude_deceased'],
|
|
80
80
|
'anniversary': json['anniversary'] == null ? undefined : json['anniversary'],
|
|
81
81
|
'anniversaryRange': json['anniversaryRange'] == null ? undefined : (0, LegacyDateRange_1.LegacyDateRangeFromJSON)(json['anniversaryRange']),
|
|
82
|
-
'excludeFNA': json['excludeFNA'] == null ? undefined : json['excludeFNA'],
|
|
83
82
|
'search': json['search'] == null ? undefined : (0, LegacyContactOptionGetListSearch_1.LegacyContactOptionGetListSearchFromJSON)(json['search']),
|
|
84
83
|
};
|
|
85
84
|
}
|
|
@@ -111,7 +110,6 @@ function LegacyContactGetListOptionsToJSONTyped(value, ignoreDiscriminator = fal
|
|
|
111
110
|
'exclude_deceased': value['excludeDeceased'],
|
|
112
111
|
'anniversary': value['anniversary'],
|
|
113
112
|
'anniversaryRange': (0, LegacyDateRange_1.LegacyDateRangeToJSON)(value['anniversaryRange']),
|
|
114
|
-
'excludeFNA': value['excludeFNA'],
|
|
115
113
|
'search': (0, LegacyContactOptionGetListSearch_1.LegacyContactOptionGetListSearchToJSON)(value['search']),
|
|
116
114
|
};
|
|
117
115
|
}
|
|
@@ -26,7 +26,6 @@ Name | Type
|
|
|
26
26
|
`excludeDeceased` | boolean
|
|
27
27
|
`anniversary` | boolean
|
|
28
28
|
`anniversaryRange` | [LegacyDateRange](LegacyDateRange.md)
|
|
29
|
-
`excludeFNA` | boolean
|
|
30
29
|
`search` | [LegacyContactOptionGetListSearch](LegacyContactOptionGetListSearch.md)
|
|
31
30
|
|
|
32
31
|
## Example
|
|
@@ -56,7 +55,6 @@ const example = {
|
|
|
56
55
|
"excludeDeceased": null,
|
|
57
56
|
"anniversary": null,
|
|
58
57
|
"anniversaryRange": null,
|
|
59
|
-
"excludeFNA": null,
|
|
60
58
|
"search": null,
|
|
61
59
|
} satisfies LegacyContactGetListOptions
|
|
62
60
|
|
package/package.json
CHANGED
|
@@ -154,12 +154,6 @@ export interface LegacyContactGetListOptions {
|
|
|
154
154
|
* @memberof LegacyContactGetListOptions
|
|
155
155
|
*/
|
|
156
156
|
anniversaryRange?: LegacyDateRange;
|
|
157
|
-
/**
|
|
158
|
-
* Exclude contacts linked to Equisoft/plan. Default: false.
|
|
159
|
-
* @type {boolean}
|
|
160
|
-
* @memberof LegacyContactGetListOptions
|
|
161
|
-
*/
|
|
162
|
-
excludeFNA?: boolean;
|
|
163
157
|
/**
|
|
164
158
|
*
|
|
165
159
|
* @type {LegacyContactOptionGetListSearch}
|
|
@@ -237,7 +231,6 @@ export function LegacyContactGetListOptionsFromJSONTyped(json: any, ignoreDiscri
|
|
|
237
231
|
'excludeDeceased': json['exclude_deceased'] == null ? undefined : json['exclude_deceased'],
|
|
238
232
|
'anniversary': json['anniversary'] == null ? undefined : json['anniversary'],
|
|
239
233
|
'anniversaryRange': json['anniversaryRange'] == null ? undefined : LegacyDateRangeFromJSON(json['anniversaryRange']),
|
|
240
|
-
'excludeFNA': json['excludeFNA'] == null ? undefined : json['excludeFNA'],
|
|
241
234
|
'search': json['search'] == null ? undefined : LegacyContactOptionGetListSearchFromJSON(json['search']),
|
|
242
235
|
};
|
|
243
236
|
}
|
|
@@ -273,7 +266,6 @@ export function LegacyContactGetListOptionsToJSONTyped(value?: LegacyContactGetL
|
|
|
273
266
|
'exclude_deceased': value['excludeDeceased'],
|
|
274
267
|
'anniversary': value['anniversary'],
|
|
275
268
|
'anniversaryRange': LegacyDateRangeToJSON(value['anniversaryRange']),
|
|
276
|
-
'excludeFNA': value['excludeFNA'],
|
|
277
269
|
'search': LegacyContactOptionGetListSearchToJSON(value['search']),
|
|
278
270
|
};
|
|
279
271
|
}
|