Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@equisoft/equisoft-connect-sdk-typescript

Package Overview
Dependencies
Maintainers
14
Versions
375
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equisoft/equisoft-connect-sdk-typescript - npm Package Compare versions

Comparing version 10.8.2 to 10.8.3-snapshot.20211021175812

37

dist/models/ContactContactAdditionalInformation.d.ts

@@ -12,2 +12,3 @@ /**

*/
import { FieldValue } from './';
/**

@@ -30,3 +31,3 @@ *

*/
deceasedDate?: Date;
deceasedDate?: Date | null;
/**

@@ -43,3 +44,3 @@ *

*/
smokerEndDate?: Date;
smokerEndDate?: Date | null;
/**

@@ -50,3 +51,33 @@ *

*/
birthDate?: Date;
birthDate?: Date | null;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
facebookLink?: string;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
twitterLink?: string;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
linkedInLink?: string;
/**
*
* @type {FieldValue}
* @memberof ContactContactAdditionalInformation
*/
language?: FieldValue | null;
/**
*
* @type {number}
* @memberof ContactContactAdditionalInformation
*/
pictureId?: number | null;
}

@@ -53,0 +84,0 @@ export declare function ContactContactAdditionalInformationFromJSON(json: any): ContactContactAdditionalInformation;

23

dist/models/ContactContactAdditionalInformation.js

@@ -18,2 +18,3 @@ "use strict";

const runtime_1 = require("../runtime");
const _1 = require("./");
function ContactContactAdditionalInformationFromJSON(json) {

@@ -29,6 +30,11 @@ return ContactContactAdditionalInformationFromJSONTyped(json, false);

'isDeceased': !runtime_1.exists(json, 'isDeceased') ? undefined : json['isDeceased'],
'deceasedDate': !runtime_1.exists(json, 'deceasedDate') ? undefined : (new Date(json['deceasedDate'])),
'deceasedDate': !runtime_1.exists(json, 'deceasedDate') ? undefined : (json['deceasedDate'] === null ? null : new Date(json['deceasedDate'])),
'isSmoker': !runtime_1.exists(json, 'isSmoker') ? undefined : json['isSmoker'],
'smokerEndDate': !runtime_1.exists(json, 'smokerEndDate') ? undefined : (new Date(json['smokerEndDate'])),
'birthDate': !runtime_1.exists(json, 'birthDate') ? undefined : (new Date(json['birthDate'])),
'smokerEndDate': !runtime_1.exists(json, 'smokerEndDate') ? undefined : (json['smokerEndDate'] === null ? null : new Date(json['smokerEndDate'])),
'birthDate': !runtime_1.exists(json, 'birthDate') ? undefined : (json['birthDate'] === null ? null : new Date(json['birthDate'])),
'facebookLink': !runtime_1.exists(json, 'facebookLink') ? undefined : json['facebookLink'],
'twitterLink': !runtime_1.exists(json, 'twitterLink') ? undefined : json['twitterLink'],
'linkedInLink': !runtime_1.exists(json, 'linkedInLink') ? undefined : json['linkedInLink'],
'language': !runtime_1.exists(json, 'language') ? undefined : _1.FieldValueFromJSON(json['language']),
'pictureId': !runtime_1.exists(json, 'pictureId') ? undefined : json['pictureId'],
};

@@ -46,8 +52,13 @@ }

'isDeceased': value.isDeceased,
'deceasedDate': value.deceasedDate === undefined ? undefined : (value.deceasedDate.toISOString().substr(0, 10)),
'deceasedDate': value.deceasedDate === undefined ? undefined : (value.deceasedDate === null ? null : value.deceasedDate.toISOString().substr(0, 10)),
'isSmoker': value.isSmoker,
'smokerEndDate': value.smokerEndDate === undefined ? undefined : (value.smokerEndDate.toISOString().substr(0, 10)),
'birthDate': value.birthDate === undefined ? undefined : (value.birthDate.toISOString().substr(0, 10)),
'smokerEndDate': value.smokerEndDate === undefined ? undefined : (value.smokerEndDate === null ? null : value.smokerEndDate.toISOString().substr(0, 10)),
'birthDate': value.birthDate === undefined ? undefined : (value.birthDate === null ? null : value.birthDate.toISOString().substr(0, 10)),
'facebookLink': value.facebookLink,
'twitterLink': value.twitterLink,
'linkedInLink': value.linkedInLink,
'language': _1.FieldValueToJSON(value.language),
'pictureId': value.pictureId,
};
}
exports.ContactContactAdditionalInformationToJSON = ContactContactAdditionalInformationToJSON;

@@ -78,3 +78,3 @@ /**

*/
dateSince?: Date;
dateSince?: Date | null;
/**

@@ -86,2 +86,8 @@ *

city?: string;
/**
*
* @type {boolean}
* @memberof ContactContactAddress
*/
locked?: boolean;
}

@@ -88,0 +94,0 @@ export declare function ContactContactAddressFromJSON(json: any): ContactContactAddress;

@@ -37,4 +37,5 @@ "use strict";

'postalCode': !runtime_1.exists(json, 'postalCode') ? undefined : json['postalCode'],
'dateSince': !runtime_1.exists(json, 'dateSince') ? undefined : (new Date(json['dateSince'])),
'dateSince': !runtime_1.exists(json, 'dateSince') ? undefined : (json['dateSince'] === null ? null : new Date(json['dateSince'])),
'city': !runtime_1.exists(json, 'city') ? undefined : json['city'],
'locked': !runtime_1.exists(json, 'locked') ? undefined : json['locked'],
};

@@ -60,6 +61,7 @@ }

'postalCode': value.postalCode,
'dateSince': value.dateSince === undefined ? undefined : (value.dateSince.toISOString().substr(0, 10)),
'dateSince': value.dateSince === undefined ? undefined : (value.dateSince === null ? null : value.dateSince.toISOString().substr(0, 10)),
'city': value.city,
'locked': value.locked,
};
}
exports.ContactContactAddressToJSON = ContactContactAddressToJSON;

@@ -49,2 +49,8 @@ /**

notes?: string;
/**
*
* @type {boolean}
* @memberof ContactContactEmail
*/
locked?: boolean;
}

@@ -51,0 +57,0 @@ export declare function ContactContactEmailFromJSON(json: any): ContactContactEmail;

@@ -33,2 +33,3 @@ "use strict";

'notes': !runtime_1.exists(json, 'notes') ? undefined : json['notes'],
'locked': !runtime_1.exists(json, 'locked') ? undefined : json['locked'],
};

@@ -50,4 +51,5 @@ }

'notes': value.notes,
'locked': value.locked,
};
}
exports.ContactContactEmailToJSON = ContactContactEmailToJSON;

@@ -30,3 +30,3 @@ /**

*/
startDate?: Date;
startDate?: Date | null;
/**

@@ -37,3 +37,3 @@ *

*/
endDate?: Date;
endDate?: Date | null;
/**

@@ -45,2 +45,8 @@ *

status?: FieldValue;
/**
*
* @type {FieldValue}
* @memberof ContactContactMaritalStatus
*/
marriageContract?: FieldValue | null;
}

@@ -47,0 +53,0 @@ export declare function ContactContactMaritalStatusFromJSON(json: any): ContactContactMaritalStatus;

@@ -29,5 +29,6 @@ "use strict";

'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
'startDate': !runtime_1.exists(json, 'startDate') ? undefined : (new Date(json['startDate'])),
'endDate': !runtime_1.exists(json, 'endDate') ? undefined : (new Date(json['endDate'])),
'startDate': !runtime_1.exists(json, 'startDate') ? undefined : (json['startDate'] === null ? null : new Date(json['startDate'])),
'endDate': !runtime_1.exists(json, 'endDate') ? undefined : (json['endDate'] === null ? null : new Date(json['endDate'])),
'status': !runtime_1.exists(json, 'status') ? undefined : _1.FieldValueFromJSON(json['status']),
'marriageContract': !runtime_1.exists(json, 'marriageContract') ? undefined : _1.FieldValueFromJSON(json['marriageContract']),
};

@@ -45,7 +46,8 @@ }

'id': value.id,
'startDate': value.startDate === undefined ? undefined : (value.startDate.toISOString().substr(0, 10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate.toISOString().substr(0, 10)),
'startDate': value.startDate === undefined ? undefined : (value.startDate === null ? null : value.startDate.toISOString().substr(0, 10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate === null ? null : value.endDate.toISOString().substr(0, 10)),
'status': _1.FieldValueToJSON(value.status),
'marriageContract': _1.FieldValueToJSON(value.marriageContract),
};
}
exports.ContactContactMaritalStatusToJSON = ContactContactMaritalStatusToJSON;

@@ -41,3 +41,3 @@ /**

*/
startDate?: Date;
startDate?: Date | null;
/**

@@ -48,3 +48,9 @@ *

*/
endDate?: Date;
endDate?: Date | null;
/**
*
* @type {number}
* @memberof ContactContactOccupation
*/
annualIncome?: number | null;
}

@@ -51,0 +57,0 @@ export declare function ContactContactOccupationFromJSON(json: any): ContactContactOccupation;

@@ -30,4 +30,5 @@ "use strict";

'employer': !runtime_1.exists(json, 'employer') ? undefined : json['employer'],
'startDate': !runtime_1.exists(json, 'startDate') ? undefined : (new Date(json['startDate'])),
'endDate': !runtime_1.exists(json, 'endDate') ? undefined : (new Date(json['endDate'])),
'startDate': !runtime_1.exists(json, 'startDate') ? undefined : (json['startDate'] === null ? null : new Date(json['startDate'])),
'endDate': !runtime_1.exists(json, 'endDate') ? undefined : (json['endDate'] === null ? null : new Date(json['endDate'])),
'annualIncome': !runtime_1.exists(json, 'annualIncome') ? undefined : json['annualIncome'],
};

@@ -47,6 +48,7 @@ }

'employer': value.employer,
'startDate': value.startDate === undefined ? undefined : (value.startDate.toISOString().substr(0, 10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate.toISOString().substr(0, 10)),
'startDate': value.startDate === undefined ? undefined : (value.startDate === null ? null : value.startDate.toISOString().substr(0, 10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate === null ? null : value.endDate.toISOString().substr(0, 10)),
'annualIncome': value.annualIncome,
};
}
exports.ContactContactOccupationToJSON = ContactContactOccupationToJSON;

@@ -61,2 +61,8 @@ /**

notes?: string;
/**
*
* @type {boolean}
* @memberof ContactContactPhone
*/
locked?: boolean;
}

@@ -63,0 +69,0 @@ export declare function ContactContactPhoneFromJSON(json: any): ContactContactPhone;

@@ -35,2 +35,3 @@ "use strict";

'notes': !runtime_1.exists(json, 'notes') ? undefined : json['notes'],
'locked': !runtime_1.exists(json, 'locked') ? undefined : json['locked'],
};

@@ -54,4 +55,5 @@ }

'notes': value.notes,
'locked': value.locked,
};
}
exports.ContactContactPhoneToJSON = ContactContactPhoneToJSON;

@@ -36,2 +36,8 @@ /**

isMain?: boolean;
/**
*
* @type {boolean}
* @memberof ContactContactWebsite
*/
locked?: boolean;
}

@@ -38,0 +44,0 @@ export declare function ContactContactWebsiteFromJSON(json: any): ContactContactWebsite;

@@ -30,2 +30,3 @@ "use strict";

'isMain': !runtime_1.exists(json, 'isMain') ? undefined : json['isMain'],
'locked': !runtime_1.exists(json, 'locked') ? undefined : json['locked'],
};

@@ -45,4 +46,5 @@ }

'isMain': value.isMain,
'locked': value.locked,
};
}
exports.ContactContactWebsiteToJSON = ContactContactWebsiteToJSON;
{
"name": "@equisoft/equisoft-connect-sdk-typescript",
"version": "10.8.2",
"version": "10.8.3-snapshot.20211021175812",
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",

@@ -5,0 +5,0 @@ "author": "OpenAPI-Generator",

@@ -16,2 +16,9 @@ /* tslint:disable */

import { exists, mapValues } from '../runtime';
import {
FieldValue,
FieldValueFromJSON,
FieldValueFromJSONTyped,
FieldValueToJSON,
} from './';
/**

@@ -34,3 +41,3 @@ *

*/
deceasedDate?: Date;
deceasedDate?: Date | null;
/**

@@ -47,3 +54,3 @@ *

*/
smokerEndDate?: Date;
smokerEndDate?: Date | null;
/**

@@ -54,3 +61,33 @@ *

*/
birthDate?: Date;
birthDate?: Date | null;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
facebookLink?: string;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
twitterLink?: string;
/**
*
* @type {string}
* @memberof ContactContactAdditionalInformation
*/
linkedInLink?: string;
/**
*
* @type {FieldValue}
* @memberof ContactContactAdditionalInformation
*/
language?: FieldValue | null;
/**
*
* @type {number}
* @memberof ContactContactAdditionalInformation
*/
pictureId?: number | null;
}

@@ -69,6 +106,11 @@

'isDeceased': !exists(json, 'isDeceased') ? undefined : json['isDeceased'],
'deceasedDate': !exists(json, 'deceasedDate') ? undefined : (new Date(json['deceasedDate'])),
'deceasedDate': !exists(json, 'deceasedDate') ? undefined : (json['deceasedDate'] === null ? null : new Date(json['deceasedDate'])),
'isSmoker': !exists(json, 'isSmoker') ? undefined : json['isSmoker'],
'smokerEndDate': !exists(json, 'smokerEndDate') ? undefined : (new Date(json['smokerEndDate'])),
'birthDate': !exists(json, 'birthDate') ? undefined : (new Date(json['birthDate'])),
'smokerEndDate': !exists(json, 'smokerEndDate') ? undefined : (json['smokerEndDate'] === null ? null : new Date(json['smokerEndDate'])),
'birthDate': !exists(json, 'birthDate') ? undefined : (json['birthDate'] === null ? null : new Date(json['birthDate'])),
'facebookLink': !exists(json, 'facebookLink') ? undefined : json['facebookLink'],
'twitterLink': !exists(json, 'twitterLink') ? undefined : json['twitterLink'],
'linkedInLink': !exists(json, 'linkedInLink') ? undefined : json['linkedInLink'],
'language': !exists(json, 'language') ? undefined : FieldValueFromJSON(json['language']),
'pictureId': !exists(json, 'pictureId') ? undefined : json['pictureId'],
};

@@ -87,6 +129,11 @@ }

'isDeceased': value.isDeceased,
'deceasedDate': value.deceasedDate === undefined ? undefined : (value.deceasedDate.toISOString().substr(0,10)),
'deceasedDate': value.deceasedDate === undefined ? undefined : (value.deceasedDate === null ? null : value.deceasedDate.toISOString().substr(0,10)),
'isSmoker': value.isSmoker,
'smokerEndDate': value.smokerEndDate === undefined ? undefined : (value.smokerEndDate.toISOString().substr(0,10)),
'birthDate': value.birthDate === undefined ? undefined : (value.birthDate.toISOString().substr(0,10)),
'smokerEndDate': value.smokerEndDate === undefined ? undefined : (value.smokerEndDate === null ? null : value.smokerEndDate.toISOString().substr(0,10)),
'birthDate': value.birthDate === undefined ? undefined : (value.birthDate === null ? null : value.birthDate.toISOString().substr(0,10)),
'facebookLink': value.facebookLink,
'twitterLink': value.twitterLink,
'linkedInLink': value.linkedInLink,
'language': FieldValueToJSON(value.language),
'pictureId': value.pictureId,
};

@@ -93,0 +140,0 @@ }

@@ -88,3 +88,3 @@ /* tslint:disable */

*/
dateSince?: Date;
dateSince?: Date | null;
/**

@@ -96,2 +96,8 @@ *

city?: string;
/**
*
* @type {boolean}
* @memberof ContactContactAddress
*/
locked?: boolean;
}

@@ -118,4 +124,5 @@

'postalCode': !exists(json, 'postalCode') ? undefined : json['postalCode'],
'dateSince': !exists(json, 'dateSince') ? undefined : (new Date(json['dateSince'])),
'dateSince': !exists(json, 'dateSince') ? undefined : (json['dateSince'] === null ? null : new Date(json['dateSince'])),
'city': !exists(json, 'city') ? undefined : json['city'],
'locked': !exists(json, 'locked') ? undefined : json['locked'],
};

@@ -142,4 +149,5 @@ }

'postalCode': value.postalCode,
'dateSince': value.dateSince === undefined ? undefined : (value.dateSince.toISOString().substr(0,10)),
'dateSince': value.dateSince === undefined ? undefined : (value.dateSince === null ? null : value.dateSince.toISOString().substr(0,10)),
'city': value.city,
'locked': value.locked,
};

@@ -146,0 +154,0 @@ }

@@ -59,2 +59,8 @@ /* tslint:disable */

notes?: string;
/**
*
* @type {boolean}
* @memberof ContactContactEmail
*/
locked?: boolean;
}

@@ -77,2 +83,3 @@

'notes': !exists(json, 'notes') ? undefined : json['notes'],
'locked': !exists(json, 'locked') ? undefined : json['locked'],
};

@@ -95,2 +102,3 @@ }

'notes': value.notes,
'locked': value.locked,
};

@@ -97,0 +105,0 @@ }

@@ -40,3 +40,3 @@ /* tslint:disable */

*/
startDate?: Date;
startDate?: Date | null;
/**

@@ -47,3 +47,3 @@ *

*/
endDate?: Date;
endDate?: Date | null;
/**

@@ -55,2 +55,8 @@ *

status?: FieldValue;
/**
*
* @type {FieldValue}
* @memberof ContactContactMaritalStatus
*/
marriageContract?: FieldValue | null;
}

@@ -69,5 +75,6 @@

'id': !exists(json, 'id') ? undefined : json['id'],
'startDate': !exists(json, 'startDate') ? undefined : (new Date(json['startDate'])),
'endDate': !exists(json, 'endDate') ? undefined : (new Date(json['endDate'])),
'startDate': !exists(json, 'startDate') ? undefined : (json['startDate'] === null ? null : new Date(json['startDate'])),
'endDate': !exists(json, 'endDate') ? undefined : (json['endDate'] === null ? null : new Date(json['endDate'])),
'status': !exists(json, 'status') ? undefined : FieldValueFromJSON(json['status']),
'marriageContract': !exists(json, 'marriageContract') ? undefined : FieldValueFromJSON(json['marriageContract']),
};

@@ -86,5 +93,6 @@ }

'id': value.id,
'startDate': value.startDate === undefined ? undefined : (value.startDate.toISOString().substr(0,10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate.toISOString().substr(0,10)),
'startDate': value.startDate === undefined ? undefined : (value.startDate === null ? null : value.startDate.toISOString().substr(0,10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate === null ? null : value.endDate.toISOString().substr(0,10)),
'status': FieldValueToJSON(value.status),
'marriageContract': FieldValueToJSON(value.marriageContract),
};

@@ -91,0 +99,0 @@ }

@@ -45,3 +45,3 @@ /* tslint:disable */

*/
startDate?: Date;
startDate?: Date | null;
/**

@@ -52,3 +52,9 @@ *

*/
endDate?: Date;
endDate?: Date | null;
/**
*
* @type {number}
* @memberof ContactContactOccupation
*/
annualIncome?: number | null;
}

@@ -69,4 +75,5 @@

'employer': !exists(json, 'employer') ? undefined : json['employer'],
'startDate': !exists(json, 'startDate') ? undefined : (new Date(json['startDate'])),
'endDate': !exists(json, 'endDate') ? undefined : (new Date(json['endDate'])),
'startDate': !exists(json, 'startDate') ? undefined : (json['startDate'] === null ? null : new Date(json['startDate'])),
'endDate': !exists(json, 'endDate') ? undefined : (json['endDate'] === null ? null : new Date(json['endDate'])),
'annualIncome': !exists(json, 'annualIncome') ? undefined : json['annualIncome'],
};

@@ -87,4 +94,5 @@ }

'employer': value.employer,
'startDate': value.startDate === undefined ? undefined : (value.startDate.toISOString().substr(0,10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate.toISOString().substr(0,10)),
'startDate': value.startDate === undefined ? undefined : (value.startDate === null ? null : value.startDate.toISOString().substr(0,10)),
'endDate': value.endDate === undefined ? undefined : (value.endDate === null ? null : value.endDate.toISOString().substr(0,10)),
'annualIncome': value.annualIncome,
};

@@ -91,0 +99,0 @@ }

@@ -71,2 +71,8 @@ /* tslint:disable */

notes?: string;
/**
*
* @type {boolean}
* @memberof ContactContactPhone
*/
locked?: boolean;
}

@@ -91,2 +97,3 @@

'notes': !exists(json, 'notes') ? undefined : json['notes'],
'locked': !exists(json, 'locked') ? undefined : json['locked'],
};

@@ -111,2 +118,3 @@ }

'notes': value.notes,
'locked': value.locked,
};

@@ -113,0 +121,0 @@ }

@@ -40,2 +40,8 @@ /* tslint:disable */

isMain?: boolean;
/**
*
* @type {boolean}
* @memberof ContactContactWebsite
*/
locked?: boolean;
}

@@ -56,2 +62,3 @@

'isMain': !exists(json, 'isMain') ? undefined : json['isMain'],
'locked': !exists(json, 'locked') ? undefined : json['locked'],
};

@@ -72,2 +79,3 @@ }

'isMain': value.isMain,
'locked': value.locked,
};

@@ -74,0 +82,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc