@equisoft/equisoft-connect-sdk-typescript 13.34.0 → 13.34.1-snapshot.20250902102635

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/.tool-versions CHANGED
@@ -1,3 +1,3 @@
1
1
  java temurin-21.0.8+9.0.LTS
2
- nodejs 22.18.0
2
+ nodejs 22.19.0
3
3
  yarn 1.22.4
@@ -120,6 +120,12 @@ export interface ContactsAdditionalInformation {
120
120
  * @memberof ContactsAdditionalInformation
121
121
  */
122
122
  revenue?: ContactsRevenue | null;
123
+ /**
124
+ *
125
+ * @type {ContactsContactFieldValue}
126
+ * @memberof ContactsAdditionalInformation
127
+ */
128
+ netProfits?: ContactsContactFieldValue | null;
123
129
  /**
124
130
  *
125
131
  * @type {ContactsContactFieldValue}
@@ -45,6 +45,7 @@ export function ContactsAdditionalInformationFromJSONTyped(json, ignoreDiscrimin
45
45
  'annualGrowth': json['annualGrowth'] == null ? undefined : ContactsContactFieldValueFromJSON(json['annualGrowth']),
46
46
  'companyStage': json['companyStage'] == null ? undefined : ContactsContactFieldValueFromJSON(json['companyStage']),
47
47
  'revenue': json['revenue'] == null ? undefined : ContactsRevenueFromJSON(json['revenue']),
48
+ 'netProfits': json['netProfits'] == null ? undefined : ContactsContactFieldValueFromJSON(json['netProfits']),
48
49
  'incorporationLocation': json['incorporationLocation'] == null ? undefined : ContactsContactFieldValueFromJSON(json['incorporationLocation']),
49
50
  'payroll': json['payroll'] == null ? undefined : ContactsContactFieldValueFromJSON(json['payroll']),
50
51
  'endOfFinancialYear': json['endOfFinancialYear'] == null ? undefined : json['endOfFinancialYear'],
@@ -79,6 +80,7 @@ export function ContactsAdditionalInformationToJSONTyped(value, ignoreDiscrimina
79
80
  'annualGrowth': ContactsContactFieldValueToJSON(value['annualGrowth']),
80
81
  'companyStage': ContactsContactFieldValueToJSON(value['companyStage']),
81
82
  'revenue': ContactsRevenueToJSON(value['revenue']),
83
+ 'netProfits': ContactsContactFieldValueToJSON(value['netProfits']),
82
84
  'incorporationLocation': ContactsContactFieldValueToJSON(value['incorporationLocation']),
83
85
  'payroll': ContactsContactFieldValueToJSON(value['payroll']),
84
86
  'endOfFinancialYear': value['endOfFinancialYear'],
@@ -120,6 +120,12 @@ export interface ContactsAdditionalInformation {
120
120
  * @memberof ContactsAdditionalInformation
121
121
  */
122
122
  revenue?: ContactsRevenue | null;
123
+ /**
124
+ *
125
+ * @type {ContactsContactFieldValue}
126
+ * @memberof ContactsAdditionalInformation
127
+ */
128
+ netProfits?: ContactsContactFieldValue | null;
123
129
  /**
124
130
  *
125
131
  * @type {ContactsContactFieldValue}
@@ -52,6 +52,7 @@ function ContactsAdditionalInformationFromJSONTyped(json, ignoreDiscriminator) {
52
52
  'annualGrowth': json['annualGrowth'] == null ? undefined : (0, ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)(json['annualGrowth']),
53
53
  'companyStage': json['companyStage'] == null ? undefined : (0, ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)(json['companyStage']),
54
54
  'revenue': json['revenue'] == null ? undefined : (0, ContactsRevenue_1.ContactsRevenueFromJSON)(json['revenue']),
55
+ 'netProfits': json['netProfits'] == null ? undefined : (0, ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)(json['netProfits']),
55
56
  'incorporationLocation': json['incorporationLocation'] == null ? undefined : (0, ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)(json['incorporationLocation']),
56
57
  'payroll': json['payroll'] == null ? undefined : (0, ContactsContactFieldValue_1.ContactsContactFieldValueFromJSON)(json['payroll']),
57
58
  'endOfFinancialYear': json['endOfFinancialYear'] == null ? undefined : json['endOfFinancialYear'],
@@ -86,6 +87,7 @@ function ContactsAdditionalInformationToJSONTyped(value, ignoreDiscriminator = f
86
87
  'annualGrowth': (0, ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)(value['annualGrowth']),
87
88
  'companyStage': (0, ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)(value['companyStage']),
88
89
  'revenue': (0, ContactsRevenue_1.ContactsRevenueToJSON)(value['revenue']),
90
+ 'netProfits': (0, ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)(value['netProfits']),
89
91
  'incorporationLocation': (0, ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)(value['incorporationLocation']),
90
92
  'payroll': (0, ContactsContactFieldValue_1.ContactsContactFieldValueToJSON)(value['payroll']),
91
93
  'endOfFinancialYear': value['endOfFinancialYear'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "13.34.0",
3
+ "version": "13.34.1-snapshot.20250902102635",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -143,6 +143,12 @@ export interface ContactsAdditionalInformation {
143
143
  * @memberof ContactsAdditionalInformation
144
144
  */
145
145
  revenue?: ContactsRevenue | null;
146
+ /**
147
+ *
148
+ * @type {ContactsContactFieldValue}
149
+ * @memberof ContactsAdditionalInformation
150
+ */
151
+ netProfits?: ContactsContactFieldValue | null;
146
152
  /**
147
153
  *
148
154
  * @type {ContactsContactFieldValue}
@@ -221,6 +227,7 @@ export function ContactsAdditionalInformationFromJSONTyped(json: any, ignoreDisc
221
227
  'annualGrowth': json['annualGrowth'] == null ? undefined : ContactsContactFieldValueFromJSON(json['annualGrowth']),
222
228
  'companyStage': json['companyStage'] == null ? undefined : ContactsContactFieldValueFromJSON(json['companyStage']),
223
229
  'revenue': json['revenue'] == null ? undefined : ContactsRevenueFromJSON(json['revenue']),
230
+ 'netProfits': json['netProfits'] == null ? undefined : ContactsContactFieldValueFromJSON(json['netProfits']),
224
231
  'incorporationLocation': json['incorporationLocation'] == null ? undefined : ContactsContactFieldValueFromJSON(json['incorporationLocation']),
225
232
  'payroll': json['payroll'] == null ? undefined : ContactsContactFieldValueFromJSON(json['payroll']),
226
233
  'endOfFinancialYear': json['endOfFinancialYear'] == null ? undefined : json['endOfFinancialYear'],
@@ -259,6 +266,7 @@ export function ContactsAdditionalInformationToJSONTyped(value?: ContactsAdditio
259
266
  'annualGrowth': ContactsContactFieldValueToJSON(value['annualGrowth']),
260
267
  'companyStage': ContactsContactFieldValueToJSON(value['companyStage']),
261
268
  'revenue': ContactsRevenueToJSON(value['revenue']),
269
+ 'netProfits': ContactsContactFieldValueToJSON(value['netProfits']),
262
270
  'incorporationLocation': ContactsContactFieldValueToJSON(value['incorporationLocation']),
263
271
  'payroll': ContactsContactFieldValueToJSON(value['payroll']),
264
272
  'endOfFinancialYear': value['endOfFinancialYear'],