@leavittsoftware/lg-core-typescript 2.0.417 → 2.0.418
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/lg.net.core.js +5 -0
- package/lg.net.core.ts +78 -0
- package/package.json +1 -1
package/lg.net.core.js
CHANGED
|
@@ -114,6 +114,11 @@ export var ActivityType;
|
|
|
114
114
|
ActivityType[ActivityType["Surveyinvite"] = 10158] = "Surveyinvite";
|
|
115
115
|
ActivityType[ActivityType["Surveyresponse"] = 10159] = "Surveyresponse";
|
|
116
116
|
})(ActivityType || (ActivityType = {}));
|
|
117
|
+
export var CompanyLogoTypes;
|
|
118
|
+
(function (CompanyLogoTypes) {
|
|
119
|
+
CompanyLogoTypes[CompanyLogoTypes["Logo"] = 0] = "Logo";
|
|
120
|
+
CompanyLogoTypes[CompanyLogoTypes["Mark"] = 1] = "Mark";
|
|
121
|
+
})(CompanyLogoTypes || (CompanyLogoTypes = {}));
|
|
117
122
|
export var ConnectedStatus;
|
|
118
123
|
(function (ConnectedStatus) {
|
|
119
124
|
ConnectedStatus[ConnectedStatus["NotDiscussed"] = 0] = "NotDiscussed";
|
package/lg.net.core.ts
CHANGED
|
@@ -841,6 +841,7 @@ export interface Company {
|
|
|
841
841
|
Ams360Instance: Partial<Ams360Instance> | null;
|
|
842
842
|
BookOfBusinessChanges: Array<Partial<BookOfBusinessChange>> | null;
|
|
843
843
|
CompanyDivisions: Array<Partial<CompanyDivision>> | null;
|
|
844
|
+
CompanyLogos: Array<Partial<CompanyLogo>> | null;
|
|
844
845
|
CompanyNames: Array<Partial<CompanyName>> | null;
|
|
845
846
|
CompanyOwnerships: Array<Partial<CompanyOwnership>> | null;
|
|
846
847
|
CompanyTeams: Array<Partial<CompanyTeam>> | null;
|
|
@@ -864,6 +865,7 @@ export interface Company {
|
|
|
864
865
|
PhoneNumbers: Array<Partial<PhoneNumber>> | null;
|
|
865
866
|
Roles: Array<Partial<CompanyRole>> | null;
|
|
866
867
|
Services: Array<Partial<ServiceToCompany>> | null;
|
|
868
|
+
SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>> | null;
|
|
867
869
|
StartDate: string;
|
|
868
870
|
Stationeries: Array<Partial<Stationery>> | null;
|
|
869
871
|
TimelineTemplateToCompanies: Array<Partial<TimelineTemplateToCompany>> | null;
|
|
@@ -1515,6 +1517,8 @@ export interface Person {
|
|
|
1515
1517
|
SalesExpectationStatusReviewers: Array<Partial<SalesExpectationStatus>> | null;
|
|
1516
1518
|
SalesExpectationStatusReviewRequesters: Array<Partial<SalesExpectationStatus>> | null;
|
|
1517
1519
|
SessionSpeakers: Array<Partial<SessionSpeaker>> | null;
|
|
1520
|
+
Signatures: Array<Partial<Signature>> | null;
|
|
1521
|
+
SignatureTemplates: Array<Partial<SignatureTemplate>> | null;
|
|
1518
1522
|
SnapshotViewerships: Array<Partial<SnapshotViewership>> | null;
|
|
1519
1523
|
SnapshotViewershipToPeople: Array<Partial<SnapshotViewershipToPerson>> | null;
|
|
1520
1524
|
SnapshotViewershipToPeopleGroups: Array<Partial<SnapshotViewershipToPeopleGroup>> | null;
|
|
@@ -4252,6 +4256,59 @@ export interface PersonMondayAccount {
|
|
|
4252
4256
|
Person: Partial<Person> | null;
|
|
4253
4257
|
}
|
|
4254
4258
|
|
|
4259
|
+
export interface Signature {
|
|
4260
|
+
Id: number;
|
|
4261
|
+
Name: string | null;
|
|
4262
|
+
Person: Partial<Person> | null;
|
|
4263
|
+
PersonId: number;
|
|
4264
|
+
SignatureTemplate: Partial<SignatureTemplate> | null;
|
|
4265
|
+
SignatureTemplateId: number;
|
|
4266
|
+
SignatureValues: Array<Partial<SignatureValue>> | null;
|
|
4267
|
+
UpdatedDate: string | null;
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
export interface SignatureTemplate {
|
|
4271
|
+
CreatedByPerson: Partial<Person> | null;
|
|
4272
|
+
CreatedByPersonId: number;
|
|
4273
|
+
CreatedDate: string;
|
|
4274
|
+
Id: number;
|
|
4275
|
+
IsActive: boolean;
|
|
4276
|
+
IsAvailableToAll: boolean;
|
|
4277
|
+
Name: string | null;
|
|
4278
|
+
Signatures: Array<Partial<Signature>> | null;
|
|
4279
|
+
SignatureTemplateThumbnail: Partial<SignatureTemplateThumbnail> | null;
|
|
4280
|
+
SignatureTemplateToCompanies: Array<Partial<SignatureTemplateToCompany>> | null;
|
|
4281
|
+
TemplateWebComponentName: string | null;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
export interface SignatureTemplateThumbnail {
|
|
4285
|
+
CdnFileName: string | null;
|
|
4286
|
+
CreatedDate: string;
|
|
4287
|
+
Extension: string | null;
|
|
4288
|
+
Id: number;
|
|
4289
|
+
Name: string | null;
|
|
4290
|
+
PreviewExtension: string | null;
|
|
4291
|
+
PreviewSizes: string | null;
|
|
4292
|
+
SignatureTemplate: Partial<SignatureTemplate> | null;
|
|
4293
|
+
Size: number;
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
export interface SignatureTemplateToCompany {
|
|
4297
|
+
Company: Partial<Company> | null;
|
|
4298
|
+
CompanyId: number;
|
|
4299
|
+
Id: number;
|
|
4300
|
+
SignatureTemplate: Partial<SignatureTemplate> | null;
|
|
4301
|
+
SignatureTemplateId: number;
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4304
|
+
export interface SignatureValue {
|
|
4305
|
+
Id: number;
|
|
4306
|
+
Key: string | null;
|
|
4307
|
+
Signature: Partial<Signature> | null;
|
|
4308
|
+
SignatureId: number | null;
|
|
4309
|
+
Value: string | null;
|
|
4310
|
+
}
|
|
4311
|
+
|
|
4255
4312
|
export interface CrmActivityPlanner {
|
|
4256
4313
|
ActivityPlannerId: string;
|
|
4257
4314
|
ActivityPlannerName: string | null;
|
|
@@ -4359,6 +4416,20 @@ export interface CompanyAddress extends Address {
|
|
|
4359
4416
|
LGEmployeeRoleToCompanyAddresses: Array<Partial<LGEmployeeRoleToCompanyAddress>> | null;
|
|
4360
4417
|
}
|
|
4361
4418
|
|
|
4419
|
+
export interface CompanyLogo {
|
|
4420
|
+
CdnFileName: string | null;
|
|
4421
|
+
Company: Partial<Company> | null;
|
|
4422
|
+
CompanyId: number | null;
|
|
4423
|
+
CreatedDate: string;
|
|
4424
|
+
Extension: string | null;
|
|
4425
|
+
Id: number;
|
|
4426
|
+
Name: string | null;
|
|
4427
|
+
PreviewExtension: string | null;
|
|
4428
|
+
PreviewSizes: string | null;
|
|
4429
|
+
Size: number;
|
|
4430
|
+
Type: CompanyLogoTypesString;
|
|
4431
|
+
}
|
|
4432
|
+
|
|
4362
4433
|
export interface CompanyRole extends Role {
|
|
4363
4434
|
ClosureType: Partial<CompanyRoleClosureType> | null;
|
|
4364
4435
|
Company: Partial<Company> | null;
|
|
@@ -4630,6 +4701,13 @@ export enum ActivityType {
|
|
|
4630
4701
|
|
|
4631
4702
|
export type ActivityTypeString = keyof typeof ActivityType;
|
|
4632
4703
|
|
|
4704
|
+
export enum CompanyLogoTypes {
|
|
4705
|
+
Logo = 0,
|
|
4706
|
+
Mark = 1
|
|
4707
|
+
}
|
|
4708
|
+
|
|
4709
|
+
export type CompanyLogoTypesString = keyof typeof CompanyLogoTypes;
|
|
4710
|
+
|
|
4633
4711
|
export enum ConnectedStatus {
|
|
4634
4712
|
NotDiscussed = 0,
|
|
4635
4713
|
ChampionMeeting = 1,
|