@equisoft/equisoft-connect-sdk-typescript 13.33.1-snapshot.20250815032632 → 13.34.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.
Files changed (35) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/dist/esm/models/ContactsAdditionalInformation.d.ts +12 -0
  3. package/dist/esm/models/ContactsAdditionalInformation.js +4 -0
  4. package/dist/esm/models/ContactsInvestmentObjective.d.ts +56 -0
  5. package/dist/esm/models/ContactsInvestmentObjective.js +49 -0
  6. package/dist/esm/models/ContactsInvestorProfile.d.ts +89 -0
  7. package/dist/esm/models/ContactsInvestorProfile.js +62 -0
  8. package/dist/esm/models/ContactsLegacyContact.d.ts +7 -0
  9. package/dist/esm/models/ContactsLegacyContact.js +3 -0
  10. package/dist/esm/models/ContactsRegistrationNumbers.d.ts +3 -3
  11. package/dist/esm/models/ContactsRiskTolerance.d.ts +44 -0
  12. package/dist/esm/models/ContactsRiskTolerance.js +45 -0
  13. package/dist/esm/models/index.d.ts +3 -0
  14. package/dist/esm/models/index.js +3 -0
  15. package/dist/models/ContactsAdditionalInformation.d.ts +12 -0
  16. package/dist/models/ContactsAdditionalInformation.js +4 -0
  17. package/dist/models/ContactsInvestmentObjective.d.ts +56 -0
  18. package/dist/models/ContactsInvestmentObjective.js +56 -0
  19. package/dist/models/ContactsInvestorProfile.d.ts +89 -0
  20. package/dist/models/ContactsInvestorProfile.js +69 -0
  21. package/dist/models/ContactsLegacyContact.d.ts +7 -0
  22. package/dist/models/ContactsLegacyContact.js +3 -0
  23. package/dist/models/ContactsRegistrationNumbers.d.ts +3 -3
  24. package/dist/models/ContactsRiskTolerance.d.ts +44 -0
  25. package/dist/models/ContactsRiskTolerance.js +52 -0
  26. package/dist/models/index.d.ts +3 -0
  27. package/dist/models/index.js +3 -0
  28. package/package.json +1 -1
  29. package/src/models/ContactsAdditionalInformation.ts +16 -0
  30. package/src/models/ContactsInvestmentObjective.ts +97 -0
  31. package/src/models/ContactsInvestorProfile.ts +159 -0
  32. package/src/models/ContactsLegacyContact.ts +15 -0
  33. package/src/models/ContactsRegistrationNumbers.ts +3 -3
  34. package/src/models/ContactsRiskTolerance.ts +81 -0
  35. package/src/models/index.ts +3 -0
@@ -48,6 +48,8 @@ src/models/ContactsContactFieldValue.ts
48
48
  src/models/ContactsEmail.ts
49
49
  src/models/ContactsIdentification.ts
50
50
  src/models/ContactsIndividualIdentification.ts
51
+ src/models/ContactsInvestmentObjective.ts
52
+ src/models/ContactsInvestorProfile.ts
51
53
  src/models/ContactsLegacyContact.ts
52
54
  src/models/ContactsLegacyContactRelation.ts
53
55
  src/models/ContactsLegacyContactRelationParticipant.ts
@@ -57,6 +59,7 @@ src/models/ContactsOrganizationIdentification.ts
57
59
  src/models/ContactsPhone.ts
58
60
  src/models/ContactsRegistrationNumbers.ts
59
61
  src/models/ContactsRevenue.ts
62
+ src/models/ContactsRiskTolerance.ts
60
63
  src/models/ContactsSegmentation.ts
61
64
  src/models/ContactsTemporaryContact.ts
62
65
  src/models/ContactsWebSite.ts
@@ -150,6 +150,18 @@ export interface ContactsAdditionalInformation {
150
150
  * @memberof ContactsAdditionalInformation
151
151
  */
152
152
  registrationNumbers?: ContactsRegistrationNumbers | null;
153
+ /**
154
+ *
155
+ * @type {Date}
156
+ * @memberof ContactsAdditionalInformation
157
+ */
158
+ knownSince?: Date | null;
159
+ /**
160
+ *
161
+ * @type {Date}
162
+ * @memberof ContactsAdditionalInformation
163
+ */
164
+ endDate?: Date | null;
153
165
  }
154
166
  /**
155
167
  * Check if a given object implements the ContactsAdditionalInformation interface.
@@ -50,6 +50,8 @@ export function ContactsAdditionalInformationFromJSONTyped(json, ignoreDiscrimin
50
50
  'endOfFinancialYear': json['endOfFinancialYear'] == null ? undefined : json['endOfFinancialYear'],
51
51
  'numberOfShareholders': json['numberOfShareholders'] == null ? undefined : json['numberOfShareholders'],
52
52
  'registrationNumbers': json['registrationNumbers'] == null ? undefined : ContactsRegistrationNumbersFromJSON(json['registrationNumbers']),
53
+ 'knownSince': json['knownSince'] == null ? undefined : (new Date(json['knownSince'])),
54
+ 'endDate': json['endDate'] == null ? undefined : (new Date(json['endDate'])),
53
55
  };
54
56
  }
55
57
  export function ContactsAdditionalInformationToJSON(json) {
@@ -82,5 +84,7 @@ export function ContactsAdditionalInformationToJSONTyped(value, ignoreDiscrimina
82
84
  'endOfFinancialYear': value['endOfFinancialYear'],
83
85
  'numberOfShareholders': value['numberOfShareholders'],
84
86
  'registrationNumbers': ContactsRegistrationNumbersToJSON(value['registrationNumbers']),
87
+ 'knownSince': value['knownSince'] == null ? undefined : (value['knownSince'].toISOString().substring(0, 10)),
88
+ 'endDate': value['endDate'] == null ? undefined : (value['endDate'].toISOString().substring(0, 10)),
85
89
  };
86
90
  }
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ContactsInvestmentObjective
16
+ */
17
+ export interface ContactsInvestmentObjective {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ContactsInvestmentObjective
22
+ */
23
+ capitalPreservationPercentage?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof ContactsInvestmentObjective
28
+ */
29
+ incomeProducingPercentage?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof ContactsInvestmentObjective
34
+ */
35
+ longTermGrowthPercentage?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof ContactsInvestmentObjective
40
+ */
41
+ longTermGrowthYears?: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof ContactsInvestmentObjective
46
+ */
47
+ speculationPercentage?: number;
48
+ }
49
+ /**
50
+ * Check if a given object implements the ContactsInvestmentObjective interface.
51
+ */
52
+ export declare function instanceOfContactsInvestmentObjective(value: object): value is ContactsInvestmentObjective;
53
+ export declare function ContactsInvestmentObjectiveFromJSON(json: any): ContactsInvestmentObjective;
54
+ export declare function ContactsInvestmentObjectiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsInvestmentObjective;
55
+ export declare function ContactsInvestmentObjectiveToJSON(json: any): ContactsInvestmentObjective;
56
+ export declare function ContactsInvestmentObjectiveToJSONTyped(value?: ContactsInvestmentObjective | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Equisoft /connect API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * Check if a given object implements the ContactsInvestmentObjective interface.
16
+ */
17
+ export function instanceOfContactsInvestmentObjective(value) {
18
+ return true;
19
+ }
20
+ export function ContactsInvestmentObjectiveFromJSON(json) {
21
+ return ContactsInvestmentObjectiveFromJSONTyped(json, false);
22
+ }
23
+ export function ContactsInvestmentObjectiveFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'capitalPreservationPercentage': json['capitalPreservationPercentage'] == null ? undefined : json['capitalPreservationPercentage'],
29
+ 'incomeProducingPercentage': json['incomeProducingPercentage'] == null ? undefined : json['incomeProducingPercentage'],
30
+ 'longTermGrowthPercentage': json['longTermGrowthPercentage'] == null ? undefined : json['longTermGrowthPercentage'],
31
+ 'longTermGrowthYears': json['longTermGrowthYears'] == null ? undefined : json['longTermGrowthYears'],
32
+ 'speculationPercentage': json['speculationPercentage'] == null ? undefined : json['speculationPercentage'],
33
+ };
34
+ }
35
+ export function ContactsInvestmentObjectiveToJSON(json) {
36
+ return ContactsInvestmentObjectiveToJSONTyped(json, false);
37
+ }
38
+ export function ContactsInvestmentObjectiveToJSONTyped(value, ignoreDiscriminator = false) {
39
+ if (value == null) {
40
+ return value;
41
+ }
42
+ return {
43
+ 'capitalPreservationPercentage': value['capitalPreservationPercentage'],
44
+ 'incomeProducingPercentage': value['incomeProducingPercentage'],
45
+ 'longTermGrowthPercentage': value['longTermGrowthPercentage'],
46
+ 'longTermGrowthYears': value['longTermGrowthYears'],
47
+ 'speculationPercentage': value['speculationPercentage'],
48
+ };
49
+ }
@@ -0,0 +1,89 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { ContactsContactFieldValue } from './ContactsContactFieldValue';
13
+ import type { ContactsRiskTolerance } from './ContactsRiskTolerance';
14
+ import type { ContactsInvestmentObjective } from './ContactsInvestmentObjective';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface ContactsInvestorProfile
19
+ */
20
+ export interface ContactsInvestorProfile {
21
+ /**
22
+ *
23
+ * @type {Date}
24
+ * @memberof ContactsInvestorProfile
25
+ */
26
+ lastUpdate?: Date | null;
27
+ /**
28
+ *
29
+ * @type {Date}
30
+ * @memberof ContactsInvestorProfile
31
+ */
32
+ reviewDate?: Date | null;
33
+ /**
34
+ *
35
+ * @type {ContactsContactFieldValue}
36
+ * @memberof ContactsInvestorProfile
37
+ */
38
+ profile?: ContactsContactFieldValue | null;
39
+ /**
40
+ *
41
+ * @type {ContactsContactFieldValue}
42
+ * @memberof ContactsInvestorProfile
43
+ */
44
+ investorKnowledge?: ContactsContactFieldValue | null;
45
+ /**
46
+ *
47
+ * @type {ContactsContactFieldValue}
48
+ * @memberof ContactsInvestorProfile
49
+ */
50
+ estimatedEquity?: ContactsContactFieldValue | null;
51
+ /**
52
+ *
53
+ * @type {ContactsContactFieldValue}
54
+ * @memberof ContactsInvestorProfile
55
+ */
56
+ annualIncome?: ContactsContactFieldValue | null;
57
+ /**
58
+ *
59
+ * @type {ContactsContactFieldValue}
60
+ * @memberof ContactsInvestorProfile
61
+ */
62
+ taxCode?: ContactsContactFieldValue | null;
63
+ /**
64
+ *
65
+ * @type {ContactsContactFieldValue}
66
+ * @memberof ContactsInvestorProfile
67
+ */
68
+ style?: ContactsContactFieldValue | null;
69
+ /**
70
+ *
71
+ * @type {ContactsRiskTolerance}
72
+ * @memberof ContactsInvestorProfile
73
+ */
74
+ riskTolerance?: ContactsRiskTolerance | null;
75
+ /**
76
+ *
77
+ * @type {ContactsInvestmentObjective}
78
+ * @memberof ContactsInvestorProfile
79
+ */
80
+ investmentObjective?: ContactsInvestmentObjective | null;
81
+ }
82
+ /**
83
+ * Check if a given object implements the ContactsInvestorProfile interface.
84
+ */
85
+ export declare function instanceOfContactsInvestorProfile(value: object): value is ContactsInvestorProfile;
86
+ export declare function ContactsInvestorProfileFromJSON(json: any): ContactsInvestorProfile;
87
+ export declare function ContactsInvestorProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsInvestorProfile;
88
+ export declare function ContactsInvestorProfileToJSON(json: any): ContactsInvestorProfile;
89
+ export declare function ContactsInvestorProfileToJSONTyped(value?: ContactsInvestorProfile | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,62 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Equisoft /connect API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { ContactsContactFieldValueFromJSON, ContactsContactFieldValueToJSON, } from './ContactsContactFieldValue';
15
+ import { ContactsRiskToleranceFromJSON, ContactsRiskToleranceToJSON, } from './ContactsRiskTolerance';
16
+ import { ContactsInvestmentObjectiveFromJSON, ContactsInvestmentObjectiveToJSON, } from './ContactsInvestmentObjective';
17
+ /**
18
+ * Check if a given object implements the ContactsInvestorProfile interface.
19
+ */
20
+ export function instanceOfContactsInvestorProfile(value) {
21
+ return true;
22
+ }
23
+ export function ContactsInvestorProfileFromJSON(json) {
24
+ return ContactsInvestorProfileFromJSONTyped(json, false);
25
+ }
26
+ export function ContactsInvestorProfileFromJSONTyped(json, ignoreDiscriminator) {
27
+ if (json == null) {
28
+ return json;
29
+ }
30
+ return {
31
+ 'lastUpdate': json['lastUpdate'] == null ? undefined : (new Date(json['lastUpdate'])),
32
+ 'reviewDate': json['reviewDate'] == null ? undefined : (new Date(json['reviewDate'])),
33
+ 'profile': json['profile'] == null ? undefined : ContactsContactFieldValueFromJSON(json['profile']),
34
+ 'investorKnowledge': json['investorKnowledge'] == null ? undefined : ContactsContactFieldValueFromJSON(json['investorKnowledge']),
35
+ 'estimatedEquity': json['estimatedEquity'] == null ? undefined : ContactsContactFieldValueFromJSON(json['estimatedEquity']),
36
+ 'annualIncome': json['annualIncome'] == null ? undefined : ContactsContactFieldValueFromJSON(json['annualIncome']),
37
+ 'taxCode': json['taxCode'] == null ? undefined : ContactsContactFieldValueFromJSON(json['taxCode']),
38
+ 'style': json['style'] == null ? undefined : ContactsContactFieldValueFromJSON(json['style']),
39
+ 'riskTolerance': json['riskTolerance'] == null ? undefined : ContactsRiskToleranceFromJSON(json['riskTolerance']),
40
+ 'investmentObjective': json['investmentObjective'] == null ? undefined : ContactsInvestmentObjectiveFromJSON(json['investmentObjective']),
41
+ };
42
+ }
43
+ export function ContactsInvestorProfileToJSON(json) {
44
+ return ContactsInvestorProfileToJSONTyped(json, false);
45
+ }
46
+ export function ContactsInvestorProfileToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'lastUpdate': value['lastUpdate'] == null ? undefined : (value['lastUpdate'].toISOString().substring(0, 10)),
52
+ 'reviewDate': value['reviewDate'] == null ? undefined : (value['reviewDate'].toISOString().substring(0, 10)),
53
+ 'profile': ContactsContactFieldValueToJSON(value['profile']),
54
+ 'investorKnowledge': ContactsContactFieldValueToJSON(value['investorKnowledge']),
55
+ 'estimatedEquity': ContactsContactFieldValueToJSON(value['estimatedEquity']),
56
+ 'annualIncome': ContactsContactFieldValueToJSON(value['annualIncome']),
57
+ 'taxCode': ContactsContactFieldValueToJSON(value['taxCode']),
58
+ 'style': ContactsContactFieldValueToJSON(value['style']),
59
+ 'riskTolerance': ContactsRiskToleranceToJSON(value['riskTolerance']),
60
+ 'investmentObjective': ContactsInvestmentObjectiveToJSON(value['investmentObjective']),
61
+ };
62
+ }
@@ -19,6 +19,7 @@ import type { ContactsWebSite } from './ContactsWebSite';
19
19
  import type { ContactsOccupation } from './ContactsOccupation';
20
20
  import type { ContactsLegacyContactRelation } from './ContactsLegacyContactRelation';
21
21
  import type { ContactsAddress } from './ContactsAddress';
22
+ import type { ContactsInvestorProfile } from './ContactsInvestorProfile';
22
23
  /**
23
24
  *
24
25
  * @export
@@ -152,6 +153,12 @@ export interface ContactsLegacyContact {
152
153
  * @deprecated
153
154
  */
154
155
  links?: Array<ContactsLegacyContactRelation>;
156
+ /**
157
+ *
158
+ * @type {ContactsInvestorProfile}
159
+ * @memberof ContactsLegacyContact
160
+ */
161
+ investorProfile?: ContactsInvestorProfile | null;
155
162
  }
156
163
  /**
157
164
  * Check if a given object implements the ContactsLegacyContact interface.
@@ -21,6 +21,7 @@ import { ContactsWebSiteFromJSON, ContactsWebSiteToJSON, } from './ContactsWebSi
21
21
  import { ContactsOccupationFromJSON, ContactsOccupationToJSON, } from './ContactsOccupation';
22
22
  import { ContactsLegacyContactRelationFromJSON, ContactsLegacyContactRelationToJSON, } from './ContactsLegacyContactRelation';
23
23
  import { ContactsAddressFromJSON, ContactsAddressToJSON, } from './ContactsAddress';
24
+ import { ContactsInvestorProfileFromJSON, ContactsInvestorProfileToJSON, } from './ContactsInvestorProfile';
24
25
  /**
25
26
  * Check if a given object implements the ContactsLegacyContact interface.
26
27
  */
@@ -62,6 +63,7 @@ export function ContactsLegacyContactFromJSONTyped(json, ignoreDiscriminator) {
62
63
  'currentCivilStatus': json['currentCivilStatus'] == null ? undefined : ContactsCivilStatusFromJSON(json['currentCivilStatus']),
63
64
  'currentOccupation': json['currentOccupation'] == null ? undefined : ContactsOccupationFromJSON(json['currentOccupation']),
64
65
  'links': json['links'] == null ? undefined : (json['links'].map(ContactsLegacyContactRelationFromJSON)),
66
+ 'investorProfile': json['investorProfile'] == null ? undefined : ContactsInvestorProfileFromJSON(json['investorProfile']),
65
67
  };
66
68
  }
67
69
  export function ContactsLegacyContactToJSON(json) {
@@ -93,5 +95,6 @@ export function ContactsLegacyContactToJSONTyped(value, ignoreDiscriminator = fa
93
95
  'currentCivilStatus': ContactsCivilStatusToJSON(value['currentCivilStatus']),
94
96
  'currentOccupation': ContactsOccupationToJSON(value['currentOccupation']),
95
97
  'links': value['links'] == null ? undefined : (value['links'].map(ContactsLegacyContactRelationToJSON)),
98
+ 'investorProfile': ContactsInvestorProfileToJSON(value['investorProfile']),
96
99
  };
97
100
  }
@@ -20,19 +20,19 @@ export interface ContactsRegistrationNumbers {
20
20
  * @type {string}
21
21
  * @memberof ContactsRegistrationNumbers
22
22
  */
23
- identificationNumber?: string | null;
23
+ identificationNumber?: string;
24
24
  /**
25
25
  *
26
26
  * @type {string}
27
27
  * @memberof ContactsRegistrationNumbers
28
28
  */
29
- federalNumber?: string | null;
29
+ federalNumber?: string;
30
30
  /**
31
31
  *
32
32
  * @type {string}
33
33
  * @memberof ContactsRegistrationNumbers
34
34
  */
35
- provincialNumber?: string | null;
35
+ provincialNumber?: string;
36
36
  }
37
37
  /**
38
38
  * Check if a given object implements the ContactsRegistrationNumbers interface.
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ContactsRiskTolerance
16
+ */
17
+ export interface ContactsRiskTolerance {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ContactsRiskTolerance
22
+ */
23
+ low?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof ContactsRiskTolerance
28
+ */
29
+ medium?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof ContactsRiskTolerance
34
+ */
35
+ high?: number;
36
+ }
37
+ /**
38
+ * Check if a given object implements the ContactsRiskTolerance interface.
39
+ */
40
+ export declare function instanceOfContactsRiskTolerance(value: object): value is ContactsRiskTolerance;
41
+ export declare function ContactsRiskToleranceFromJSON(json: any): ContactsRiskTolerance;
42
+ export declare function ContactsRiskToleranceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsRiskTolerance;
43
+ export declare function ContactsRiskToleranceToJSON(json: any): ContactsRiskTolerance;
44
+ export declare function ContactsRiskToleranceToJSONTyped(value?: ContactsRiskTolerance | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,45 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Equisoft /connect API
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * Check if a given object implements the ContactsRiskTolerance interface.
16
+ */
17
+ export function instanceOfContactsRiskTolerance(value) {
18
+ return true;
19
+ }
20
+ export function ContactsRiskToleranceFromJSON(json) {
21
+ return ContactsRiskToleranceFromJSONTyped(json, false);
22
+ }
23
+ export function ContactsRiskToleranceFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'low': json['low'] == null ? undefined : json['low'],
29
+ 'medium': json['medium'] == null ? undefined : json['medium'],
30
+ 'high': json['high'] == null ? undefined : json['high'],
31
+ };
32
+ }
33
+ export function ContactsRiskToleranceToJSON(json) {
34
+ return ContactsRiskToleranceToJSONTyped(json, false);
35
+ }
36
+ export function ContactsRiskToleranceToJSONTyped(value, ignoreDiscriminator = false) {
37
+ if (value == null) {
38
+ return value;
39
+ }
40
+ return {
41
+ 'low': value['low'],
42
+ 'medium': value['medium'],
43
+ 'high': value['high'],
44
+ };
45
+ }
@@ -24,6 +24,8 @@ export * from './ContactsContactFieldValue';
24
24
  export * from './ContactsEmail';
25
25
  export * from './ContactsIdentification';
26
26
  export * from './ContactsIndividualIdentification';
27
+ export * from './ContactsInvestmentObjective';
28
+ export * from './ContactsInvestorProfile';
27
29
  export * from './ContactsLegacyContact';
28
30
  export * from './ContactsLegacyContactRelation';
29
31
  export * from './ContactsLegacyContactRelationParticipant';
@@ -33,6 +35,7 @@ export * from './ContactsOrganizationIdentification';
33
35
  export * from './ContactsPhone';
34
36
  export * from './ContactsRegistrationNumbers';
35
37
  export * from './ContactsRevenue';
38
+ export * from './ContactsRiskTolerance';
36
39
  export * from './ContactsSegmentation';
37
40
  export * from './ContactsTemporaryContact';
38
41
  export * from './ContactsWebSite';
@@ -26,6 +26,8 @@ export * from './ContactsContactFieldValue';
26
26
  export * from './ContactsEmail';
27
27
  export * from './ContactsIdentification';
28
28
  export * from './ContactsIndividualIdentification';
29
+ export * from './ContactsInvestmentObjective';
30
+ export * from './ContactsInvestorProfile';
29
31
  export * from './ContactsLegacyContact';
30
32
  export * from './ContactsLegacyContactRelation';
31
33
  export * from './ContactsLegacyContactRelationParticipant';
@@ -35,6 +37,7 @@ export * from './ContactsOrganizationIdentification';
35
37
  export * from './ContactsPhone';
36
38
  export * from './ContactsRegistrationNumbers';
37
39
  export * from './ContactsRevenue';
40
+ export * from './ContactsRiskTolerance';
38
41
  export * from './ContactsSegmentation';
39
42
  export * from './ContactsTemporaryContact';
40
43
  export * from './ContactsWebSite';
@@ -150,6 +150,18 @@ export interface ContactsAdditionalInformation {
150
150
  * @memberof ContactsAdditionalInformation
151
151
  */
152
152
  registrationNumbers?: ContactsRegistrationNumbers | null;
153
+ /**
154
+ *
155
+ * @type {Date}
156
+ * @memberof ContactsAdditionalInformation
157
+ */
158
+ knownSince?: Date | null;
159
+ /**
160
+ *
161
+ * @type {Date}
162
+ * @memberof ContactsAdditionalInformation
163
+ */
164
+ endDate?: Date | null;
153
165
  }
154
166
  /**
155
167
  * Check if a given object implements the ContactsAdditionalInformation interface.
@@ -57,6 +57,8 @@ function ContactsAdditionalInformationFromJSONTyped(json, ignoreDiscriminator) {
57
57
  'endOfFinancialYear': json['endOfFinancialYear'] == null ? undefined : json['endOfFinancialYear'],
58
58
  'numberOfShareholders': json['numberOfShareholders'] == null ? undefined : json['numberOfShareholders'],
59
59
  'registrationNumbers': json['registrationNumbers'] == null ? undefined : (0, ContactsRegistrationNumbers_1.ContactsRegistrationNumbersFromJSON)(json['registrationNumbers']),
60
+ 'knownSince': json['knownSince'] == null ? undefined : (new Date(json['knownSince'])),
61
+ 'endDate': json['endDate'] == null ? undefined : (new Date(json['endDate'])),
60
62
  };
61
63
  }
62
64
  function ContactsAdditionalInformationToJSON(json) {
@@ -89,5 +91,7 @@ function ContactsAdditionalInformationToJSONTyped(value, ignoreDiscriminator = f
89
91
  'endOfFinancialYear': value['endOfFinancialYear'],
90
92
  'numberOfShareholders': value['numberOfShareholders'],
91
93
  'registrationNumbers': (0, ContactsRegistrationNumbers_1.ContactsRegistrationNumbersToJSON)(value['registrationNumbers']),
94
+ 'knownSince': value['knownSince'] == null ? undefined : (value['knownSince'].toISOString().substring(0, 10)),
95
+ 'endDate': value['endDate'] == null ? undefined : (value['endDate'].toISOString().substring(0, 10)),
92
96
  };
93
97
  }
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Equisoft /connect API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ContactsInvestmentObjective
16
+ */
17
+ export interface ContactsInvestmentObjective {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ContactsInvestmentObjective
22
+ */
23
+ capitalPreservationPercentage?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof ContactsInvestmentObjective
28
+ */
29
+ incomeProducingPercentage?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof ContactsInvestmentObjective
34
+ */
35
+ longTermGrowthPercentage?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof ContactsInvestmentObjective
40
+ */
41
+ longTermGrowthYears?: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof ContactsInvestmentObjective
46
+ */
47
+ speculationPercentage?: number;
48
+ }
49
+ /**
50
+ * Check if a given object implements the ContactsInvestmentObjective interface.
51
+ */
52
+ export declare function instanceOfContactsInvestmentObjective(value: object): value is ContactsInvestmentObjective;
53
+ export declare function ContactsInvestmentObjectiveFromJSON(json: any): ContactsInvestmentObjective;
54
+ export declare function ContactsInvestmentObjectiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsInvestmentObjective;
55
+ export declare function ContactsInvestmentObjectiveToJSON(json: any): ContactsInvestmentObjective;
56
+ export declare function ContactsInvestmentObjectiveToJSONTyped(value?: ContactsInvestmentObjective | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Equisoft /connect API
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: latest
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfContactsInvestmentObjective = instanceOfContactsInvestmentObjective;
17
+ exports.ContactsInvestmentObjectiveFromJSON = ContactsInvestmentObjectiveFromJSON;
18
+ exports.ContactsInvestmentObjectiveFromJSONTyped = ContactsInvestmentObjectiveFromJSONTyped;
19
+ exports.ContactsInvestmentObjectiveToJSON = ContactsInvestmentObjectiveToJSON;
20
+ exports.ContactsInvestmentObjectiveToJSONTyped = ContactsInvestmentObjectiveToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the ContactsInvestmentObjective interface.
23
+ */
24
+ function instanceOfContactsInvestmentObjective(value) {
25
+ return true;
26
+ }
27
+ function ContactsInvestmentObjectiveFromJSON(json) {
28
+ return ContactsInvestmentObjectiveFromJSONTyped(json, false);
29
+ }
30
+ function ContactsInvestmentObjectiveFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'capitalPreservationPercentage': json['capitalPreservationPercentage'] == null ? undefined : json['capitalPreservationPercentage'],
36
+ 'incomeProducingPercentage': json['incomeProducingPercentage'] == null ? undefined : json['incomeProducingPercentage'],
37
+ 'longTermGrowthPercentage': json['longTermGrowthPercentage'] == null ? undefined : json['longTermGrowthPercentage'],
38
+ 'longTermGrowthYears': json['longTermGrowthYears'] == null ? undefined : json['longTermGrowthYears'],
39
+ 'speculationPercentage': json['speculationPercentage'] == null ? undefined : json['speculationPercentage'],
40
+ };
41
+ }
42
+ function ContactsInvestmentObjectiveToJSON(json) {
43
+ return ContactsInvestmentObjectiveToJSONTyped(json, false);
44
+ }
45
+ function ContactsInvestmentObjectiveToJSONTyped(value, ignoreDiscriminator = false) {
46
+ if (value == null) {
47
+ return value;
48
+ }
49
+ return {
50
+ 'capitalPreservationPercentage': value['capitalPreservationPercentage'],
51
+ 'incomeProducingPercentage': value['incomeProducingPercentage'],
52
+ 'longTermGrowthPercentage': value['longTermGrowthPercentage'],
53
+ 'longTermGrowthYears': value['longTermGrowthYears'],
54
+ 'speculationPercentage': value['speculationPercentage'],
55
+ };
56
+ }