linkedin-api-voyager 1.3.0 → 1.3.1

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/lib/types.d.ts ADDED
@@ -0,0 +1,794 @@
1
+ export interface ProfileView {
2
+ entityUrn: string;
3
+ profile: ProfileViewProfile;
4
+ positionGroupView: PositionGroupView;
5
+ positionView: PositionView;
6
+ patentView: PatentView;
7
+ summaryTreasuryMediaCount: number;
8
+ summaryTreasuryMedias: any[];
9
+ educationView: EducationView;
10
+ organizationView: OrganizationView;
11
+ projectView: ProjectView;
12
+ languageView: LanguageView;
13
+ certificationView: CertificationView;
14
+ testScoreView: TestScoreView;
15
+ volunteerCauseView: VolunteerCauseView;
16
+ courseView: CourseView;
17
+ honorView: HonorView;
18
+ skillView: SkillView;
19
+ volunteerExperienceView: VolunteerExperienceView;
20
+ primaryLocale: PrimaryLocale;
21
+ publicationView: PublicationView;
22
+ }
23
+ export interface PositionGroupView {
24
+ entityUrn: string;
25
+ profileId: string;
26
+ elements: Element[];
27
+ paging: Paging;
28
+ }
29
+ export interface Paging {
30
+ start: number;
31
+ count: number;
32
+ total: number;
33
+ links: any[];
34
+ }
35
+ export interface Element {
36
+ entityUrn: string;
37
+ name: string;
38
+ positions?: Position[];
39
+ paging?: Paging;
40
+ timePeriod?: TimePeriod;
41
+ miniCompany?: MiniCompany;
42
+ }
43
+ export interface TimePeriod {
44
+ startDate?: LIDate;
45
+ endDate?: LIDate;
46
+ }
47
+ export interface LIDate {
48
+ month?: number;
49
+ year?: number;
50
+ }
51
+ export interface Position {
52
+ entityUrn: string;
53
+ companyName: string;
54
+ timePeriod: TimePeriod;
55
+ description?: string;
56
+ title: string;
57
+ companyUrn: string;
58
+ company?: Company;
59
+ locationName?: string;
60
+ geoLocationName?: string;
61
+ geoUrn?: string;
62
+ region?: string;
63
+ }
64
+ export interface Company {
65
+ miniCompany: MiniCompany;
66
+ employeeCountRange: EmployeeCountRange;
67
+ industries: string[];
68
+ }
69
+ export interface MiniCompany {
70
+ objectUrn: string;
71
+ entityUrn: string;
72
+ name: string;
73
+ showcase: boolean;
74
+ active: boolean;
75
+ logo: LinkedVectorImage;
76
+ universalName: string;
77
+ dashCompanyUrn: string;
78
+ trackingId: string;
79
+ }
80
+ export interface VectorImage {
81
+ artifacts: Artifact[];
82
+ rootUrl: string;
83
+ }
84
+ export interface Artifact {
85
+ fileIdentifyingUrlPathSegment: string;
86
+ width: number;
87
+ height: number;
88
+ expiresAt: number;
89
+ $recipeTypes?: string[];
90
+ $type?: string;
91
+ }
92
+ export interface EmployeeCountRange {
93
+ start: number;
94
+ end?: number;
95
+ }
96
+ export interface PatentView {
97
+ paging: Paging;
98
+ entityUrn: string;
99
+ profileId: string;
100
+ elements: any[];
101
+ }
102
+ export interface EducationView {
103
+ paging: Paging;
104
+ entityUrn: string;
105
+ profileId: string;
106
+ elements: {
107
+ entityUrn: string;
108
+ school?: MiniSchool;
109
+ timePeriod: TimePeriod;
110
+ degreeName: string;
111
+ schoolName: string;
112
+ fieldOfStudy?: string;
113
+ schoolUrn?: string;
114
+ }[];
115
+ }
116
+ export interface MiniSchool {
117
+ objectUrn: string;
118
+ entityUrn: string;
119
+ active: boolean;
120
+ logo: LinkedVectorImage;
121
+ schoolName: string;
122
+ trackingId: string;
123
+ }
124
+ export interface OrganizationView {
125
+ paging: Paging;
126
+ entityUrn: string;
127
+ profileId: string;
128
+ elements: any[];
129
+ }
130
+ export interface ProjectView {
131
+ paging: Paging;
132
+ entityUrn: string;
133
+ profileId: string;
134
+ elements: any[];
135
+ }
136
+ export interface PositionView {
137
+ paging: Paging;
138
+ entityUrn: string;
139
+ profileId: string;
140
+ elements: {
141
+ entityUrn: string;
142
+ title: string;
143
+ description?: string;
144
+ timePeriod: TimePeriod;
145
+ companyUrn: string;
146
+ companyName: string;
147
+ company?: Company;
148
+ locationName?: string;
149
+ geoLocationName?: string;
150
+ geoUrn?: string;
151
+ region?: string;
152
+ }[];
153
+ }
154
+ export interface ProfileViewProfile {
155
+ entityUrn: string;
156
+ firstName: string;
157
+ lastName: string;
158
+ headline: string;
159
+ summary: string;
160
+ locationName: string;
161
+ location: Location;
162
+ miniProfile: MiniProfile;
163
+ industryName: string;
164
+ industryUrn: string;
165
+ versionTag: string;
166
+ defaultLocale: DefaultLocale;
167
+ supportedLocales: SupportedLocale[];
168
+ geoCountryName: string;
169
+ geoCountryUrn: string;
170
+ elt: boolean;
171
+ student: boolean;
172
+ geoLocationBackfilled: boolean;
173
+ showEducationOnProfileTopCard: boolean;
174
+ geoLocation: GeoLocation;
175
+ geoLocationName: string;
176
+ }
177
+ export interface SupportedLocale {
178
+ country: string;
179
+ language: string;
180
+ }
181
+ export interface DefaultLocale {
182
+ country: string;
183
+ language: string;
184
+ }
185
+ export interface GeoLocation {
186
+ geoUrn: string;
187
+ }
188
+ export interface Location {
189
+ basicLocation: BasicLocation;
190
+ }
191
+ export interface BasicLocation {
192
+ countryCode: string;
193
+ }
194
+ export interface MiniProfile {
195
+ entityUrn: string;
196
+ firstName: string;
197
+ lastName: string;
198
+ occupation: string;
199
+ dashEntityUrn: string;
200
+ objectUrn: string;
201
+ publicIdentifier: string;
202
+ trackingId: string;
203
+ backgroundImage?: LinkedVectorImage;
204
+ picture?: LinkedVectorImage;
205
+ }
206
+ export interface LinkedVectorImage {
207
+ "com.linkedin.common.VectorImage": VectorImage;
208
+ }
209
+ export interface LinkedMediaProcessorImage {
210
+ "com.linkedin.voyager.common.MediaProcessorImage": {
211
+ id: string;
212
+ };
213
+ }
214
+ export interface LanguageView {
215
+ paging: Paging;
216
+ entityUrn: string;
217
+ profileId: string;
218
+ elements: any[];
219
+ }
220
+ export interface CertificationView {
221
+ paging: Paging;
222
+ entityUrn: string;
223
+ profileId: string;
224
+ elements: any[];
225
+ }
226
+ export interface TestScoreView {
227
+ paging: Paging;
228
+ entityUrn: string;
229
+ profileId: string;
230
+ elements: any[];
231
+ }
232
+ export interface VolunteerCauseView {
233
+ paging: Paging;
234
+ entityUrn: string;
235
+ profileId: string;
236
+ elements: any[];
237
+ }
238
+ export interface CourseView {
239
+ paging: Paging;
240
+ entityUrn: string;
241
+ profileId: string;
242
+ elements: any[];
243
+ }
244
+ export interface HonorView {
245
+ paging: Paging;
246
+ entityUrn: string;
247
+ profileId: string;
248
+ elements: any[];
249
+ }
250
+ export interface SkillView {
251
+ paging: Paging;
252
+ entityUrn: string;
253
+ profileId: string;
254
+ elements: Element[];
255
+ }
256
+ export interface VolunteerExperienceView {
257
+ paging: Paging;
258
+ entityUrn: string;
259
+ profileId: string;
260
+ elements: any[];
261
+ }
262
+ export interface PrimaryLocale {
263
+ country: string;
264
+ language: string;
265
+ }
266
+ export interface PublicationView {
267
+ paging: Paging;
268
+ entityUrn: string;
269
+ profileId: string;
270
+ elements: any[];
271
+ }
272
+ export interface Profile {
273
+ entityUrn: string;
274
+ id: string;
275
+ publicIdentifier: string;
276
+ firstName: string;
277
+ lastName: string;
278
+ headline: string;
279
+ summary: string;
280
+ occupation: string;
281
+ location: string;
282
+ industryName: string;
283
+ industryUrn: string;
284
+ trackingId: string;
285
+ defaultLocale: DefaultLocale;
286
+ backgroundImage?: string;
287
+ image?: string;
288
+ education?: PagedList<EducationItem>;
289
+ experience?: PagedList<ExperienceItem>;
290
+ }
291
+ export type PagedList<T> = {
292
+ paging: PagingResponse;
293
+ elements: T[];
294
+ };
295
+ export type EducationItem = {
296
+ entityUrn?: string;
297
+ schoolName: string;
298
+ degreeName?: string;
299
+ fieldOfStudy?: string;
300
+ startDate?: string;
301
+ endDate?: string;
302
+ school: {
303
+ name: string;
304
+ entityUrn?: string;
305
+ id?: string;
306
+ active?: boolean;
307
+ logo?: string;
308
+ };
309
+ };
310
+ export type ExperienceItem = {
311
+ entityUrn?: string;
312
+ title: string;
313
+ companyName?: string;
314
+ description?: string;
315
+ location?: string;
316
+ employmentType?: string;
317
+ duration?: string;
318
+ startDate?: string;
319
+ endDate?: string;
320
+ company: {
321
+ name: string;
322
+ entityUrn?: string;
323
+ id?: string;
324
+ publicIdentifier?: string;
325
+ industry?: string;
326
+ logo?: string;
327
+ employeeCountRange?: EmployeeCountRange;
328
+ };
329
+ };
330
+ export type ProfileContactInfo = {
331
+ entityUrn: string;
332
+ websites?: Array<{
333
+ type: Record<string, {
334
+ category: string;
335
+ }>;
336
+ url: string;
337
+ }>;
338
+ twitterHandles?: Array<{
339
+ name: string;
340
+ credentialId: string;
341
+ }>;
342
+ emailAddress?: any[];
343
+ phoneNumbers?: any[];
344
+ ims?: any[];
345
+ birthDateOn?: any;
346
+ };
347
+ export type ProfileSkills = {
348
+ paging: Paging;
349
+ elements: Element[];
350
+ };
351
+ export type SelfProfile = {
352
+ plainId: number;
353
+ miniProfile: MiniProfile;
354
+ publicContactInfo?: any;
355
+ premiumSubscriber: boolean;
356
+ };
357
+ export type Industry = {
358
+ localizedName: string;
359
+ entityUrn: string;
360
+ };
361
+ export type FollowingInfo = {
362
+ entityUrn: string;
363
+ following: boolean;
364
+ dashFollowingStateUrn: string;
365
+ followingType: string;
366
+ followerCount: number;
367
+ };
368
+ export type RawAffiliatedCompany = {
369
+ entityUrn: string;
370
+ name: string;
371
+ universalName: string;
372
+ url: string;
373
+ description: string;
374
+ followingInfo: FollowingInfo;
375
+ companyIndustries: Array<Industry>;
376
+ school: string;
377
+ logo: {
378
+ image: LinkedVectorImage;
379
+ type: string;
380
+ };
381
+ paidCompany: boolean;
382
+ showcase: boolean;
383
+ $recipeType: string;
384
+ };
385
+ export type AffiliatedCompany = Omit<RawAffiliatedCompany, "universalName" | "logo" | "$recipeType" | "followingInfo" | "showcase" | "paidCompany"> & {
386
+ id: string;
387
+ publicIdentifier: string;
388
+ logo?: string;
389
+ numFollowers?: number;
390
+ };
391
+ export type RawAssociatedHashtag = {
392
+ entityUrn: string;
393
+ feedTopic: {
394
+ topic: {
395
+ name: string;
396
+ trending: boolean;
397
+ recommendationTrackingId: string;
398
+ useCase: string;
399
+ backendUrn: string;
400
+ };
401
+ entityUrn: string;
402
+ tracking: {
403
+ trackingId: string;
404
+ };
405
+ };
406
+ $recipeType: string;
407
+ followAction: {
408
+ followingInfo: FollowingInfo;
409
+ unfollowTrackingActionType: string;
410
+ followTrackingActionType: string;
411
+ trackingActionType: string;
412
+ type: string;
413
+ };
414
+ };
415
+ export type FundingData = {
416
+ fundingRoundListCrunchbaseUrl: string;
417
+ lastFundingRound: {
418
+ investorsCrunchbaseUrl: string;
419
+ leadInvestors: Array<{
420
+ name: {
421
+ text: string;
422
+ };
423
+ investorCrunchbaseUrl: string;
424
+ image: {
425
+ attributes: Array<{
426
+ sourceType: string;
427
+ imageUrl: string;
428
+ }>;
429
+ };
430
+ }>;
431
+ fundingRoundCrunchbaseUrl: string;
432
+ fundingType: string;
433
+ moneyRaised: {
434
+ currencyCode: string;
435
+ amount: string;
436
+ };
437
+ numOtherInvestors: number;
438
+ announcedOn: {
439
+ month: number;
440
+ day: number;
441
+ year: number;
442
+ };
443
+ };
444
+ companyCrunchbaseUrl: string;
445
+ numFundingRounds: number;
446
+ updatedAt: number;
447
+ };
448
+ export type RawGroup = {
449
+ groupName: string;
450
+ entityUrn: string;
451
+ memberCount: number;
452
+ logo: LinkedVectorImage;
453
+ url: string;
454
+ $recipeType: string;
455
+ };
456
+ export type Group = Omit<RawGroup, "logo" | "$recipeType"> & {
457
+ id: string;
458
+ logo?: string;
459
+ };
460
+ export type RawShowcasePage = {
461
+ entityUrn: string;
462
+ name: string;
463
+ universalName: string;
464
+ description: string;
465
+ url: string;
466
+ followingInfo: {
467
+ entityUrn: string;
468
+ following: boolean;
469
+ dashFollowingStateUrn: string;
470
+ followingType: string;
471
+ followerCount: number;
472
+ };
473
+ companyIndustries: Array<Industry>;
474
+ logo: {
475
+ image: LinkedVectorImage;
476
+ type: string;
477
+ };
478
+ paidCompany: boolean;
479
+ showcase: boolean;
480
+ $recipeType: string;
481
+ };
482
+ export type ShowcasePage = Omit<RawShowcasePage, "universalName" | "logo" | "$recipeType" | "followingInfo" | "showcase" | "paidCompany"> & {
483
+ id: string;
484
+ publicIdentifier: string;
485
+ logo?: string;
486
+ numFollowers?: number;
487
+ };
488
+ /** School or Company */
489
+ export type RawOrganization = {
490
+ name: string;
491
+ universalName: string;
492
+ tagline: string;
493
+ description: string;
494
+ entityUrn: string;
495
+ url: string;
496
+ staffingCompany: boolean;
497
+ companyIndustries: Array<Industry>;
498
+ staffCount: number;
499
+ callToAction?: {
500
+ callToActionType: string;
501
+ visible: boolean;
502
+ callToActionMessage: {
503
+ textDirection: string;
504
+ text: string;
505
+ };
506
+ url: string;
507
+ };
508
+ companyEmployeesSearchPageUrl: string;
509
+ viewerFollowingJobsUpdates: boolean;
510
+ school?: string;
511
+ staffCountRange: EmployeeCountRange;
512
+ permissions: {
513
+ landingPageAdmin: boolean;
514
+ admin: boolean;
515
+ adAccountHolder: boolean;
516
+ };
517
+ logo: {
518
+ image: LinkedVectorImage;
519
+ type: string;
520
+ };
521
+ claimable: boolean;
522
+ specialities: Array<string>;
523
+ confirmedLocations: Array<FullLocation>;
524
+ followingInfo: FollowingInfo;
525
+ viewerEmployee: boolean;
526
+ lcpTreatment: boolean;
527
+ phone?: {
528
+ number: string;
529
+ };
530
+ $recipeType: string;
531
+ fundingData: FundingData;
532
+ overviewPhoto: LinkedMediaProcessorImage;
533
+ coverPhoto: LinkedMediaProcessorImage;
534
+ multiLocaleTaglines: {
535
+ localized: {
536
+ en_US: string;
537
+ };
538
+ preferredLocale: {
539
+ country: string;
540
+ language: string;
541
+ };
542
+ };
543
+ headquarter?: FullLocation;
544
+ paidCompany: boolean;
545
+ viewerPendingAdministrator: boolean;
546
+ companyPageUrl: string;
547
+ viewerConnectedToAdministrator: boolean;
548
+ dataVersion: number;
549
+ foundedOn: {
550
+ year: number;
551
+ };
552
+ companyType: {
553
+ localizedName: string;
554
+ code: string;
555
+ };
556
+ claimableByViewer: boolean;
557
+ jobSearchPageUrl: string;
558
+ showcase: boolean;
559
+ autoGenerated: boolean;
560
+ backgroundCoverImage?: {
561
+ image: LinkedVectorImage;
562
+ cropInfo: {
563
+ x: number;
564
+ y: number;
565
+ width: number;
566
+ height: number;
567
+ };
568
+ };
569
+ affiliatedCompanies: Array<string>;
570
+ affiliatedCompaniesResolutionResults?: Record<string, RawAffiliatedCompany>;
571
+ affiliatedCompaniesWithEmployeesRollup: Array<string>;
572
+ affiliatedCompaniesWithJobsRollup: Array<string>;
573
+ associatedHashtags: Array<string>;
574
+ associatedHashtagsResolutionResults?: Record<string, RawAssociatedHashtag>;
575
+ groups: Array<string>;
576
+ groupsResolutionResults?: Record<string, RawGroup>;
577
+ showcasePages: Array<string>;
578
+ showcasePagesResolutionResults?: Record<string, RawShowcasePage>;
579
+ };
580
+ export type RawOrganizationResponse = {
581
+ elements: Array<RawOrganization>;
582
+ };
583
+ /** School or Company */
584
+ export type Organization = Omit<RawOrganization, "universalName" | "logo" | "backgroundCoverImage" | "coverPhoto" | "overviewPhoto" | "$recipeType" | "callToAction" | "phone" | "permissions" | "followingInfo" | "adsRule" | "autoGenerated" | "lcpTreatment" | "staffingCompany" | "showcase" | "paidCompany" | "claimable" | "claimableByViewer" | "viewerPendingAdministrator" | "viewerConnectedToAdministrator" | "viewerFollowingJobsUpdates" | "viewerEmployee" | "associatedHashtags" | "associatedHashtagsResolutionResults" | "affiliatedCompaniesResolutionResults" | "groupsResolutionResults" | "showcasePagesResolutionResults"> & {
585
+ id: string;
586
+ publicIdentifier: string;
587
+ logo?: string;
588
+ backgroundCoverImage?: string;
589
+ coverPhoto?: string;
590
+ overviewPhoto?: string;
591
+ callToActionUrl?: string;
592
+ phone?: string;
593
+ numFollowers?: number;
594
+ affiliatedCompaniesResolutionResults: Record<string, AffiliatedCompany>;
595
+ groupsResolutionResults: Record<string, Group>;
596
+ showcasePagesResolutionResults: Record<string, ShowcasePage>;
597
+ };
598
+ export type NetworkDepth = "F" | "S" | "O";
599
+ export type ISearchParams = {
600
+ offset?: number;
601
+ limit?: number;
602
+ filters?: string;
603
+ query?: string;
604
+ };
605
+ export type ISearchPeopleParams = Omit<ISearchParams, "filters"> & {
606
+ connectionOf?: string;
607
+ networkDepths?: NetworkDepth[];
608
+ currentCompany?: string[];
609
+ pastCompanies?: string[];
610
+ nonprofitInterests?: string[];
611
+ profileLanguages?: string[];
612
+ regions?: string[];
613
+ industries?: string[];
614
+ schools?: string[];
615
+ contactInterests?: string[];
616
+ serviceCategories?: string[];
617
+ includePrivateProfiles?: boolean;
618
+ keywordFirstName?: string;
619
+ keywordLastName?: string;
620
+ keywordTitle?: string;
621
+ keywordCompany?: string;
622
+ keywordSchool?: string;
623
+ /** @deprecated use `networkDepths` instead. */
624
+ networkDepth?: NetworkDepth;
625
+ /** @deprecated Use `keywordTitle` instead. */
626
+ title?: string;
627
+ };
628
+ export type SearchCompaniesParams = Omit<ISearchParams, "filters">;
629
+ export interface ProfileSearchResult {
630
+ urnId: string;
631
+ name: string;
632
+ url: string;
633
+ image?: string;
634
+ distance?: string;
635
+ headline?: string;
636
+ location?: string;
637
+ summary?: string;
638
+ }
639
+ export interface CompanySearchResult {
640
+ urnId: string;
641
+ name: string;
642
+ url: string;
643
+ image?: string;
644
+ industry?: string;
645
+ location?: string;
646
+ numFollowers?: string;
647
+ summary?: string;
648
+ }
649
+ export interface PagingResponse {
650
+ offset: number;
651
+ count: number;
652
+ total: number;
653
+ }
654
+ export interface SearchResponse {
655
+ paging: PagingResponse;
656
+ results: EntitySearchResult[];
657
+ }
658
+ export interface ISearchPeopleResponse {
659
+ paging: PagingResponse;
660
+ results: ProfileSearchResult[];
661
+ }
662
+ export interface SearchCompaniesResponse {
663
+ paging: PagingResponse;
664
+ results: CompanySearchResult[];
665
+ }
666
+ export interface TextData {
667
+ textDirection: string;
668
+ text: string;
669
+ attributesV2: Array<any>;
670
+ accessibilityTextAttributesV2: Array<any>;
671
+ accessibilityText: string;
672
+ $recipeTypes: Array<string>;
673
+ $type: string;
674
+ }
675
+ export type FullLocation = {
676
+ country: string;
677
+ geographicArea: string;
678
+ city: string;
679
+ postalCode: string;
680
+ line1: string;
681
+ headquarter?: boolean;
682
+ streetAddressOptOut?: boolean;
683
+ };
684
+ export type ImageViewModel = {
685
+ attributes: Array<{
686
+ scalingType: any;
687
+ detailData: {
688
+ imageUrl: any;
689
+ icon: string;
690
+ systemImage: any;
691
+ vectorImage: any;
692
+ ghostImage: any;
693
+ profilePicture: any;
694
+ profilePictureWithoutFrame: any;
695
+ profilePictureWithRingStatus: any;
696
+ companyLogo: any;
697
+ professionalEventLogo: any;
698
+ groupLogo: any;
699
+ schoolLogo: any;
700
+ nonEntityGroupLogo?: any;
701
+ nonEntityProfessionalEventLogo?: any;
702
+ nonEntityCompanyLogo?: any;
703
+ nonEntitySchoolLogo?: any;
704
+ nonEntityProfilePicture?: any;
705
+ };
706
+ tintColor: any;
707
+ $recipeTypes: Array<string>;
708
+ tapTargets: Array<any>;
709
+ displayAspectRatio: any;
710
+ $type: string;
711
+ }>;
712
+ editableAccessibilityText: boolean;
713
+ actionTarget: any;
714
+ accessibilityTextAttributes: Array<any>;
715
+ totalCount: any;
716
+ accessibilityText: any;
717
+ $recipeTypes: Array<string>;
718
+ $type: string;
719
+ };
720
+ export type EntitySearchResult = {
721
+ $type: string;
722
+ entityUrn: string;
723
+ title: TextData;
724
+ summary: TextData;
725
+ primarySubtitle: TextData;
726
+ secondarySubtitle: TextData;
727
+ badgeText: TextData;
728
+ navigationUrl: string;
729
+ template: string;
730
+ actorNavigationContext: any;
731
+ bserpEntityNavigationalUrl: string;
732
+ trackingUrn: string;
733
+ controlName: any;
734
+ interstitialComponent: any;
735
+ primaryActions: Array<any>;
736
+ entityCustomTrackingInfo: {
737
+ memberDistance: string;
738
+ privacySettingsInjectionHolder: any;
739
+ $recipeTypes: Array<string>;
740
+ nameMatch: boolean;
741
+ $type: string;
742
+ };
743
+ badgeData: {
744
+ badgeHoverText: string;
745
+ targetUrn: string;
746
+ $recipeTypes: Array<string>;
747
+ $type: string;
748
+ };
749
+ overflowActions: Array<any>;
750
+ "*lazyLoadedActions"?: string;
751
+ searchActionType: any;
752
+ actorInsights: Array<any>;
753
+ insightsResolutionResults: Array<{
754
+ jobPostingInsight: any;
755
+ relationshipsInsight: any;
756
+ serviceProviderRatingInsight: any;
757
+ simpleInsight: {
758
+ image: ImageViewModel;
759
+ controlName: any;
760
+ navigationUrl: any;
761
+ title: TextData;
762
+ $recipeTypes: Array<string>;
763
+ $type: string;
764
+ searchActionType: string;
765
+ subtitleMaxNumLines: number;
766
+ titleFontSize: any;
767
+ subtitle: any;
768
+ subtitleFontSize: any;
769
+ titleMaxNumLines: number;
770
+ };
771
+ jobPostingFooterInsight: any;
772
+ socialActivityCountsInsight: any;
773
+ labelsInsight: any;
774
+ premiumCustomCtaInsight: any;
775
+ }>;
776
+ image: ImageViewModel;
777
+ badgeIcon: ImageViewModel;
778
+ showAdditionalCluster: boolean;
779
+ ringStatus: any;
780
+ trackingId: string;
781
+ addEntityToSearchHistory: boolean;
782
+ actorNavigationUrl: any;
783
+ entityEmbeddedObject: any;
784
+ unreadIndicatorDetails: any;
785
+ $recipeTypes: Array<string>;
786
+ target: any;
787
+ actorTrackingUrn: any;
788
+ navigationContext: {
789
+ openExternally: boolean;
790
+ $recipeTypes: Array<string>;
791
+ url: string;
792
+ $type: string;
793
+ };
794
+ };