@equisoft/equisoft-connect-sdk-typescript 10.13.1 → 10.14.1-snapshot.20220128195911
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/models/LegacyContactContact.d.ts +24 -0
- package/dist/models/LegacyContactContact.js +8 -0
- package/dist/models/LegacyContactContactPayloadItem.d.ts +24 -0
- package/dist/models/LegacyContactContactPayloadItem.js +8 -0
- package/package.json +1 -1
- package/src/models/LegacyContactContact.ts +32 -0
- package/src/models/LegacyContactContactPayloadItem.ts +32 -0
|
@@ -87,6 +87,30 @@ export interface LegacyContactContact {
|
|
|
87
87
|
* @memberof LegacyContactContact
|
|
88
88
|
*/
|
|
89
89
|
rank?: string;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof LegacyContactContact
|
|
94
|
+
*/
|
|
95
|
+
facebookLink?: string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof LegacyContactContact
|
|
100
|
+
*/
|
|
101
|
+
twitterLink?: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof LegacyContactContact
|
|
106
|
+
*/
|
|
107
|
+
linkedinLink?: string;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {number}
|
|
111
|
+
* @memberof LegacyContactContact
|
|
112
|
+
*/
|
|
113
|
+
avatar?: number;
|
|
90
114
|
}
|
|
91
115
|
export declare function LegacyContactContactFromJSON(json: any): LegacyContactContact;
|
|
92
116
|
export declare function LegacyContactContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): LegacyContactContact;
|
|
@@ -36,6 +36,10 @@ function LegacyContactContactFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'corporationName': !runtime_1.exists(json, 'corporationName') ? undefined : json['corporationName'],
|
|
37
37
|
'corporationNameLine2': !runtime_1.exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
|
|
38
38
|
'rank': !runtime_1.exists(json, 'rank') ? undefined : json['rank'],
|
|
39
|
+
'facebookLink': !runtime_1.exists(json, 'facebookLink') ? undefined : json['facebookLink'],
|
|
40
|
+
'twitterLink': !runtime_1.exists(json, 'twitterLink') ? undefined : json['twitterLink'],
|
|
41
|
+
'linkedinLink': !runtime_1.exists(json, 'linkedinLink') ? undefined : json['linkedinLink'],
|
|
42
|
+
'avatar': !runtime_1.exists(json, 'avatar') ? undefined : json['avatar'],
|
|
39
43
|
};
|
|
40
44
|
}
|
|
41
45
|
exports.LegacyContactContactFromJSONTyped = LegacyContactContactFromJSONTyped;
|
|
@@ -59,6 +63,10 @@ function LegacyContactContactToJSON(value) {
|
|
|
59
63
|
'corporationName': value.corporationName,
|
|
60
64
|
'corporationNameLine2': value.corporationNameLine2,
|
|
61
65
|
'rank': value.rank,
|
|
66
|
+
'facebookLink': value.facebookLink,
|
|
67
|
+
'twitterLink': value.twitterLink,
|
|
68
|
+
'linkedinLink': value.linkedinLink,
|
|
69
|
+
'avatar': value.avatar,
|
|
62
70
|
};
|
|
63
71
|
}
|
|
64
72
|
exports.LegacyContactContactToJSON = LegacyContactContactToJSON;
|
|
@@ -87,6 +87,30 @@ export interface LegacyContactContactPayloadItem {
|
|
|
87
87
|
* @memberof LegacyContactContactPayloadItem
|
|
88
88
|
*/
|
|
89
89
|
rank?: string;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof LegacyContactContactPayloadItem
|
|
94
|
+
*/
|
|
95
|
+
facebookLink?: string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof LegacyContactContactPayloadItem
|
|
100
|
+
*/
|
|
101
|
+
twitterLink?: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof LegacyContactContactPayloadItem
|
|
106
|
+
*/
|
|
107
|
+
linkedinLink?: string;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {number}
|
|
111
|
+
* @memberof LegacyContactContactPayloadItem
|
|
112
|
+
*/
|
|
113
|
+
avatar?: number;
|
|
90
114
|
/**
|
|
91
115
|
* external key
|
|
92
116
|
* @type {string}
|
|
@@ -36,6 +36,10 @@ function LegacyContactContactPayloadItemFromJSONTyped(json, ignoreDiscriminator)
|
|
|
36
36
|
'corporationName': !runtime_1.exists(json, 'corporationName') ? undefined : json['corporationName'],
|
|
37
37
|
'corporationNameLine2': !runtime_1.exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
|
|
38
38
|
'rank': !runtime_1.exists(json, 'rank') ? undefined : json['rank'],
|
|
39
|
+
'facebookLink': !runtime_1.exists(json, 'facebookLink') ? undefined : json['facebookLink'],
|
|
40
|
+
'twitterLink': !runtime_1.exists(json, 'twitterLink') ? undefined : json['twitterLink'],
|
|
41
|
+
'linkedinLink': !runtime_1.exists(json, 'linkedinLink') ? undefined : json['linkedinLink'],
|
|
42
|
+
'avatar': !runtime_1.exists(json, 'avatar') ? undefined : json['avatar'],
|
|
39
43
|
'externalKey': !runtime_1.exists(json, 'externalKey') ? undefined : json['externalKey'],
|
|
40
44
|
'externalKeyType': !runtime_1.exists(json, 'externalKeyType') ? undefined : json['externalKeyType'],
|
|
41
45
|
'gender': !runtime_1.exists(json, 'gender') ? undefined : json['gender'],
|
|
@@ -104,6 +108,10 @@ function LegacyContactContactPayloadItemToJSON(value) {
|
|
|
104
108
|
'corporationName': value.corporationName,
|
|
105
109
|
'corporationNameLine2': value.corporationNameLine2,
|
|
106
110
|
'rank': value.rank,
|
|
111
|
+
'facebookLink': value.facebookLink,
|
|
112
|
+
'twitterLink': value.twitterLink,
|
|
113
|
+
'linkedinLink': value.linkedinLink,
|
|
114
|
+
'avatar': value.avatar,
|
|
107
115
|
'externalKey': value.externalKey,
|
|
108
116
|
'externalKeyType': value.externalKeyType,
|
|
109
117
|
'gender': value.gender,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/equisoft-connect-sdk-typescript",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.14.1-snapshot.20220128195911",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -91,6 +91,30 @@ export interface LegacyContactContact {
|
|
|
91
91
|
* @memberof LegacyContactContact
|
|
92
92
|
*/
|
|
93
93
|
rank?: string;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof LegacyContactContact
|
|
98
|
+
*/
|
|
99
|
+
facebookLink?: string;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {string}
|
|
103
|
+
* @memberof LegacyContactContact
|
|
104
|
+
*/
|
|
105
|
+
twitterLink?: string;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof LegacyContactContact
|
|
110
|
+
*/
|
|
111
|
+
linkedinLink?: string;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {number}
|
|
115
|
+
* @memberof LegacyContactContact
|
|
116
|
+
*/
|
|
117
|
+
avatar?: number;
|
|
94
118
|
}
|
|
95
119
|
|
|
96
120
|
export function LegacyContactContactFromJSON(json: any): LegacyContactContact {
|
|
@@ -115,6 +139,10 @@ export function LegacyContactContactFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
115
139
|
'corporationName': !exists(json, 'corporationName') ? undefined : json['corporationName'],
|
|
116
140
|
'corporationNameLine2': !exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
|
|
117
141
|
'rank': !exists(json, 'rank') ? undefined : json['rank'],
|
|
142
|
+
'facebookLink': !exists(json, 'facebookLink') ? undefined : json['facebookLink'],
|
|
143
|
+
'twitterLink': !exists(json, 'twitterLink') ? undefined : json['twitterLink'],
|
|
144
|
+
'linkedinLink': !exists(json, 'linkedinLink') ? undefined : json['linkedinLink'],
|
|
145
|
+
'avatar': !exists(json, 'avatar') ? undefined : json['avatar'],
|
|
118
146
|
};
|
|
119
147
|
}
|
|
120
148
|
|
|
@@ -139,6 +167,10 @@ export function LegacyContactContactToJSON(value?: LegacyContactContact | null):
|
|
|
139
167
|
'corporationName': value.corporationName,
|
|
140
168
|
'corporationNameLine2': value.corporationNameLine2,
|
|
141
169
|
'rank': value.rank,
|
|
170
|
+
'facebookLink': value.facebookLink,
|
|
171
|
+
'twitterLink': value.twitterLink,
|
|
172
|
+
'linkedinLink': value.linkedinLink,
|
|
173
|
+
'avatar': value.avatar,
|
|
142
174
|
};
|
|
143
175
|
}
|
|
144
176
|
|
|
@@ -102,6 +102,30 @@ export interface LegacyContactContactPayloadItem {
|
|
|
102
102
|
* @memberof LegacyContactContactPayloadItem
|
|
103
103
|
*/
|
|
104
104
|
rank?: string;
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof LegacyContactContactPayloadItem
|
|
109
|
+
*/
|
|
110
|
+
facebookLink?: string;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {string}
|
|
114
|
+
* @memberof LegacyContactContactPayloadItem
|
|
115
|
+
*/
|
|
116
|
+
twitterLink?: string;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {string}
|
|
120
|
+
* @memberof LegacyContactContactPayloadItem
|
|
121
|
+
*/
|
|
122
|
+
linkedinLink?: string;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @memberof LegacyContactContactPayloadItem
|
|
127
|
+
*/
|
|
128
|
+
avatar?: number;
|
|
105
129
|
/**
|
|
106
130
|
* external key
|
|
107
131
|
* @type {string}
|
|
@@ -396,6 +420,10 @@ export function LegacyContactContactPayloadItemFromJSONTyped(json: any, ignoreDi
|
|
|
396
420
|
'corporationName': !exists(json, 'corporationName') ? undefined : json['corporationName'],
|
|
397
421
|
'corporationNameLine2': !exists(json, 'corporationNameLine2') ? undefined : json['corporationNameLine2'],
|
|
398
422
|
'rank': !exists(json, 'rank') ? undefined : json['rank'],
|
|
423
|
+
'facebookLink': !exists(json, 'facebookLink') ? undefined : json['facebookLink'],
|
|
424
|
+
'twitterLink': !exists(json, 'twitterLink') ? undefined : json['twitterLink'],
|
|
425
|
+
'linkedinLink': !exists(json, 'linkedinLink') ? undefined : json['linkedinLink'],
|
|
426
|
+
'avatar': !exists(json, 'avatar') ? undefined : json['avatar'],
|
|
399
427
|
'externalKey': !exists(json, 'externalKey') ? undefined : json['externalKey'],
|
|
400
428
|
'externalKeyType': !exists(json, 'externalKeyType') ? undefined : json['externalKeyType'],
|
|
401
429
|
'gender': !exists(json, 'gender') ? undefined : json['gender'],
|
|
@@ -465,6 +493,10 @@ export function LegacyContactContactPayloadItemToJSON(value?: LegacyContactConta
|
|
|
465
493
|
'corporationName': value.corporationName,
|
|
466
494
|
'corporationNameLine2': value.corporationNameLine2,
|
|
467
495
|
'rank': value.rank,
|
|
496
|
+
'facebookLink': value.facebookLink,
|
|
497
|
+
'twitterLink': value.twitterLink,
|
|
498
|
+
'linkedinLink': value.linkedinLink,
|
|
499
|
+
'avatar': value.avatar,
|
|
468
500
|
'externalKey': value.externalKey,
|
|
469
501
|
'externalKeyType': value.externalKeyType,
|
|
470
502
|
'gender': value.gender,
|