@sunbird-cb/utils 0.0.1-ang-17-20
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/README.md +24 -0
- package/fesm2022/sunbird-cb-utils.mjs +4437 -0
- package/fesm2022/sunbird-cb-utils.mjs.map +1 -0
- package/index.d.ts +2698 -0
- package/index.d.ts.map +1 -0
- package/package.json +36 -0
- package/sunbird-cb-utils-0.0.1-ang-17-20.tgz +0 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,2698 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Type, OnInit, EventEmitter, OnDestroy, AfterViewInit, OnChanges, ElementRef, PipeTransform } from '@angular/core';
|
|
3
|
+
import * as i6 from '@angular/material/dialog';
|
|
4
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
6
|
+
import * as i3 from 'ngx-image-cropper';
|
|
7
|
+
import { ImageTransform, ImageCroppedEvent } from 'ngx-image-cropper';
|
|
8
|
+
import * as rxjs from 'rxjs';
|
|
9
|
+
import { BehaviorSubject, ReplaySubject, Observable, Subscription } from 'rxjs';
|
|
10
|
+
import { ThemePalette } from '@angular/material/core';
|
|
11
|
+
import { SafeStyle, DomSanitizer, SafeHtml, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
12
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
13
|
+
import * as i2 from '@angular/common';
|
|
14
|
+
import * as i4 from '@angular/material/icon';
|
|
15
|
+
import * as i3$1 from '@angular/material/button';
|
|
16
|
+
import * as i7 from '@angular/material/toolbar';
|
|
17
|
+
import * as i8 from '@angular/material/card';
|
|
18
|
+
import * as i9 from '@angular/material/tooltip';
|
|
19
|
+
import * as i10 from '@angular/material/slider';
|
|
20
|
+
import * as i5 from '@angular/material/progress-spinner';
|
|
21
|
+
import { Platform } from '@angular/cdk/platform';
|
|
22
|
+
import { HttpClient } from '@angular/common/http';
|
|
23
|
+
import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
24
|
+
import * as lodash from 'lodash';
|
|
25
|
+
|
|
26
|
+
type TUrl = undefined | 'none' | 'back' | string;
|
|
27
|
+
declare namespace NsWidgetResolver {
|
|
28
|
+
type UnitPermissionPrimitive = undefined | null | string;
|
|
29
|
+
interface IUnitPermissionObject {
|
|
30
|
+
all: UnitPermissionPrimitive | string[];
|
|
31
|
+
none: UnitPermissionPrimitive | string[];
|
|
32
|
+
some: UnitPermissionPrimitive | string[];
|
|
33
|
+
}
|
|
34
|
+
type UnitPermission = UnitPermissionPrimitive | string[] | IUnitPermissionObject | Pick<IUnitPermissionObject, 'all'> | Pick<IUnitPermissionObject, 'none'> | Pick<IUnitPermissionObject, 'some'> | Exclude<IUnitPermissionObject, 'all'> | Exclude<IUnitPermissionObject, 'none'> | Exclude<IUnitPermissionObject, 'some'>;
|
|
35
|
+
interface IPermissions {
|
|
36
|
+
enabled: boolean;
|
|
37
|
+
available: boolean;
|
|
38
|
+
roles?: UnitPermission;
|
|
39
|
+
features?: UnitPermission;
|
|
40
|
+
groups?: UnitPermission;
|
|
41
|
+
}
|
|
42
|
+
interface IBaseConfig {
|
|
43
|
+
widgetType: string;
|
|
44
|
+
widgetSubType: string;
|
|
45
|
+
}
|
|
46
|
+
interface IRegistrationConfig extends IBaseConfig {
|
|
47
|
+
component: Type<IWidgetData<any>>;
|
|
48
|
+
}
|
|
49
|
+
interface IRegistrationsPermissionConfig extends IBaseConfig {
|
|
50
|
+
widgetPermission?: IPermissions;
|
|
51
|
+
}
|
|
52
|
+
interface IRenderConfigWithTypedData<T> extends IRegistrationsPermissionConfig {
|
|
53
|
+
widgetData: T;
|
|
54
|
+
widgetInstanceId?: string;
|
|
55
|
+
widgetHostClass?: string;
|
|
56
|
+
widgetHostStyle?: {
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
type IRenderConfigWithAnyData = IRenderConfigWithTypedData<any>;
|
|
61
|
+
interface IWidgetData<T> extends Omit<IRenderConfigWithTypedData<T>, 'widgetPermission' | 'widgetHostStyle'> {
|
|
62
|
+
widgetSafeStyle?: SafeStyle;
|
|
63
|
+
updateBaseComponent: (widgetType: string, widgetSubType: string, widgetInstanceId?: string, widgetHostClass?: string, widgetSafeStyle?: SafeStyle) => void;
|
|
64
|
+
}
|
|
65
|
+
interface ITitle {
|
|
66
|
+
title: string;
|
|
67
|
+
url: TUrl;
|
|
68
|
+
icon?: string;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
declare namespace NsInstanceConfig {
|
|
73
|
+
export interface IConfig {
|
|
74
|
+
authoring: {
|
|
75
|
+
doUniqueCheck: boolean;
|
|
76
|
+
isMultiStepFlow: boolean;
|
|
77
|
+
allowExpiry: boolean;
|
|
78
|
+
allowRestore: boolean;
|
|
79
|
+
allowReview: boolean;
|
|
80
|
+
allowPublish: boolean;
|
|
81
|
+
allowRedo: boolean;
|
|
82
|
+
newDesign: boolean;
|
|
83
|
+
allowedContentType: string[];
|
|
84
|
+
urlPatternMatching: {
|
|
85
|
+
allowReplace: boolean;
|
|
86
|
+
source: string;
|
|
87
|
+
pattern: string;
|
|
88
|
+
allowIframe: boolean;
|
|
89
|
+
}[];
|
|
90
|
+
};
|
|
91
|
+
eventBufferTimeInMinutes?: any;
|
|
92
|
+
appSetup: boolean;
|
|
93
|
+
chatBotUrl: string;
|
|
94
|
+
defaultFontsize: string;
|
|
95
|
+
defaultThemeClass: string;
|
|
96
|
+
defaultLocale: string;
|
|
97
|
+
disablePidCheck?: boolean;
|
|
98
|
+
fontSizes: IFontSize[];
|
|
99
|
+
isContentDownloadAvailable: boolean;
|
|
100
|
+
indexHtmlMeta: IIndexHtmlMeta;
|
|
101
|
+
keycloak: IKeycloak;
|
|
102
|
+
locals: ILocalsConfig[];
|
|
103
|
+
microsoft: IMicrosoft;
|
|
104
|
+
telemetryConfig: ITelemetryConfig;
|
|
105
|
+
themes: ITheme[];
|
|
106
|
+
logos: ILogos;
|
|
107
|
+
sources?: ISourceLogo[];
|
|
108
|
+
mailIds: IMailIds;
|
|
109
|
+
details: IDetails;
|
|
110
|
+
validMailIdExtensionsForMailMe: string[];
|
|
111
|
+
defaultFeatureConfigs: {
|
|
112
|
+
error: string;
|
|
113
|
+
};
|
|
114
|
+
backgrounds: {
|
|
115
|
+
primaryNavBar: NsPage.INavBackground;
|
|
116
|
+
pageNavBar: NsPage.INavBackground;
|
|
117
|
+
};
|
|
118
|
+
featuredApps: string[];
|
|
119
|
+
primaryNavBarConfig: IPrimaryNavbarConfig;
|
|
120
|
+
org: string[];
|
|
121
|
+
rootOrg: string;
|
|
122
|
+
intranetIframeUrls?: string[];
|
|
123
|
+
showNavBarInSetup?: boolean;
|
|
124
|
+
intranetUrlToCheck?: string;
|
|
125
|
+
introVideo: IPath;
|
|
126
|
+
tourVideo: IPath;
|
|
127
|
+
isDownloadableSource?: IPath;
|
|
128
|
+
isDownloadableIosResource?: IPath;
|
|
129
|
+
isDownloadableAndroidResource?: IPath;
|
|
130
|
+
sourceFieldsUserAutocomplete?: string[];
|
|
131
|
+
forgotPasswordConfig?: IForgotPassword;
|
|
132
|
+
hubs: IHubs[];
|
|
133
|
+
courseContentPath?: string;
|
|
134
|
+
competency: ICompetencyKeys;
|
|
135
|
+
}
|
|
136
|
+
export interface ICompetencyKeys {
|
|
137
|
+
vKey: string;
|
|
138
|
+
vCompetencyArea: string;
|
|
139
|
+
vCompetencyAreaDescription: string;
|
|
140
|
+
vCompetencyTheme: string;
|
|
141
|
+
vCompetencySubTheme: string;
|
|
142
|
+
}
|
|
143
|
+
export interface IForgotPassword {
|
|
144
|
+
local?: string;
|
|
145
|
+
enterprise?: string;
|
|
146
|
+
social?: string;
|
|
147
|
+
}
|
|
148
|
+
export interface ISourceLogo {
|
|
149
|
+
sourceName?: string;
|
|
150
|
+
sourceId?: string;
|
|
151
|
+
logo?: string;
|
|
152
|
+
}
|
|
153
|
+
export interface IPath {
|
|
154
|
+
[key: string]: string;
|
|
155
|
+
}
|
|
156
|
+
export interface IHubs {
|
|
157
|
+
active: boolean;
|
|
158
|
+
desc: string;
|
|
159
|
+
hubname: string;
|
|
160
|
+
icon: string;
|
|
161
|
+
path: string;
|
|
162
|
+
}
|
|
163
|
+
export interface IIndexHtmlMeta {
|
|
164
|
+
description?: string;
|
|
165
|
+
openSearchUrl?: string;
|
|
166
|
+
webmanifest: string;
|
|
167
|
+
xIcon?: string;
|
|
168
|
+
pngIcon?: string;
|
|
169
|
+
}
|
|
170
|
+
export interface IFontSize {
|
|
171
|
+
baseFontSize: string;
|
|
172
|
+
fontClass: string;
|
|
173
|
+
scale: number;
|
|
174
|
+
}
|
|
175
|
+
export interface IKeycloak {
|
|
176
|
+
defaultidpHint: 'E' | 'N' | 'S';
|
|
177
|
+
isLoginHidden: boolean;
|
|
178
|
+
bearerExcludedUrls: string[];
|
|
179
|
+
clientId: string;
|
|
180
|
+
key: string;
|
|
181
|
+
realm: string;
|
|
182
|
+
url: string;
|
|
183
|
+
changePasswordUrl?: string;
|
|
184
|
+
onLoad?: 'check-sso' | 'login-required';
|
|
185
|
+
}
|
|
186
|
+
export interface ILocalsConfig {
|
|
187
|
+
isAvailable: boolean;
|
|
188
|
+
isEnabled: boolean;
|
|
189
|
+
locals: string[];
|
|
190
|
+
path: string;
|
|
191
|
+
isRTL: boolean;
|
|
192
|
+
}
|
|
193
|
+
export interface IMicrosoft {
|
|
194
|
+
clientId: string;
|
|
195
|
+
defaultEmailId: string;
|
|
196
|
+
tenant: string;
|
|
197
|
+
validEmailExtensions: string[];
|
|
198
|
+
isConfigured: boolean;
|
|
199
|
+
}
|
|
200
|
+
export interface ITheme {
|
|
201
|
+
color: IThemeColor;
|
|
202
|
+
themeFile: string;
|
|
203
|
+
themeClass: string;
|
|
204
|
+
themeName: string;
|
|
205
|
+
}
|
|
206
|
+
export interface IThemeColor {
|
|
207
|
+
accent: string;
|
|
208
|
+
primary: string;
|
|
209
|
+
warn: string;
|
|
210
|
+
}
|
|
211
|
+
export interface ILogos {
|
|
212
|
+
app: string;
|
|
213
|
+
appTransparent: string;
|
|
214
|
+
aboutFooter: string;
|
|
215
|
+
aboutHeader: string;
|
|
216
|
+
appBottomNav?: string;
|
|
217
|
+
company: string;
|
|
218
|
+
developedBy: string;
|
|
219
|
+
poweredBy: string;
|
|
220
|
+
defaultContent?: string;
|
|
221
|
+
defaultSourceLogo?: string;
|
|
222
|
+
landingLogo: string;
|
|
223
|
+
navbarLogo?: string;
|
|
224
|
+
playListLogo?: string;
|
|
225
|
+
thumpsUp?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface IMailIds {
|
|
228
|
+
contactUs: string;
|
|
229
|
+
default: string;
|
|
230
|
+
support: string;
|
|
231
|
+
}
|
|
232
|
+
export interface IDetails {
|
|
233
|
+
appName: string;
|
|
234
|
+
}
|
|
235
|
+
export interface IPrimaryNavbarConfig {
|
|
236
|
+
mediumScreen: IPrimaryNavBarScreen;
|
|
237
|
+
smallScreen: IPrimaryNavBarScreen;
|
|
238
|
+
}
|
|
239
|
+
interface IPrimaryNavBarScreen {
|
|
240
|
+
left: IPrimaryNavBarSide[];
|
|
241
|
+
right: IPrimaryNavBarSide[];
|
|
242
|
+
}
|
|
243
|
+
interface IPrimaryNavBarSide {
|
|
244
|
+
type: 'widgetButton' | 'featureButton';
|
|
245
|
+
config: NsWidgetResolver.IRenderConfigWithAnyData | NsPage.INavLink;
|
|
246
|
+
}
|
|
247
|
+
export interface ITelemetryConfig {
|
|
248
|
+
pdata: {
|
|
249
|
+
id: string;
|
|
250
|
+
ver: string;
|
|
251
|
+
pid: string;
|
|
252
|
+
};
|
|
253
|
+
object: {
|
|
254
|
+
ver: string;
|
|
255
|
+
id: string | undefined;
|
|
256
|
+
};
|
|
257
|
+
uid: string | null;
|
|
258
|
+
authtoken?: string;
|
|
259
|
+
env: string;
|
|
260
|
+
channel: string;
|
|
261
|
+
batchsize: number;
|
|
262
|
+
host: string;
|
|
263
|
+
endpoint: string;
|
|
264
|
+
apislug: string;
|
|
265
|
+
sid: string;
|
|
266
|
+
}
|
|
267
|
+
export {};
|
|
268
|
+
}
|
|
269
|
+
declare namespace NsAppsConfig {
|
|
270
|
+
type TIconType = 'mat-icon' | 'url';
|
|
271
|
+
interface IAppsConfig {
|
|
272
|
+
groups: IGroup[];
|
|
273
|
+
features: {
|
|
274
|
+
[id: string]: IFeature;
|
|
275
|
+
};
|
|
276
|
+
tourGuide?: string[][];
|
|
277
|
+
}
|
|
278
|
+
interface IGroup {
|
|
279
|
+
id: string;
|
|
280
|
+
iconType: string;
|
|
281
|
+
icon: string;
|
|
282
|
+
keywords: string[];
|
|
283
|
+
name: string;
|
|
284
|
+
toolTip: string;
|
|
285
|
+
featureIds: string[];
|
|
286
|
+
stripBackground?: string;
|
|
287
|
+
hasRole: string[];
|
|
288
|
+
}
|
|
289
|
+
interface IFeature {
|
|
290
|
+
name: string;
|
|
291
|
+
id: string;
|
|
292
|
+
url: string;
|
|
293
|
+
permission: string | string[] | {
|
|
294
|
+
all: string[];
|
|
295
|
+
some: string[];
|
|
296
|
+
none: string[];
|
|
297
|
+
};
|
|
298
|
+
iconType: TIconType;
|
|
299
|
+
icon: string;
|
|
300
|
+
keywords: string[];
|
|
301
|
+
toolTip: string;
|
|
302
|
+
accessKey: string;
|
|
303
|
+
status?: 'earlyAccess' | 'live' | 'alpha' | 'beta';
|
|
304
|
+
shortName: string;
|
|
305
|
+
description?: string;
|
|
306
|
+
badgeEndpoint?: string;
|
|
307
|
+
mobileAppFunction?: string;
|
|
308
|
+
color?: string;
|
|
309
|
+
target?: string;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
declare namespace NsUser {
|
|
313
|
+
export interface IUserProfile {
|
|
314
|
+
userId: string;
|
|
315
|
+
email?: string;
|
|
316
|
+
mobile?: string;
|
|
317
|
+
departmentName?: string;
|
|
318
|
+
userName?: string;
|
|
319
|
+
firstName?: string;
|
|
320
|
+
surName?: string;
|
|
321
|
+
middleName?: string;
|
|
322
|
+
lastName?: string;
|
|
323
|
+
rootOrgId?: string;
|
|
324
|
+
rootOrgName?: string;
|
|
325
|
+
profileImage?: string;
|
|
326
|
+
givenName?: string;
|
|
327
|
+
country?: null | string;
|
|
328
|
+
unit?: string | null;
|
|
329
|
+
source_profile_picture?: null | string;
|
|
330
|
+
dealerCode?: null | string;
|
|
331
|
+
isManager?: boolean;
|
|
332
|
+
}
|
|
333
|
+
export interface INodebbUserProfile {
|
|
334
|
+
username: string;
|
|
335
|
+
email: string;
|
|
336
|
+
}
|
|
337
|
+
export interface IUserPidProfile {
|
|
338
|
+
kid_updated: boolean;
|
|
339
|
+
user: IUser;
|
|
340
|
+
}
|
|
341
|
+
export interface IUserPidProfileV2 {
|
|
342
|
+
kid_updated: boolean;
|
|
343
|
+
result: {
|
|
344
|
+
response: IUserV2;
|
|
345
|
+
};
|
|
346
|
+
}
|
|
347
|
+
export interface IUserPidProfileVer2 {
|
|
348
|
+
result: {
|
|
349
|
+
UserProfile: IUserVer2;
|
|
350
|
+
};
|
|
351
|
+
}
|
|
352
|
+
interface ISourceData {
|
|
353
|
+
GID: string;
|
|
354
|
+
SNAMPRE: string;
|
|
355
|
+
SNAMADD: string;
|
|
356
|
+
LASTNAME: string;
|
|
357
|
+
SN: string;
|
|
358
|
+
GIVENNAME: string;
|
|
359
|
+
NICKNAME: string;
|
|
360
|
+
PREFERREDSN: string;
|
|
361
|
+
PERSONALTITLE: string;
|
|
362
|
+
MOBILE: string;
|
|
363
|
+
MAIL: string;
|
|
364
|
+
DEPARTMENTTEXT: string;
|
|
365
|
+
COSTLOCATIONUNIT: string;
|
|
366
|
+
COSTLOCATION: string;
|
|
367
|
+
ORGID: string;
|
|
368
|
+
MGMTRESP: string;
|
|
369
|
+
UTC: string;
|
|
370
|
+
CNAMEENG: string;
|
|
371
|
+
LNAMEINT: string;
|
|
372
|
+
USERTYPE: string;
|
|
373
|
+
STATUS: string;
|
|
374
|
+
CONTRACTSTATUS: string;
|
|
375
|
+
}
|
|
376
|
+
interface IUser {
|
|
377
|
+
wid: string;
|
|
378
|
+
root_org: string;
|
|
379
|
+
org: string;
|
|
380
|
+
is_active?: any;
|
|
381
|
+
account_expiry_date?: any;
|
|
382
|
+
kid: string;
|
|
383
|
+
imported_source_name: string;
|
|
384
|
+
source_id: string;
|
|
385
|
+
username?: any;
|
|
386
|
+
first_name: string;
|
|
387
|
+
last_name: string;
|
|
388
|
+
middle_name?: any;
|
|
389
|
+
known_as: string;
|
|
390
|
+
salutation?: any;
|
|
391
|
+
email: string;
|
|
392
|
+
gender?: any;
|
|
393
|
+
dob?: any;
|
|
394
|
+
languages_known?: any;
|
|
395
|
+
preferred_language?: any;
|
|
396
|
+
source_profile_picture?: any;
|
|
397
|
+
residence_country: string;
|
|
398
|
+
residence_state?: any;
|
|
399
|
+
residence_city: string;
|
|
400
|
+
contact_phone_number_office?: any;
|
|
401
|
+
contact_phone_number_home?: any;
|
|
402
|
+
contact_phone_number_personal: string;
|
|
403
|
+
employement_status?: any;
|
|
404
|
+
contract_type?: any;
|
|
405
|
+
job_title?: any;
|
|
406
|
+
job_role?: any;
|
|
407
|
+
department_name: string;
|
|
408
|
+
unit_name?: any;
|
|
409
|
+
organization_location_country?: any;
|
|
410
|
+
organization_location_state?: any;
|
|
411
|
+
organization_location_city?: any;
|
|
412
|
+
time_inserted: Date;
|
|
413
|
+
time_updated: Date;
|
|
414
|
+
json_unmapped_fields?: any;
|
|
415
|
+
source_data: ISourceData;
|
|
416
|
+
}
|
|
417
|
+
interface IRootOrg {
|
|
418
|
+
dateTime: string;
|
|
419
|
+
preferredLanguage: string;
|
|
420
|
+
keys: {};
|
|
421
|
+
channel: string;
|
|
422
|
+
approvedBy: string;
|
|
423
|
+
description: string;
|
|
424
|
+
updatedDate: string;
|
|
425
|
+
addressId: string;
|
|
426
|
+
orgType: string;
|
|
427
|
+
provider: string;
|
|
428
|
+
orgCode: string;
|
|
429
|
+
locationId: string;
|
|
430
|
+
theme: string;
|
|
431
|
+
id: string;
|
|
432
|
+
isApproved: boolean;
|
|
433
|
+
communityId: string;
|
|
434
|
+
slug: string;
|
|
435
|
+
email: string;
|
|
436
|
+
isSSOEnabled: boolean;
|
|
437
|
+
thumbnail: string;
|
|
438
|
+
updatedBy: string;
|
|
439
|
+
orgName: string;
|
|
440
|
+
locationIds: [];
|
|
441
|
+
externalId: string;
|
|
442
|
+
isRootOrg: boolean;
|
|
443
|
+
rootOrgId: string;
|
|
444
|
+
imgUrl: string;
|
|
445
|
+
approvedDate: string;
|
|
446
|
+
orgTypeId: string;
|
|
447
|
+
homeUrl: string;
|
|
448
|
+
isDefault: boolean;
|
|
449
|
+
createdDate: string;
|
|
450
|
+
contactDetail: string;
|
|
451
|
+
parentOrgId: string;
|
|
452
|
+
createdBy: string;
|
|
453
|
+
hashTagId: string;
|
|
454
|
+
noOfMembers: string;
|
|
455
|
+
status: number;
|
|
456
|
+
}
|
|
457
|
+
interface IOrg {
|
|
458
|
+
updatedBy: string;
|
|
459
|
+
organisationId: string;
|
|
460
|
+
orgName: string;
|
|
461
|
+
addedByName: string;
|
|
462
|
+
addedBy: string;
|
|
463
|
+
roles: string[];
|
|
464
|
+
approvedBy: string;
|
|
465
|
+
updatedDate: string;
|
|
466
|
+
userId: string;
|
|
467
|
+
approvaldate: string;
|
|
468
|
+
isDeleted: boolean;
|
|
469
|
+
parentOrgId: string;
|
|
470
|
+
hashTagId: string;
|
|
471
|
+
isRejected: boolean;
|
|
472
|
+
position: string;
|
|
473
|
+
id: string;
|
|
474
|
+
orgjoindate: string;
|
|
475
|
+
isApproved: boolean;
|
|
476
|
+
orgLeftDate: string;
|
|
477
|
+
}
|
|
478
|
+
interface IUserV2 {
|
|
479
|
+
surName: any;
|
|
480
|
+
maskedPhone: string;
|
|
481
|
+
rootOrgName: string;
|
|
482
|
+
subject: [];
|
|
483
|
+
channel: string;
|
|
484
|
+
language: [];
|
|
485
|
+
updatedDate: string;
|
|
486
|
+
managedBy: string;
|
|
487
|
+
flagsValue: number;
|
|
488
|
+
id: string;
|
|
489
|
+
recoveryEmail: string;
|
|
490
|
+
identifier: string;
|
|
491
|
+
thumbnail: string;
|
|
492
|
+
profileVisibility: [];
|
|
493
|
+
updatedBy: string;
|
|
494
|
+
accesscode: string;
|
|
495
|
+
locationIds: [];
|
|
496
|
+
externalIds: [];
|
|
497
|
+
registryId: string;
|
|
498
|
+
rootOrgId: string;
|
|
499
|
+
prevUsedEmail: string;
|
|
500
|
+
firstName: string;
|
|
501
|
+
tncAcceptedOn: string;
|
|
502
|
+
phone: string;
|
|
503
|
+
dob: string;
|
|
504
|
+
grade: [];
|
|
505
|
+
currentLoginTime: string;
|
|
506
|
+
userType: string;
|
|
507
|
+
status: number;
|
|
508
|
+
lastName: string;
|
|
509
|
+
gender: string;
|
|
510
|
+
roles: string[];
|
|
511
|
+
prevUsedPhone: string;
|
|
512
|
+
stateValidated: boolean;
|
|
513
|
+
isDeleted: boolean;
|
|
514
|
+
organisations: IOrg[];
|
|
515
|
+
countryCode: string;
|
|
516
|
+
maskedEmail: string;
|
|
517
|
+
tempPassword: string;
|
|
518
|
+
email: string;
|
|
519
|
+
rootOrg: IRootOrg;
|
|
520
|
+
profileSummary: string;
|
|
521
|
+
phoneVerified: boolean;
|
|
522
|
+
recoveryPhone: string;
|
|
523
|
+
userName: string;
|
|
524
|
+
userId: string;
|
|
525
|
+
lastLoginTime: string;
|
|
526
|
+
emailVerified: true;
|
|
527
|
+
framework: {};
|
|
528
|
+
createdDate: string;
|
|
529
|
+
createdBy: string;
|
|
530
|
+
location: string;
|
|
531
|
+
tncAcceptedVersion: string;
|
|
532
|
+
}
|
|
533
|
+
interface IUserVer2 {
|
|
534
|
+
'firstname': string;
|
|
535
|
+
'motherTongue': string;
|
|
536
|
+
'secondaryEmail': string;
|
|
537
|
+
'gender': string;
|
|
538
|
+
'@type': string;
|
|
539
|
+
'mobile': number;
|
|
540
|
+
'middlename': string;
|
|
541
|
+
'telephone': number;
|
|
542
|
+
'osid': string;
|
|
543
|
+
'primaryEmailType': string;
|
|
544
|
+
'knownLanguages': ILanguages[];
|
|
545
|
+
'wid': string;
|
|
546
|
+
'nationality': string;
|
|
547
|
+
'surname': string;
|
|
548
|
+
'dob': string;
|
|
549
|
+
'category': string;
|
|
550
|
+
'primaryEmail': string;
|
|
551
|
+
'maritalStatus': string;
|
|
552
|
+
'residenceAddress': string;
|
|
553
|
+
'result': any;
|
|
554
|
+
}
|
|
555
|
+
export interface ILanguages {
|
|
556
|
+
name: string;
|
|
557
|
+
}
|
|
558
|
+
export {};
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
declare namespace NsPage {
|
|
562
|
+
interface IPage {
|
|
563
|
+
contentType: string;
|
|
564
|
+
navigationBar: INavBar;
|
|
565
|
+
pageLayout: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
566
|
+
tourGuide?: string[][];
|
|
567
|
+
}
|
|
568
|
+
interface INavBar {
|
|
569
|
+
links: NsWidgetResolver.IRenderConfigWithTypedData<INavLink>[];
|
|
570
|
+
xsmallNonMenuLinks: NsWidgetResolver.IRenderConfigWithTypedData<INavLink>[];
|
|
571
|
+
pageBackLink: string;
|
|
572
|
+
pageTitle: string;
|
|
573
|
+
background: INavBackground;
|
|
574
|
+
}
|
|
575
|
+
interface INavBackground {
|
|
576
|
+
color: 'primary' | 'accent' | 'warn' | 'default';
|
|
577
|
+
styles: {
|
|
578
|
+
[id: string]: string;
|
|
579
|
+
};
|
|
580
|
+
}
|
|
581
|
+
interface INavLink {
|
|
582
|
+
config: Pick<INavLinkConfig<'card-full' | 'card-small'>, 'type' | 'hideStatus'> | Pick<INavLinkConfig<'mat-icon-button' | 'mat-fab' | 'mat-mini-fab' | 'card-mini'>, 'type'> | Pick<INavLinkConfig<'mat-button' | 'mat-raised-button' | 'mat-flat-button' | 'mat-stroked-button'>, 'type' | 'hideIcon' | 'hideTitle'> | Pick<INavLinkConfig<'mat-menu-item'>, 'type'> | Pick<INavLinkConfig<'feature-item'>, 'type' | 'useShortName' | 'iconColor' | 'treatAsCard' | 'hidePin'>;
|
|
583
|
+
actionBtnId?: string;
|
|
584
|
+
actionBtn?: NsAppsConfig.IFeature;
|
|
585
|
+
actionBtnName?: string;
|
|
586
|
+
}
|
|
587
|
+
interface INavLinkConfig<T> {
|
|
588
|
+
type: T;
|
|
589
|
+
hideIcon?: boolean;
|
|
590
|
+
hideTitle?: boolean;
|
|
591
|
+
hideStatus?: boolean;
|
|
592
|
+
hidePin?: boolean;
|
|
593
|
+
iconColor?: ThemePalette;
|
|
594
|
+
treatAsCard?: boolean;
|
|
595
|
+
useShortName?: boolean;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
interface IUserPreference {
|
|
600
|
+
selectedTheme: string;
|
|
601
|
+
selectedFont: string;
|
|
602
|
+
selectedLocale: string;
|
|
603
|
+
isDarkMode: boolean;
|
|
604
|
+
isIntranetAllowed?: boolean;
|
|
605
|
+
isRTL: boolean;
|
|
606
|
+
colorPallet: string[];
|
|
607
|
+
defaultCardType: string;
|
|
608
|
+
pinnedApps: string;
|
|
609
|
+
selectedLangGroup?: string;
|
|
610
|
+
completedActivity: string[];
|
|
611
|
+
completedTour?: boolean;
|
|
612
|
+
profileSettings: string[];
|
|
613
|
+
}
|
|
614
|
+
interface IProfile {
|
|
615
|
+
showProfilePicture: boolean;
|
|
616
|
+
showUserInterest: boolean;
|
|
617
|
+
showKbFollowed: boolean;
|
|
618
|
+
showPlaylist: boolean;
|
|
619
|
+
showAuthoredByMe: boolean;
|
|
620
|
+
showReviewedByMe: boolean;
|
|
621
|
+
showBadgeDetails: boolean;
|
|
622
|
+
showBlogs: boolean;
|
|
623
|
+
showQnA: boolean;
|
|
624
|
+
}
|
|
625
|
+
interface IPortalUrls {
|
|
626
|
+
igot: string;
|
|
627
|
+
spv: string;
|
|
628
|
+
mdo: string;
|
|
629
|
+
cbc: string;
|
|
630
|
+
cbp: string;
|
|
631
|
+
frac: string;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
declare class ConfigurationsService {
|
|
635
|
+
constructor();
|
|
636
|
+
appSetup: boolean;
|
|
637
|
+
userUrl: string;
|
|
638
|
+
baseUrl: string;
|
|
639
|
+
sitePath: string;
|
|
640
|
+
hostPath: string;
|
|
641
|
+
userRoles: Set<string> | null;
|
|
642
|
+
eventBufferTimeInMinutes: number | null;
|
|
643
|
+
userGroups: Set<string> | null;
|
|
644
|
+
restrictedFeatures: Set<string> | null;
|
|
645
|
+
restrictedWidgets: Set<string> | null;
|
|
646
|
+
instanceConfig: NsInstanceConfig.IConfig | null;
|
|
647
|
+
appsConfig: NsAppsConfig.IAppsConfig | null;
|
|
648
|
+
rootOrg: string | null;
|
|
649
|
+
courseContentPath?: string;
|
|
650
|
+
org: string[] | null;
|
|
651
|
+
activeOrg: string | null;
|
|
652
|
+
isProduction: boolean;
|
|
653
|
+
hasAcceptedTnc: boolean;
|
|
654
|
+
profileDetailsStatus: boolean;
|
|
655
|
+
userPreference: IUserPreference | null;
|
|
656
|
+
userProfile: NsUser.IUserProfile | null;
|
|
657
|
+
userProfileV2: NsUser.IUserProfile | null;
|
|
658
|
+
unMappedUser: any;
|
|
659
|
+
orgReadData: any;
|
|
660
|
+
isAuthenticated: boolean;
|
|
661
|
+
isNewUser: boolean;
|
|
662
|
+
isActive: boolean;
|
|
663
|
+
pinnedApps: BehaviorSubject<Set<string>>;
|
|
664
|
+
prefChangeNotifier: ReplaySubject<Partial<IUserPreference>>;
|
|
665
|
+
tourGuideNotifier: ReplaySubject<boolean>;
|
|
666
|
+
authChangeNotifier: ReplaySubject<boolean>;
|
|
667
|
+
activeThemeObject: NsInstanceConfig.ITheme | null;
|
|
668
|
+
activeFontObject: NsInstanceConfig.IFontSize | null;
|
|
669
|
+
isDarkMode: boolean;
|
|
670
|
+
isIntranetAllowed: boolean;
|
|
671
|
+
isRTL: boolean;
|
|
672
|
+
activeLocale: NsInstanceConfig.ILocalsConfig | null;
|
|
673
|
+
activeLocaleGroup: string;
|
|
674
|
+
completedActivity: string[] | null;
|
|
675
|
+
completedTour: boolean;
|
|
676
|
+
competency: any;
|
|
677
|
+
profileSettings: string[];
|
|
678
|
+
primaryNavBar: Partial<NsPage.INavBackground>;
|
|
679
|
+
pageNavBar: Partial<NsPage.INavBackground>;
|
|
680
|
+
primaryNavBarConfig: NsInstanceConfig.IPrimaryNavbarConfig | null;
|
|
681
|
+
private updateOrgReadData;
|
|
682
|
+
updateOrgReadDataObservable: rxjs.Observable<string>;
|
|
683
|
+
updateOrgData(id: string): void;
|
|
684
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationsService, never>;
|
|
685
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationsService>;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
declare class ValueService {
|
|
689
|
+
private breakpointObserver;
|
|
690
|
+
constructor(breakpointObserver: BreakpointObserver);
|
|
691
|
+
isXSmall$: Observable<boolean>;
|
|
692
|
+
isLtMedium$: Observable<boolean>;
|
|
693
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValueService, never>;
|
|
694
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ValueService>;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
interface IDialogueDta {
|
|
698
|
+
isRoundCrop: boolean;
|
|
699
|
+
imageFile: File;
|
|
700
|
+
height: number;
|
|
701
|
+
width: number;
|
|
702
|
+
imageFileName: string;
|
|
703
|
+
}
|
|
704
|
+
declare class ImageCropComponent implements OnInit {
|
|
705
|
+
private dialogRef;
|
|
706
|
+
private configSvc;
|
|
707
|
+
private snackBar;
|
|
708
|
+
private valueSvc;
|
|
709
|
+
data: EventEmitter<File>;
|
|
710
|
+
isRoundCrop: boolean;
|
|
711
|
+
isNotOfRequiredSize: boolean;
|
|
712
|
+
imageFile: File;
|
|
713
|
+
cropimageFile: File;
|
|
714
|
+
imageFileBase64: any;
|
|
715
|
+
width: any;
|
|
716
|
+
height: any;
|
|
717
|
+
opHeight: any;
|
|
718
|
+
opWidth: any;
|
|
719
|
+
imageDimensions: any;
|
|
720
|
+
croppedHeight: any;
|
|
721
|
+
croppedWidth: any;
|
|
722
|
+
cropperReadyToStart: any;
|
|
723
|
+
fileName: string;
|
|
724
|
+
canvasRotation: number;
|
|
725
|
+
transform: ImageTransform;
|
|
726
|
+
resetValue: boolean;
|
|
727
|
+
element: any;
|
|
728
|
+
isXSmall: boolean;
|
|
729
|
+
isThumbnail: boolean;
|
|
730
|
+
constructor(dialogRef: MatDialogRef<ImageCropComponent>, configSvc: ConfigurationsService, snackBar: MatSnackBar, valueSvc: ValueService, data: IDialogueDta);
|
|
731
|
+
ngOnInit(): void;
|
|
732
|
+
changeToDefaultImg($event: any): void;
|
|
733
|
+
imageCropped(event: ImageCroppedEvent): void;
|
|
734
|
+
openSnackBar(message: string): void;
|
|
735
|
+
continueToImageCrop(): void;
|
|
736
|
+
thumbnailSizeDetection(): void;
|
|
737
|
+
base64ImageToBlob(str: string): File;
|
|
738
|
+
private flipAfterRotate;
|
|
739
|
+
rotateLeft(): void;
|
|
740
|
+
rotateRight(): void;
|
|
741
|
+
flipHorizontal(): void;
|
|
742
|
+
zoom(event: any): void;
|
|
743
|
+
croppingImage(): void;
|
|
744
|
+
reset(): void;
|
|
745
|
+
close(): void;
|
|
746
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageCropComponent, never>;
|
|
747
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageCropComponent, "ws-utils-image-crop", never, {}, { "data": "data"; }, never, never, false, never>;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
declare class ImageCropModule {
|
|
751
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageCropModule, never>;
|
|
752
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageCropModule, [typeof ImageCropComponent], [typeof i2.CommonModule, typeof i3.ImageCropperModule, typeof i4.MatIconModule, typeof i3$1.MatButtonModule, typeof i6.MatDialogModule, typeof i7.MatToolbarModule, typeof i6.MatDialogModule, typeof i8.MatCardModule, typeof i9.MatTooltipModule, typeof i10.MatSliderModule], [typeof ImageCropComponent]>;
|
|
753
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ImageCropModule>;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
declare enum EFeatures {
|
|
757
|
+
PLAYLIST = "playlist",
|
|
758
|
+
PLAYLIST_CREATE = "playlistCreate",
|
|
759
|
+
PLAYLIST_ADD_NEW_CONTENT = "playlistAddNewContent",
|
|
760
|
+
PLAYLIST_REMOVE_EXISTING_CONTENT = "playlistRemoveExistingContent",
|
|
761
|
+
PLAYLIST_DELETE = "playlistDelete",
|
|
762
|
+
PLAYLIST_SHARE = "playlistShare",
|
|
763
|
+
GOAL = "goal",
|
|
764
|
+
GOAL_CREATE_OWN = "goalCreateOwn",
|
|
765
|
+
GOAL_CREATE_SUGGESTED = "goalCreateSuggested",
|
|
766
|
+
GOAL_EDIT_EXISTING_GOAL = "goalEditExistingGoal",
|
|
767
|
+
GOAL_DELETE_EXISTING_GOAL = "goalDeleteExistingGoal",
|
|
768
|
+
GOAL_SHARE_GOAL_WITH_OTHERS = "goalShareGoalWithOthers",
|
|
769
|
+
GOAL_VIEW_ALL_GOALS_SECTION = "goalViewAllGoalsSection",
|
|
770
|
+
GOAL_VIEW_IN_PROGRESS_GOALS_SECTION = "goalViewInProgressGoalsSection",
|
|
771
|
+
GOAL_VIEW_COMPLETED_GOALS_SECTION = "goalViewCompletedGoalsSection",
|
|
772
|
+
NAVIGATOR = "navigator",
|
|
773
|
+
NAVIGATOR_VIEW_NAVIGATOR_CAROUSEL = "navigatorViewNavigatorCarousel",
|
|
774
|
+
NAVIGATOR_VIEW_ROLES_PAGE = "navigatorViewRolesPage",
|
|
775
|
+
NAVIGATOR_SELECT_ANY_PILLAR = "navigatorSelectAnyPillar",
|
|
776
|
+
NAVIGATOR_PURSUE_ANY_OFFERING = "navigatorPursueAnyOffering",
|
|
777
|
+
NAVIGATOR_CREATE_GOAL_FROM_OFFERING = "navigatorCreateGoalFromOffering",
|
|
778
|
+
NAVIGATOR_VIEW_EXPLORE_PAGE = "navigatorViewExplorePage",
|
|
779
|
+
NAVIGATOR_SELECT_ANY_LEARNING_PATH = "navigatorSelectAnyLearningPath",
|
|
780
|
+
NAVIGATOR_CREATE_GOAL_FROM_LEARNING_PATH = "navigatorCreateGoalFromLearningPath",
|
|
781
|
+
NAVIGATOR_VIEW_SUGGESTIONS_PAGE = "navigatorViewSuggestionsPage",
|
|
782
|
+
NAVIGATOR_SELECT_SUGGESTED_TOPICS = "navigatorSelectSuggestedTopics",
|
|
783
|
+
NAVIGATOR_GET_SUGGESTIONS_OF_SELECTED_TOPICS = "navigatorGetSuggestionsOfSelectedTopics",
|
|
784
|
+
NAVIGATOR_CREATE_GOAL_FROM_SELECTED_LEARNING_PATHS = "navigatorCreateGoalFromSelectedLearningPaths",
|
|
785
|
+
NAVIGATOR_VIEW_INDUSTRIES_PAGE = "navigatorViewIndustriesPage",
|
|
786
|
+
NAVIGATOR_VIEW_CME_PAGE = "navigatorViewCmePage",
|
|
787
|
+
NAVIGATOR_SELECT_SUBDOMAIN = "navigatorSelectSubdomain",
|
|
788
|
+
NAVIGATOR_SELECT_PILLAR = "navigatorSelectPillar",
|
|
789
|
+
NAVIGATOR_SELECT_THEME = "navigatorSelectTheme",
|
|
790
|
+
NAVIGATOR_VIEW_CPG_PAGE = "navigatorViewCpgPage",
|
|
791
|
+
NAVIGATOR_VIEW_ENERGY_PAGE = "navigatorViewEnergyPage",
|
|
792
|
+
NAVIGATOR_VIEW_FINANCIAL_SERVICES_PAGE = "navigatorViewFinancialServicesPage",
|
|
793
|
+
NAVIGATOR_VIEW_HEALTH_CARE_PAGE = "navigatorViewHealthCarePage",
|
|
794
|
+
NAVIGATOR_VIEW_INSURANCE_PAGE = "navigatorViewInsurancePage",
|
|
795
|
+
NAVIGATOR_VIEW_LIFE_SCIENCES_PAGE = "navigatorViewLifeSciencesPage",
|
|
796
|
+
NAVIGATOR_VIEW_MFG_PAGE = "navigatorViewMfgPage",
|
|
797
|
+
NAVIGATOR_VIEW_RETAIL_PAGE = "navigatorViewRetailPage",
|
|
798
|
+
NAVIGATOR_VIEW_TRAVEL_AND_HOSPITALITY_PAGE = "navigatorViewTravelAndHospitalityPage",
|
|
799
|
+
NAVIGATOR_VIEW_UTILITIES_PAGE = "navigatorViewUtilitiesPage",
|
|
800
|
+
NAVIGATOR_VIEW_CME_ANALYTICS = "navigatorViewCmeAnalytics",
|
|
801
|
+
NAVIGATOR_VIEW_GPG_ANALYTICS = "navigatorViewGpgAnalytics",
|
|
802
|
+
NAVIGATOR_VIEW_ENERGY_ANALYTICS = "navigatorViewEnergyAnalytics",
|
|
803
|
+
NAVIGATOR_VIEW_FINANCIAL_SERVICES_ANALYTICS = "navigatorViewFinancialServicesAnalytics",
|
|
804
|
+
NAVIGATOR_VIEW_HEALTH_CARE_ANALYTICS = "navigatorViewHealthCareAnalytics",
|
|
805
|
+
NAVIGATOR_VIEW_INSURANCE_ANALYTICS = "navigatorViewInsuranceAnalytics",
|
|
806
|
+
NAVIGATOR_VIEW_LIFE_SCIENCES_ANALYTICS = "navigatorViewLifeSciencesAnalytics",
|
|
807
|
+
NAVIGATOR_VIEW_MFG_ANALYTICS = "navigatorViewMfgAnalytics",
|
|
808
|
+
NAVIGATOR_VIEW_RETAIL_ANALYTICS = "navigatorViewRetailAnalytics",
|
|
809
|
+
NAVIGATOR_VIEW_TRAVEL_AND_HOSPITALITY_ANALYTICS = "navigatorViewTravelAndHospitalityAnalytics",
|
|
810
|
+
NAVIGATOR_VIEW_UTILITIES_ANALYTICS = "navigatorViewUtilitiesAnalytics",
|
|
811
|
+
NAVIGATOR_VIEW_PILLARS_PAGE = "navigatorViewPillarsPage",
|
|
812
|
+
NAVIGATOR_VIEW_DIFFERENT_COURSES_IN_PILLAR = "navigatorViewDifferentCoursesInPillar",
|
|
813
|
+
NAVIGATOR_VIEW_FULL_STACK_PAGE = "navigatorViewFullStackPage",
|
|
814
|
+
NAVIGATOR_VIEW_DIFFERENT_FULL_STACK_PROGRAMS = "navigatorViewDifferentFullStackPrograms",
|
|
815
|
+
CATALOG = "catalog",
|
|
816
|
+
CATALOG_VIEW_CATALOG_LIST = "catalogViewCatalogList",
|
|
817
|
+
CATALOG_SELECT_ITEM_FROM_CATALOG_LIST = "catalogSelectItemFromCatalogList",
|
|
818
|
+
CATALOG_VIEW_PROGRAMS_STRIP = "catalogViewProgramsStrip",
|
|
819
|
+
CATALOG_VIEW_COURSES_STRIP = "catalogViewCoursesStrip",
|
|
820
|
+
CATALOG_VIEW_LEARNING_MODULES_STRIP = "catalogViewLearningModulesStrip",
|
|
821
|
+
CATALOG_VIEW_RESOURCES_STRIP = "catalogViewResourcesStrip",
|
|
822
|
+
MARKETING_PAGE = "marketingPage",
|
|
823
|
+
MARKETING_PAGE_VIEW_BRAND_ASSETS_PAGE = "marketingPageViewBrandAssetsPage",
|
|
824
|
+
MARKETING_PAGE_VIEW_CORPORATE_STRIP = "marketingPageViewCorporateStrip",
|
|
825
|
+
MARKETING_PAGE_VIEW_EMPLOYEE_STRIP = "marketingPageViewEmployeeStrip",
|
|
826
|
+
MARKETING_PAGE_VIEW_EXPERIMENTAL_SHOWCASE_PAGE = "marketingPageViewExperimentalShowcasePage",
|
|
827
|
+
MARKETING_PAGE_VIEW_HUBS_PAGE = "marketingPageViewHubsPage",
|
|
828
|
+
MARKETING_PAGE_VIEW_CONNECTICUT_STRIP = "marketingPageViewConnecticutStrip",
|
|
829
|
+
MARKETING_PAGE_VIEW_INDIANA_STRIP = "marketingPageViewIndianaStrip",
|
|
830
|
+
MARKETING_PAGE_VIEW_RHODE_ISLAND_STRIP = "marketingPageViewRhodeIslandStrip",
|
|
831
|
+
MARKETING_PAGE_VIEW_CLIENT_STORIES_PAGE = "marketingPageViewClientStoriesPage",
|
|
832
|
+
MARKETING_PAGE_VIEW_AGILE_SCALE_AT_DIGITAL_STRIP = "marketingPageViewAgileScaleAtDigitalStrip",
|
|
833
|
+
MARKETING_PAGE_VIEW_AI_POWERED_CORE_STRIP = "marketingPageViewAiPoweredCoreStrip",
|
|
834
|
+
MARKETING_PAGE_VIEW_ALWAYS_ON_LEAVING_STRIP = "marketingPageViewAlwaysOnLeavingStrip",
|
|
835
|
+
MARKETING_PAGE_VIEW_SERVICES_PAGE = "marketingPageViewServicesPage",
|
|
836
|
+
MARKETING_PAGE_VIEW_SERVICES_PENTAGON = "marketingPageViewServicesPentagon",
|
|
837
|
+
MARKETING_PAGE_VIEW_OFFERINGS_LIST = "marketingPageViewOfferingsList",
|
|
838
|
+
MARKETING_PAGE_SELECT_ANY_OFFERING = "marketingPageSelectAnyOffering",
|
|
839
|
+
MARKETING_PAGE_SELECT_ANY_PILLAR_FROM_PENTAGON = "marketingPageSelectAnyPillarFromPentagon",
|
|
840
|
+
MARKETING_PAGE_VIEW_INDUSTRIES_PAGE = "marketingPageViewIndustriesPage",
|
|
841
|
+
MARKETING_PAGE_VIEW_INDUSTRIES_LIST = "marketingPageViewIndustriesList",
|
|
842
|
+
MARKETING_PAGE_SELECT_ANY_INDUSTRY = "marketingPageSelectAnyIndustry",
|
|
843
|
+
MARKETING_PAGE_VIEW_PRODUCT_AND_SUBSIDIARIES_PAGE = "marketingPageViewProductAndSubsidiariesPage",
|
|
844
|
+
MARKETING_PAGE_VIEW_PRODUCT_AND_SUBSIDIARIES_LIST = "marketingPageViewProductAndSubsidiariesList",
|
|
845
|
+
MARKETING_PAGE_SELECT_ANY_PRODUCT_AND_SUBSIDIARY = "marketingPageSelectAnyProductAndSubsidiary",
|
|
846
|
+
INTERESTS = "interests",
|
|
847
|
+
INTERESTS_ADD_INTERESTS_FROM_SEARCH = "interestsAddInterestsFromSearch",
|
|
848
|
+
INTERESTS_ADD_INTERESTS_FROM_OUR_SUGGESTIONS_SECTION = "interestsAddInterestsFromOurSuggestionsSection",
|
|
849
|
+
INTERESTS_REMOVE_INTERESTS_FROM_MY_INTERESTS_SECTION = "interestsRemoveInterestsFromMyInterestsSection",
|
|
850
|
+
INTERESTS_VIEW_INTERESTS_SEARCH_FIELD = "interestsViewInterestsSearchField",
|
|
851
|
+
INTERESTS_VIEW_MY_INTERESTS_SECTION = "interestsViewMyInterestsSection",
|
|
852
|
+
INTERESTS_VIEW_OWN_SUGGESTIONS_SECTION = "interestsViewOwnSuggestionsSection",
|
|
853
|
+
INTERESTS_VIEW_MORE_SUGGESTIONS_BUTTON = "interestsViewMoreSuggestionsButton",
|
|
854
|
+
FEEDBACK = "feedback",
|
|
855
|
+
FEEDBACK_VIEW_PLATFORM_FEEDBACK_SECTION = "feedbackViewPlatformFeedbackSection",
|
|
856
|
+
FEEDBACK_STAR_RATING_FOR_PLATFORM = "feedbackStarRatingForPlatform",
|
|
857
|
+
FEEDBACK_WRITE_PLATFORM_FEEDBACK = "feedbackWritePlatformFeedback",
|
|
858
|
+
FEEDBACK_RESET_PLATFORM_FEEDBACK = "feedbackResetPlatformFeedback",
|
|
859
|
+
FEEDBACK_SUBMIT_PLATFORM_FEEDBACK = "feedbackSubmitPlatformFeedback",
|
|
860
|
+
FEEDBACK_VIEW_CONTENT_FEEDBACK_SECTION = "feedbackViewContentFeedbackSection",
|
|
861
|
+
FEEDBACK_STAR_RATING_FOR_CONTENT = "feedbackStarRatingForContent",
|
|
862
|
+
FEEDBACK_WRITE_CONTENT_FEEDBACK = "feedbackWriteContentFeedback",
|
|
863
|
+
FEEDBACK_RESET_CONTENT_FEEDBACK = "feedbackResetContentFeedback",
|
|
864
|
+
FEEDBACK_SUBMIT_CONTENT_FEEDBACK = "feedbackSubmitContentFeedback",
|
|
865
|
+
FEEDBACK_VIEW_ISSUE_REPORTING_SECTION = "feedbackViewIssueReportingSection",
|
|
866
|
+
FEEDBACK_WRITING_ISSUE = "feedbackWritingIssue",
|
|
867
|
+
FEEDBACK_RESET_ISSUE = "feedbackResetIssue",
|
|
868
|
+
FEEDBACK_SUBMIT_ISSUE = "feedbackSubmitIssue",
|
|
869
|
+
CONTACT_US = "contactUs",
|
|
870
|
+
CONTACT_US_VIEW_RAISE_AHD_SECTION = "contactUsViewRaiseAhdSection",
|
|
871
|
+
CONTACT_US_VIEW_MAIL_US_SECTION = "contactUsViewMailUsSection",
|
|
872
|
+
CONTACT_US_VIEW_TALK_TO_US_SECTION = "contactUsViewTalkToUsSection",
|
|
873
|
+
CONTACT_US_RAISE_AHD = "contactUsRaiseAhd",
|
|
874
|
+
CONTACT_US_WRITE_EMAIL = "contactUsWriteEmail",
|
|
875
|
+
CONTACT_US_DIAL_FROM_PHONE = "contactUsDialFromPhone",
|
|
876
|
+
FAQ = "faq",
|
|
877
|
+
FAQ_VIEW_LOGIN_FAQS = "faqViewLoginFaqs",
|
|
878
|
+
FAQ_VIEW_ODC_ACCESS_FAQS = "faqViewOdcAccessFaqs",
|
|
879
|
+
FAQ_VIEW_COMPATIBILITY_FAQS = "faqViewCompatibilityFaqs",
|
|
880
|
+
FAQ_VIEW_INSTALLATION_FAQS = "faqViewInstallationFaqs",
|
|
881
|
+
FAQ_VIEW_PROGRESS_COMPLETION_FAQS = "faqViewProgressCompletionFaqs",
|
|
882
|
+
FAQ_VIEW_VIDEO_FAQS = "faqViewVideoFaqs",
|
|
883
|
+
FAQ_VIEW_AUTHORING_FAQS = "faqViewAuthoringFaqs",
|
|
884
|
+
MOBILE_APPS = "mobileApps",
|
|
885
|
+
MOBILE_APPS_VIEW_ANDROID_APP_SECTION = "mobileAppsViewAndroidAppSection",
|
|
886
|
+
MOBILE_APPS_DOWNLOAD_APP_FROM_PLAY_STORE = "mobileAppsDownloadAppFromPlayStore",
|
|
887
|
+
MOBILE_APPS_DOWNLOAD_APP_FROM_OUR_SERVER = "mobileAppsDownloadAppFromOurServer",
|
|
888
|
+
MOBILE_APPS_VIEW_QR_CODE_FOR_ANDROID_APP = "mobileAppsViewQrCodeForAndroidApp",
|
|
889
|
+
MOBILE_APPS_VIEW_IOS_APP_SECTION = "mobileAppsViewIosAppSection",
|
|
890
|
+
MOBILE_APPS_DOWNLOAD_IOS_APP = "mobileAppsDownloadIosApp",
|
|
891
|
+
MOBILE_APPS_VIEW_QR_CODE_FOR_IOS_APP = "mobileAppsViewQrCodeForIosApp",
|
|
892
|
+
ABOUT_US = "aboutUs",
|
|
893
|
+
ABOUT_US_VIEW_ABOUT_US_PAGE_SECTIONS = "aboutUsViewAboutUsPageSections",
|
|
894
|
+
SETTINGS = "settings",
|
|
895
|
+
SETTINGS_VIEW_LANGUAGE_SECTION = "settingsViewLanguageSection",
|
|
896
|
+
SETTINGS_VIEW_FONT_SIZE_SECTION = "settingsViewFontSizeSection",
|
|
897
|
+
SETTINGS_VIEW_THEME_SECTION = "settingsViewThemeSection",
|
|
898
|
+
SETTINGS_CHANGE_LANGUAGE = "settingsChangeLanguage",
|
|
899
|
+
SETTINGS_CHANGE_FONT_SIZE = "settingsChangeFontSize",
|
|
900
|
+
SETTINGS_CHANGE_THEME = "settingsChangeTheme",
|
|
901
|
+
LOGIN_PAGE = "loginPage",
|
|
902
|
+
LOGIN_PAGE_LOGIN_FOR_INFOSCIONS = "loginPageLoginForInfoscions",
|
|
903
|
+
LOGIN_PAGE_LOGIN_FOR_SUBSIDIARIES = "loginPageLoginForSubsidiaries",
|
|
904
|
+
LOGIN_PAGE_LOGIN_FOR_NEW_RECRUITS = "loginPageLoginForNewRecruits",
|
|
905
|
+
LOGIN_PAGE_ABOUT_US = "loginPageAboutUs",
|
|
906
|
+
LOGIN_PAGE_TERMS_OF_USE = "loginPageTermsOfUse",
|
|
907
|
+
LOGIN_PAGE_FAQS = "loginPageFaqs",
|
|
908
|
+
LOGIN_PAGE_CONTACT_US = "loginPageContactUs",
|
|
909
|
+
TOC_PAGE = "tocPage",
|
|
910
|
+
TOC_PAGE_VIEW_OVERVIEW_SECTION = "tocPageViewOverviewSection",
|
|
911
|
+
TOC_PAGE_VIEW_INSTRUCTOR_LED_SECTION = "tocPageViewInstructorLedSection",
|
|
912
|
+
TOC_PAGE_VIEW_COHORTS_SECTION = "tocPageViewCohortsSection",
|
|
913
|
+
TOC_PAGE_VIEW_DISCUSSION_FORUM_SECTION = "tocPageViewDiscussionForumSection",
|
|
914
|
+
TOC_PAGE_VIEW_COURSE_ANALYTICS_SECTION = "tocPageViewCourseAnalyticsSection",
|
|
915
|
+
TOC_PAGE_VIEW_WHATS_NEXT_SECTION = "tocPageViewWhatsNextSection",
|
|
916
|
+
TOC_PAGE_VIEW_PART_OF_SECTION = "tocPageViewPartOfSection",
|
|
917
|
+
TOC_PAGE_REGISTER_FOR_UPCOMING_TRAINING = "tocPageRegisterForUpcomingTraining",
|
|
918
|
+
TOC_PAGE_UNREGISTER_FROM_REGISTERED_TRAINING = "tocPageUnregisterFromRegisteredTraining",
|
|
919
|
+
TOC_PAGE_SHARE_INSTRUCTOR_LED_TRAININGS = "tocPageShareInstructorLedTrainings",
|
|
920
|
+
TOC_PAGE_VIEW_EDUCATORS_OF_TRAININGS = "tocPageViewEducatorsOfTrainings",
|
|
921
|
+
TOC_PAGE_NOMINATE_OTHERS_FOR_TRAININGS = "tocPageNominateOthersForTrainings",// Applicable only for JL6 and above.
|
|
922
|
+
TOC_PAGE_REQUEST_TRAINING = "tocPageRequestTraining",// Applicable only for JL6 and above.
|
|
923
|
+
TOC_PAGE_VIEW_ACTIVE_LEARNERS_SECTION = "tocPageViewActiveLearnersSection",
|
|
924
|
+
TOC_PAGE_VIEW_ALL_ACTIVE_LEARNERS = "tocPageViewAllActiveLearners",
|
|
925
|
+
TOC_PAGE_VIEW_CURRENTLY_ACTIVE_LEARNERS = "tocPageViewCurrentlyActiveLearners",
|
|
926
|
+
TOC_PAGE_VIEW_LEARNERS_SHARING_THE_SAME_GOALS = "tocPageViewLearnersSharingTheSameGoals",
|
|
927
|
+
TOC_PAGE_VIEW_EXPERTS_AND_TUTORS_SECTION = "tocPageViewExpertsAndTutorsSection",
|
|
928
|
+
TOC_PAGE_VIEW_ALL_EXPERTS_AND_TUTORS = "tocPageViewAllExpertsAndTutors",
|
|
929
|
+
TOC_PAGE_VIEW_AUTHORS_OF_COURSE = "tocPageViewAuthorsOfCourse",
|
|
930
|
+
TOC_PAGE_VIEW_EDUCATORS_OF_COURSE = "tocPageViewEducatorsOfCourse",
|
|
931
|
+
TOC_PAGE_VIEW_TOPPERS_OF_COURSE = "tocPageViewToppersOfCourse",
|
|
932
|
+
TOC_PAGE_MAIL_THE_PERSON = "tocPageMailThePerson",
|
|
933
|
+
TOC_PAGE_CALL_THE_PERSON = "tocPageCallThePerson",
|
|
934
|
+
TOC_PAGE_POST_VIEWS_IN_DISCUSSION_FORUM = "tocPagePostViewsInDiscussionForum",
|
|
935
|
+
TOC_PAGE_LEARN_THE_COURSE = "tocPageLearnTheCourse",
|
|
936
|
+
TOC_PAGE_LIKE_THE_COURSE = "tocPageLikeTheCourse",
|
|
937
|
+
TOC_PAGE_SHARE_THE_COURSE = "tocPageShareTheCourse",
|
|
938
|
+
TOC_PAGE_ADD_COURSE_TO_GOALS = "tocPageAddCourseToGoals",
|
|
939
|
+
TOC_PAGE_ADD_COURSE_TO_PLAYLIST = "tocPageAddCourseToPlaylist",
|
|
940
|
+
TOC_PAGE_ADD_COURSE_TO_WATCHLIST = "tocPageAddCourseToWatchlist",
|
|
941
|
+
TOC_PAGE_GIVE_COURSE_FEEDBACK = "tocPageGiveCourseFeedback",
|
|
942
|
+
TOC_PAGE_RESUME_THE_COURSE = "tocPageResumeTheCourse",
|
|
943
|
+
TOC_PAGE_START_OVER_THE_COURSE = "tocPageStartOverTheCourse",
|
|
944
|
+
TOC_PAGE_GO_TO_COURSE_QUIZ = "tocPageGoToCourseQuiz",
|
|
945
|
+
TOC_PAGE_GO_TO_COURSE_HANDS_ON = "tocPageGoToCourseHandsOn",
|
|
946
|
+
NAVBAR = "navbar",
|
|
947
|
+
NAVBAR_VIEW_LOGO = "navbarViewLogo",
|
|
948
|
+
NAVBAR_CATALOG_ICON = "navbarCatalogIcon",
|
|
949
|
+
NAVBAR_NAVIGATOR_ICON = "navbarNavigatorIcon",
|
|
950
|
+
NAVBAR_NOTIFICATION_ICON = "navbarNotificationIcon",
|
|
951
|
+
NAVBAR_SETTINGS_ICON = "navbarSettingsIcon",
|
|
952
|
+
NAVBAR_SEARCH_ICON = "navbarSearchIcon",
|
|
953
|
+
NAVBAR_APPS_ICON = "navbarAppsIcon",
|
|
954
|
+
HOME_PAGE = "homePage",
|
|
955
|
+
HOME_PAGE_VIEW_CAROUSEL = "homePageViewCarousel",
|
|
956
|
+
HOME_PAGE_VIEW_CONTINUE_LEARNING_STRIP = "homePageViewContinueLearningStrip",
|
|
957
|
+
HOME_PAGE_VIEW_FEATURED_APPS_STRIP = "homePageViewFeaturedAppsStrip",
|
|
958
|
+
HOME_PAGE_VIEW_RECENT_ADDITION_TO_PLAYLISTS_STRIP = "homePageViewRecentAdditionToPlaylistsStrip",
|
|
959
|
+
HOME_PAGE_VIEW_BASED_ON_YOUR_INTERESTS_STRIP = "homePageViewBasedOnYourInterestsStrip",
|
|
960
|
+
HOME_PAGE_VIEW_BASED_ON_WHAT_YOU_VIEWED_STRIP = "homePageViewBasedOnWhatYouViewedStrip",
|
|
961
|
+
HOME_PAGE_VIEW_LATEST_STRIP = "homePageViewLatestStrip",
|
|
962
|
+
HOME_PAGE_VIEW_TRENDING_STRIP = "homePageViewTrendingStrip",
|
|
963
|
+
HOME_PAGE_SHOW_COMPLETED_FILTER = "homePageShowCompletedFilter",
|
|
964
|
+
HOME_PAGE_SHOW_RESOURCES_FILTER = "homePageShowResourcesFilter",
|
|
965
|
+
TNC_PAGE = "tncPage",
|
|
966
|
+
TNC_PAGE_VIEW_CONTEST_RULES_SECTION = "tncPageViewContestRulesSection",
|
|
967
|
+
TNC_PAGE_VIEW_DATA_PRIVACY_SECTION = "tncPageViewDataPrivacySection",
|
|
968
|
+
TNC_PAGE_ACCEPT_TERMS_AND_CONDITIONS = "tncPageAcceptTermsAndConditions",
|
|
969
|
+
BLOGS = "blogs",
|
|
970
|
+
BLOG_VIEW_OTHERS_BLOGS = "blogViewOthersBlogs",
|
|
971
|
+
BLOGS_LIKE_OTHER_BLOGS = "blogsLikeOtherBlogs",
|
|
972
|
+
BLOGS_VIEW_MY_BLOGS = "blogsViewMyBlogs",
|
|
973
|
+
BLOGS_WRITE_NEW_BLOG = "blogsWriteNewBlog",
|
|
974
|
+
BLOGS_SAVE_BLOG_AS_DRAFT = "blogsSaveBlogAsDraft",
|
|
975
|
+
BLOGS_EDIT_MY_SAVED_BLOG = "blogsEditMySavedBlog",
|
|
976
|
+
BLOGS_PUBLISH_MY_BLOG = "blogsPublishMyBlog",
|
|
977
|
+
BLOGS_UPVOTE_FOR_BLOG = "blogsUpvoteForBlog",
|
|
978
|
+
BLOGS_DOWNVOTE_FOR_BLOG = "blogsDownvoteForBlog",
|
|
979
|
+
BLOGS_WRITE_RESPONSE_FOR_BLOG = "blogsWriteResponseForBlog",
|
|
980
|
+
BLOGS_DELETE_MY_BLOG = "blogsDeleteMyBlog",
|
|
981
|
+
BLOGS_EDIT_MY_RESPONSE = "blogsEditMyResponse",
|
|
982
|
+
BLOGS_DELETE_MY_RESPONSE = "blogsDeleteMyResponse",
|
|
983
|
+
BLOGS_VIEW_DRAFTS_SECTION = "blogsViewDraftsSection",
|
|
984
|
+
BLOGS_VIEW_PUBLISHED_SECTION = "blogsViewPublishedSection",
|
|
985
|
+
QUESTION_AND_ANSWER = "questionAndAnswer",
|
|
986
|
+
QUESTION_AND_ANSWER_VIEW_ALL_QUESTIONS_AND_ANSWERS = "questionAndAnswerViewAllQuestionsAndAnswers",
|
|
987
|
+
QUESTION_AND_ANSWER_VIEW_ONLY_UNANSWERED_QUESTIONS = "questionAndAnswerViewOnlyUnansweredQuestions",
|
|
988
|
+
QUESTION_AND_ANSWER_VIEW_MY_TIMELINE = "questionAndAnswerViewMyTimeline",
|
|
989
|
+
QUESTION_AND_ANSWER_ASK_NEW_QUESTION = "questionAndAnswerAskNewQuestion",
|
|
990
|
+
QUESTION_AND_ANSWER_VIEW_SPECIFIC_QUESTION = "questionAndAnswerViewSpecificQuestion",
|
|
991
|
+
QUESTION_AND_ANSWER_UPVOTE_FOR_ANSWER = "questionAndAnswerUpvoteForAnswer",
|
|
992
|
+
QUESTION_AND_ANSWER_DOWNVOTE_FOR_ANSWER = "questionAndAnswerDownvoteForAnswer",
|
|
993
|
+
QUESTION_AND_ANSWER_LIKE_AN_ANSWER = "questionAndAnswerLikeAnAnswer",
|
|
994
|
+
QUESTION_AND_ANSWER_ADD_COMMENT_FOR_ANY_ANSWER = "questionAndAnswerAddCommentForAnyAnswer",
|
|
995
|
+
QUESTION_AND_ANSWER_ADD_ANSWER_FOR_ANY_QUESTION = "questionAndAnswerAddAnswerForAnyQuestion",
|
|
996
|
+
QUESTION_AND_ANSWER_SAVE_QUESTION_AS_DRAFT = "questionAndAnswerSaveQuestionAsDraft",
|
|
997
|
+
QUESTION_AND_ANSWER_PUBLISH_SAVED_QUESTION = "questionAndAnswerPublishedSavedQuestion",
|
|
998
|
+
QUESTION_AND_ANSWER_VIEW_DRAFTS_SECTION = "questionAndAnswerViewDraftsSection",
|
|
999
|
+
QUESTION_AND_ANSWER_VIEW_PUBLISHED_SECTION = "questionAndAnswerViewPublishedSection",
|
|
1000
|
+
BADGES = "badges",
|
|
1001
|
+
BADGES_VIEW_RECENTLY_EARNED_BADGE = "badgesViewRecentlyEarnedBadge",
|
|
1002
|
+
BADGES_VIEW_ALL_EARNED_BADGES = "badgesViewAllEarnedBadges",
|
|
1003
|
+
BADGES_VIEW_NEXT_TARGETTED_BADGES = "badgesViewNextTargettedBadges",
|
|
1004
|
+
HANDS_ON_DASHBOARD = "handsOnDashboard",
|
|
1005
|
+
HANDS_ON_DASHBOARD_VIEW_MY_DASHBOARD = "handsOnDashboardViewMyDashboard",
|
|
1006
|
+
HANDS_ON_DASHBOARD_VIEW_SHARED_PROFILE_SECTION = "handsOnDashboardViewSharedProfileSection",
|
|
1007
|
+
LEARNING_HISTORY = "learningHistory",
|
|
1008
|
+
LEARNING_HISTORY_VIEW_PROGRAMS_SECTION = "learningHistoryViewProgramsSection",
|
|
1009
|
+
LEARNING_HISTORY_VIEW_COURSES_SECTION = "learningHistoryViewCoursesSection",
|
|
1010
|
+
LEARNING_HISTORY_VIEW_LEARNING_MODULES_SECTION = "learningHistoryViewLearningModulesSection",
|
|
1011
|
+
LEARNING_HISTORY_VIEW_RESOURCES_SECTION = "learningHistoryViewResourcesSection",
|
|
1012
|
+
LEARNING_HISTORY_VIEW_CERTIFICATIONS_SECTION = "learningHistoryViewCertificationsSection",
|
|
1013
|
+
LEARNING_HISTORY_APPLY_COMPLETED_FILTER = "learningHistoryApplyCompletedFilter",
|
|
1014
|
+
LEARNING_HISTORY_VIEW_MORE_BUTTON = "learningHistoryViewMoreButton",
|
|
1015
|
+
LEARNING_TIME = "learningTime",
|
|
1016
|
+
LEARNING_TIME_VIEW_LEARNING_TIME_GRAPH = "learningTimeViewLearningTimeGraph",
|
|
1017
|
+
LEARNING_TIME_APPLY_BAR_GRAPH_FILTER = "learningTimeApplyBarGraphFilter",
|
|
1018
|
+
LEARNING_TIME_APPLY_DATE_RANGE_FILTER = "learningTimeApplyDateRangeFilter",
|
|
1019
|
+
LEARNING_TIME_APPLY_TIME_SPENT_FILTER = "learningTimeApplyTimeSpentFilter",
|
|
1020
|
+
LEARNING_TIME_APPLY_APP_AVERAGE_FILTER = "learningTimeApplyAppAverageFilter",
|
|
1021
|
+
LEARNING_TIME_APPLY_USER_AVERAGE_OVER_PERIOD_FILTER = "learningTimeApplyUserAverageOverPeriodFilter",
|
|
1022
|
+
NOTIFICATION = "notification",
|
|
1023
|
+
NOTIFICATION_VIEW_RECENT_BADGE_EARNED = "notificationViewRecentBadgeEarned",
|
|
1024
|
+
NOTIFICATION_VIEW_SHARED_PLAYLIST = "notificationViewSharedPlaylist",
|
|
1025
|
+
NOTIFICATION_VIEW_SHARED_GOALS = "notificationViewSharedGoals",
|
|
1026
|
+
PROFILE = "profile",
|
|
1027
|
+
PROFILE_VIEW_BASIC_INFORMATION = "profileViewBasicInformation",
|
|
1028
|
+
PROFILE_VIEW_RECENTLY_LEARNED_COURSES = "profileViewRecentlyLearnedCourses",
|
|
1029
|
+
PROFILE_VIEW_LIKED_ITEMS = "profileViewLikedItems",
|
|
1030
|
+
PROFILE_VIEW_BADGES_EARNED = "profileViewBadgesEarned",
|
|
1031
|
+
BEHAVIORAL_SKILLS = "behavioralSkills",
|
|
1032
|
+
BEHAVIORAL_SKILLS_VIEW_MODEL_CLIENT_INTERACTIONS = "behavioralSkillsViewModalClientInteractions",
|
|
1033
|
+
BEHAVIORAL_SKILLS_VIEW_CLIENT_INTERACTION_TESTS = "behavioralSkillsViewClientInteractionTests",
|
|
1034
|
+
CERTIFICATIONS = "certifications",
|
|
1035
|
+
CERTIFICATIONS_VIEW_MY_APPROVALS_SECTION = "certificationsViewMyApprovalsSection",
|
|
1036
|
+
CERTIFICATIONS_VIEW_MY_REQUESTS_SECTION = "certificationsViewMyRequestsSection",
|
|
1037
|
+
CERTIFICATIONS_VIEW_MY_CERTIFICATIONS_SECTION = "certificationsViewMyCertificationsSection",
|
|
1038
|
+
CERTIFICATIONS_APPLY_COMPLETION_STATUS_FILTER = "certificationsApplyCompletionStatusFilter",
|
|
1039
|
+
CODE_CRACK = "codeCrack",
|
|
1040
|
+
CODE_CRACK_VIEW_PUZZLE_MANIA = "codeCrackViewPuzzleMania",
|
|
1041
|
+
CODE_CRACK_VIEW_CODE_CRACK = "codeCrackViewCodeCrack",
|
|
1042
|
+
CODE_CRACK_VIEW_TECHNOLOGY_PLAYGROUND = "codeCrackViewTechnologyPlayground",
|
|
1043
|
+
CODE_CRACK_WATCH_PROGRAMMING_CHALLENGES_VIDEO = "codeCrackWatchProgrammingChallengesVideo",
|
|
1044
|
+
CODE_CRACK_VIEW_ACCELERATE = "codeCrackViewAccelerate",
|
|
1045
|
+
CODE_CRACK_START_CODE_CRACK_TEST = "codeCrackStartCodeCrackTest",
|
|
1046
|
+
CODE_CRACK_START_PUZZLE_MANIA = "codeCrackStartPuzzleMania",
|
|
1047
|
+
CODE_CRACK_START_TECHNOLOGY_PLAYGROUND = "codeCrackStartTechnologyPlayground",
|
|
1048
|
+
INSTRUCTOR_LED_TRAINING = "instructorLedTraining",
|
|
1049
|
+
INSTRUCTOR_LED_TRAINING_VIEW_TRAINING_SCHEDULE_SECTION = "instructorLedTrainingViewTrainingScheduleSection",
|
|
1050
|
+
INSTRUCTOR_LED_TRAINING_VIEW_FEEDBACK_SECTION = "instructorLedTrainingViewFeedbackSection",
|
|
1051
|
+
INSTRUCTOR_LED_TRAINING_VIEW_TRAININGS_PLANNED_BY_YOUR_TEAM_SECTION = "instructorLedTrainingViewTrainingsPlannedByYourTeamSection",
|
|
1052
|
+
INSTRUCTOR_LED_TRAINING_SEARCH_TRAINING = "instructorLedTrainingSearchTraining",
|
|
1053
|
+
INSTRUCTOR_LED_TRAINING_REGISTER_FOR_TRAINING = "instructorLedTrainingRegisterForTraining",
|
|
1054
|
+
INSTRUCTOR_LED_TRAINING_GIVE_TRAINING_FEEDBACK = "instructorLedTrainingGiveTrainingFeedback",
|
|
1055
|
+
LEADERBOARD = "leaderboard",
|
|
1056
|
+
LEADERBOARD_VIEW_WEEKLY_SECTION = "leaderboardViewWeeklySection",
|
|
1057
|
+
LEADERBOARD_VIEW_MONTHLY_SECTION = "leaderboardViewMonthlySection",
|
|
1058
|
+
LEADERBOARD_VIEW_HALL_OF_FAME_SECTION = "leaderboardViewHallOfSection",
|
|
1059
|
+
LEADERBOARD_APPLY_LEARNER_COLLABORATOR_FILTER = "leaderboardApplyLearnerCollaboratorFilter",
|
|
1060
|
+
LEADERBOARD_BACK_DATE_BUTTON = "leaderboardBackDatebutton",
|
|
1061
|
+
LEADERBOARD_FORWARD_DATE_BUTTON = "leaderboardForwardDateButton",
|
|
1062
|
+
PLAYGROUND = "playground",
|
|
1063
|
+
PLAYGROUND_VIEW_TECHNOLOGY_PLAYGROUNDS_STRIP = "playgroundViewTechnologyPlaygorundsStrip",
|
|
1064
|
+
PLAYGROUND_VIEW_ASSESSMENTS_PLAYGROUNDS_STRIP = "playgroundViewAssessmentsPlaygroundsStrip",
|
|
1065
|
+
PUZZLE_MANIA = "puzzleMania",
|
|
1066
|
+
PUZZLE_MANIA_VIEW_PUZZLE_MANIA = "puzzleManiaViewPuzzleMania",
|
|
1067
|
+
PUZZLE_MANIA_VIEW_CODE_CRACK = "puzzleManiaViewCodeCrack",
|
|
1068
|
+
PUZZLE_MANIA_VIEW_TECHNOLOGY_PLAYGROUND = "puzzleManiaViewTechnologyPlayground",
|
|
1069
|
+
PUZZLE_MANIA_WATCH_PROGRAMMING_CHALLENGES_VIDEO = "puzzleManiaWatchProgrammingChallengesVideo",
|
|
1070
|
+
PUZZLE_MANIA_VIEW_ACCELERATE = "puzzleManiaViewAccelerate",
|
|
1071
|
+
PUZZLE_MANIA_START_CODE_CRACK_TEST = "puzzleManiaStartCodeCrackTest",
|
|
1072
|
+
PUZZLE_MANIA_START_PUZZLE_MANIA = "puzzleManiaStartPuzzleMania",
|
|
1073
|
+
PUZZLE_MANIA_START_TECHNOLOGY_PLAYGROUND = "puzzleManiaStartTechnologyPlayground",
|
|
1074
|
+
FULL_STACK_SALES_LEADER = "fullStackSalesLeader",
|
|
1075
|
+
FULL_STACK_SALES_LEADER_WATCH_LEADER_VIDEO = "fullStackSalesLeaderWatchLeaderVideo",
|
|
1076
|
+
FULL_STACK_SALES_LEADER_EMBARK_ON_THIS_LEARNING_JOURNEY_BUTTON = "fullStackSalesLeaderEmbarkOnThisLearningJourneyButton",
|
|
1077
|
+
FULL_STACK_SALES_LEADER_QUICK_TOUR_VIDEO_LINK = "fullStackSalesLeaderQuickTourVideoLink",
|
|
1078
|
+
FULL_STACK_SALES_LEADER_FEEDBACK_LINK = "fullStackSalesLeaderFeedbackLink",
|
|
1079
|
+
FULL_STACK_SALES_LEADER_DROP_NOTE_LINK = "fullStackSalesLeaderDropNoteLink",
|
|
1080
|
+
ONBOARDING = "onboarding",
|
|
1081
|
+
ONBOARDING_VIEW_DC_ONBOARDING_PROGRAMS_STRIP = "onboardingViewDcOnboardingProgramsStrip",
|
|
1082
|
+
ONBOARDING_VIEW_ORGANISATIONAL_ONBOARDING_PROGRAMS_STRIP = "onboardingViewOrganisationalOnboardingProgramsStrip",
|
|
1083
|
+
ONBOARDING_VIEW_ROLE_BASED_ONBOARDING_PROGRAMS_STRIP = "onboardingViewRoleBasedOnboardingProgramsStrip",
|
|
1084
|
+
ONBOARDING_VIEW_UNIT_AND_PROJECT_ONBOARDING_PROGRAMS_STRIP = "onboardingViewUnitAndProjectOnboardingProgramsStrip",
|
|
1085
|
+
SEARCH = "search",
|
|
1086
|
+
SEARCH_SEARCHING_CONTENT = "searchSearchingContent",
|
|
1087
|
+
KNOWLEDGE_HUB = "knowledgeHub",
|
|
1088
|
+
KNOWLEDGE_HUB_SUBMIT_KNOWLEDGE_ARTIFACTS = "knowledgeHubSubmitKnowledgeArtifacts",
|
|
1089
|
+
KNOWLEDGE_HUB_VIEW_TOP_PROJECTS_SECTION = "knowledgeHubViewTopProjectsSection",
|
|
1090
|
+
KNOWLEDGE_HUB_VIEW_INTERESTING_READS_SECTION = "knowledgeHubViewInterestingReadsSection",
|
|
1091
|
+
KNOWLEDGE_HUB_VIEW_MARKETING_SECTION = "knowledgeHubViewMarketingSection",
|
|
1092
|
+
KNOWLEDGE_HUB_VIEW_KSHOP_CLASSIC_SECTION = "knowledgeHubViewKshopClassicSection",
|
|
1093
|
+
KNOWLEDGE_HUB_VIEW_TRENDING_TOOLS_SECTION = "knowledgeHubViewTrendingToolsSection",
|
|
1094
|
+
KNOWLEDGE_HUB_VIEW_DOCUMENTS_STRIP = "knowledgeHubViewDocumentsStrip",
|
|
1095
|
+
KNOWLEDGE_HUB_VIEW_TOOLS_STRIP = "knowledgeHubViewProjectReferencesStrip",
|
|
1096
|
+
KNOWLEDGE_HUB_VIEW_MARKETING_STRIP = "knowledgeHubViewMarketingStrip",
|
|
1097
|
+
CHANNELS = "channels",
|
|
1098
|
+
CHANNELS_VIEW_LEADERSHIP_SECTION = "channelsViewLeadershipSection",
|
|
1099
|
+
CHANNELS_VIEW_RAVI_KUMAR_PAGE = "channelsViewRaviKumarPage",
|
|
1100
|
+
CHANNELS_VIEW_MOHIT_JOSHI_PAGE = "channelsViewMohitJoshiPage",
|
|
1101
|
+
CHANNELS_FOLLOW_RAVI_KUMAR = "channelsFollowRaviKumar",
|
|
1102
|
+
CHANNELS_MAIL_TO_RAVI_KUMAR = "channelsMailToRaviKumar",
|
|
1103
|
+
CHANNELS_VIEW_ABOUT_RAVI_KUMAR_SECTION = "channelsViewAboutRaviKumarSection",
|
|
1104
|
+
CHANNELS_VIEW_RAVI_KUMAR_TWEETS_SECTION = "channelsViewRaviKumarTweetsSection",
|
|
1105
|
+
CHANNELS_VIEW_RAVI_KUMAR_ARTICLES_SECTION = "channelsViewRaviKumarArticlesSection",
|
|
1106
|
+
CHANNELS_VIEW_RAVI_KUMAR_TRAILBLAZERS_SECTION = "channelsViewRaviKumarTrailblazersSection",
|
|
1107
|
+
CHANNELS_VIEW_RAVI_KUMAR_COMMUNICATIONS_SECTION = "channelsViewRaviKumarCommunicationsSection",
|
|
1108
|
+
CHANNELS_VIEW_RAVI_KUMAR_DISCUSSION_SECTION = "channelsViewraviKumarDiscussionSection",
|
|
1109
|
+
CHANNELS_LIKE_TWEET_RAVI_KUMAR = "channelsLikeTweetRaviKumar",
|
|
1110
|
+
CHANNELS_SHARE_TWEET_RAVI_KUMAR = "channelsShareTweetRaviKumar",
|
|
1111
|
+
CHANNELS_POST_YOUR_THOUGHTS_IN_DISCUSSION_RAVI_KUMAR = "channelsPostYourThoughtsInDiscussionRaviKumar",
|
|
1112
|
+
CHANNELS_FOLLOW_MOHIT_JOSHI = "channelsFollowMohitJoshi",
|
|
1113
|
+
CHANNELS_MAIL_TO_MOHIT_JOSHI = "channelsMailToMohitJoshi",
|
|
1114
|
+
CHANNELS_VIEW_ABOUT_MOHIT_JOSHI_SECTION = "channelsViewAboutMohitJoshiSection",
|
|
1115
|
+
CHANNELS_VIEW_MOHIT_JOSHI_TWEETS_SECTION = "channelsViewMohitJoshiTweetsSection",
|
|
1116
|
+
CHANNELS_VIEW_MOHIT_JOSHI_ARTICLES_SECTION = "channelsViewMohitJoshiArticlesSection",
|
|
1117
|
+
CHANNELS_VIEW_MOHIT_JOSHI_TRAILBLAZERS_SECTION = "channelsViewMohitJoshiTrailblazersSection",
|
|
1118
|
+
CHANNELS_VIEW_MOHIT_JOSHI_COMMUNICATIONS_SECTION = "channelsViewMohitJoshiCommunicationsSection",
|
|
1119
|
+
CHANNELS_VIEW_MOHIT_JOSHI_DISCUSSION_SECTION = "channelsViewMohitJoshiDiscussionSection",
|
|
1120
|
+
CHANNELS_LIKE_TWEET_MOHIT_JOSHI = "channelsLikeTweetMohitJoshi",
|
|
1121
|
+
CHANNELS_SHARE_TWEET_MOHIT_JOSHI = "channelsShareTweetMohitJoshi",
|
|
1122
|
+
CHANNELS_POST_YOUR_THOUGHTS_IN_DISCUSSION_MOHIT_JOSHI = "channelsPostYourThoughtsInDiscussionMohitJoshi",
|
|
1123
|
+
CHANNELS_VIEW_CORPORATE_SECTION = "channelsViewCorporateSection",
|
|
1124
|
+
CHANNELS_VIEW_EXPERIENCE_WOW_PAGE = "channelsViewExperienceWowPage",
|
|
1125
|
+
CHANNELS_VIEW_INFOSYS_KNOWLEDGE_INSTITUTE_PAGE = "channelsViewInfosysKnowledgeInstitutePage",
|
|
1126
|
+
CHANNELS_VIEW_CMT_LEARNING_HUB_PAGE = "channelsViewCmtLearningHubPage",
|
|
1127
|
+
CHANNELS_VIEW_FULL_STACK_SALES_LEADERS_PAGE = "channelsViewFullStackSalesLeaderPage",
|
|
1128
|
+
EXPERIENCE_WOW_PAGE = "experienceWowPage",
|
|
1129
|
+
EXPERIENCE_WOW_PAGE_VIEW_PAGE_SECTIONS = "experienceWowPageViewPageSections",
|
|
1130
|
+
EXPERIENCE_WOW_PAGE_CHECK_Wingspan_STATISTICS = "experienceWowPageCheckWingspanStatistics",
|
|
1131
|
+
EXPERIENCE_WOW_PAGE_CHECK_INFY_ME_STATISTICS = "experienceWowPageCheckInfyMeStatistics",
|
|
1132
|
+
EXPERIENCE_WOW_PAGE_PROVIDE_SUGGESTIONS = "experienceWowPageProvideSuggestions",
|
|
1133
|
+
EXPERIENCE_WOW_PAGE_SEND_MAIL_FOR_BECOMING_COCREATOR = "experienceWowPageSendMailForBecomingCocreator",
|
|
1134
|
+
INFY_RADIO = "infyRadio",
|
|
1135
|
+
INFY_RADIO_VIEW_PODCASTS_STRIP = "infyRadioViewPodcastsStrip",
|
|
1136
|
+
INFY_TV = "infyTv",
|
|
1137
|
+
INFY_TV_VIEW_JUST_FOR_YOU_SECTION = "infyTvViewJustForYouSection",
|
|
1138
|
+
INFY_TV_VIEW_MUST_VIEW_STRIP = "infyTvViewMustViewStrip",
|
|
1139
|
+
INFY_TV_VIEW_LATEST_STRIP = "infyTvViewLatestStrip",
|
|
1140
|
+
INFY_TV_VIEW_CHANNELS_SECTION = "infyTvViewChannelsSection",
|
|
1141
|
+
INFY_TV_VIEW_CHANNELS_STRIP = "infyTvViewChannelsStrip",
|
|
1142
|
+
INFY_TV_VIEW_BROADCAST_SECTION = "infyTvViewBroadcastSection",
|
|
1143
|
+
INFY_TV_VIEW_PREVIOUS_EVENTS_LIST = "infyTvViewPreviousEventsList",
|
|
1144
|
+
INFY_TV_VIEW_LIVE_EVENTS_LIST = "infyTvViewLiveEventsList",
|
|
1145
|
+
INFY_TV_VIEW_UPCOMING_EVENTS_LIST = "infyTvViewUpcomingEventsList",
|
|
1146
|
+
LEADERSHIP_MESSAGES = "leadershipMessages",
|
|
1147
|
+
LEADERSHIP_MESSAGES_VIEW_LEADERSHIP_VIDEO = "leadershipMessagesViewLeadershipVideo",
|
|
1148
|
+
LIVING_LABS = "livingLabs",
|
|
1149
|
+
LIVING_LABS_VIEW_LIVING_LABS_STRIP = "livingLabsViewLivingLabsStrip",
|
|
1150
|
+
AMERICAS_CONFLUENECE = "americasConfluence",
|
|
1151
|
+
AMERICAS_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS = "americasConfluenceViewConfluenceVideosStrips",
|
|
1152
|
+
APAC_CONFLUENECE = "apacConfluence",
|
|
1153
|
+
APAC_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS = "apacConfluenceViewConfluenceVideosStrips",
|
|
1154
|
+
EMEA_CONFLUENECE = "emeaConfluence",
|
|
1155
|
+
EMEA_CONFLUENECE_VIEW_CONFLUENCE_VIDEOS_STRIPS = "emeaConfluenceViewConfluenceVideosStrips",
|
|
1156
|
+
CONNECT = "connect",
|
|
1157
|
+
CONNECT_VIEW_CONTENT_STRIP = "connectViewContentStrip",
|
|
1158
|
+
LIVE_EVENTS = "liveEvents",
|
|
1159
|
+
LIVE_EVENTS_WATCH_LIVE = "liveEventsWatchLive",
|
|
1160
|
+
LIVE_EVENTS_WATCH_CLASSROOM_BROADCAST = "liveEventsWatchClassroomBroadcast",
|
|
1161
|
+
LIVE_EVENTS_WATCH_THREE_SIXTY_VIDEO = "liveEventsWatchThreeSixtyVideo",
|
|
1162
|
+
LIVE_EVENTS_WATCH_FAMILY_MATTERS_VIDEO = "liveEventsWatchFamilyMattersVideo",
|
|
1163
|
+
LIVE_EVENTS_WATCH_CONFLUENCE_EVENTS = "liveEventsWatchConfluenceEvents",
|
|
1164
|
+
DIGITAL_ASSISTANT_TOUR = "digitalAssistantTour",
|
|
1165
|
+
DIGITAL_ASSISTANT_TOUR_WATCH_TOUR_VIDEO = "digitalAssistantTourWatchTourVideo",
|
|
1166
|
+
QUICK_TOUR = "quickTour",
|
|
1167
|
+
QUICK_TOUR_WATCH_TOUR_VIDEO = "quickTourWatchTourVideo",
|
|
1168
|
+
LOGOUT = "logout",
|
|
1169
|
+
LOGOUT_LOGS_OUT_FROM_APPLICATION = "logoutLogsOutFromApplication",
|
|
1170
|
+
MY_ANALYTICS = "myAnalytics",
|
|
1171
|
+
MY_ANALYTICS_APPLY_QUARTER_FILTERS = "myAnalyticsApplyQuarterFilters",
|
|
1172
|
+
MY_ANALYTICS_VIEW_MY_LEARNING_SECTION = "myAnalyticsViewMyLearningSection",
|
|
1173
|
+
MY_ANALYTICS_VIEW_MY_ASSESSMENT_SECTION = "myAnalyticsViewMyAssessmentSection",
|
|
1174
|
+
MY_ANALYTICS_VIEW_MY_REFACTORING_SECTION = "myAnalyticsViewMyRefactoringSection",
|
|
1175
|
+
MY_ANALYTICS_VIEW_MY_PLANS_SECTION = "myAnalyticsViewMyPlansSection",
|
|
1176
|
+
MY_ANALYTICS_VIEW_MY_COLLABORATORS_SECTION = "myAnalyticsViewMyCollaboratorsSection",
|
|
1177
|
+
MY_ANALYTICS_VIEW_MY_FEATURES_USAGE_SECTION = "myAnalyticsViewTopCoursesSection",
|
|
1178
|
+
MY_ANALYTICS_VIEW_MY_LEARNING_MINUTES = "myAnalyticsViewMyLearningMinutes",
|
|
1179
|
+
MY_ANALYTICS_VIEW_MY_LEARNING_POINTS = "myAnalyticsViewMyLearningPoints",
|
|
1180
|
+
MY_ANALYTICS_VIEW_BADGES = "myAnalyticsViewBadges",
|
|
1181
|
+
MY_ANALYTICS_VIEW_TIME_SPENT_BY_USER = "myAnalyticsViewTimeSpentByUser",
|
|
1182
|
+
MY_ANALYTICS_VIEW_AVERAGE_MINUTES_ON_Wingspan = "myAnalyticsViewAverageMinutesOnWingspan",
|
|
1183
|
+
MY_ANALYTICS_VIEW_AVERAGE_MINUTES_ACROSS_DIMENSIONS = "myAnalyticsViewAverageMinutesAcrossDimensions",
|
|
1184
|
+
MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_USER = "myAnalyticsViewPercentageTimeSpentByUser",
|
|
1185
|
+
MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_INFOSCIONS = "myAnalyticsViewPercentageTimeSpentByInfoscions",
|
|
1186
|
+
MY_ANALYTICS_VIEW_PERCENTAGE_TIME_SPENT_BY_PEERS = "myAnalyticsViewPercentageTimeSpentByPeers",
|
|
1187
|
+
MY_ANALYTICS_VIEW_TOTAL_ASSESSMENTS = "myAnalyticsViewTotalAssessments",
|
|
1188
|
+
MY_ANALYTICS_VIEW_PENDING_ASSESSMENTS = "myAnalyticsViewPendingAssessments",
|
|
1189
|
+
MY_ANALYTICS_VIEW_CERTIFICATIONS = "myAnalyticsViewCertifications",
|
|
1190
|
+
MY_ANALYTICS_VIEW_ASSESSMENTS = "myAnalyticsViewAssessments",
|
|
1191
|
+
MY_ANALYTICS_VIEW_RECENT_ASSESSMENTS = "myAnalyticsViewRecentAssessments",
|
|
1192
|
+
MY_ANALYTICS_VIEW_ASSESSMENT_DETAILS = "myAnalyticsViewAssessmentDetails",
|
|
1193
|
+
MY_ANALYTICS_VIEW_RECENT_ASSESSMENT = "myAnalyticsViewRecentAssessment",
|
|
1194
|
+
MY_ANALYTICS_VIEW_MY_REFACTORING_PROGRAM = "myAnalyticsViewMyRefactoringProgram",
|
|
1195
|
+
MY_ANALYTICS_VIEW_NAVIGATOR = "myAnalyticsViewNavigator",
|
|
1196
|
+
MY_ANALYTICS_VIEW_AI_AND_AUTOMATION_PROGRESS = "myAnalyticsViewAiAndAutomationProcess",
|
|
1197
|
+
MY_ANALYTICS_VIEW_MY_GOALS = "myAnalyticsViewMyGoals",
|
|
1198
|
+
MY_ANALYTICS_VIEW_PLAYLIST = "myAnalyticsViewPlaylist",
|
|
1199
|
+
MY_ANALYTICS_VIEW_GOALS_SHARED_WITH_USER = "myAnalyticsViewGoalsSharedWithUser",
|
|
1200
|
+
MY_ANALYTICS_VIEW_DETAILED_COURSES_PROGRESS = "myAnalyticsViewDetailedCoursesProgress",
|
|
1201
|
+
MY_ANALYTICS_VIEW_GOALS_SHARED_BY_USER = "myAnalyticsViewGoalsSharedByUser",
|
|
1202
|
+
MY_ANALYTICS_VIEW_ARTIFACTS_SHARED_BY_USER = "myAnalyticsViewArtifactsSharedByUser",
|
|
1203
|
+
MY_ANALYTICS_VIEW_EXPERTS_USER_CONTACTED = "myAnalyticsViewExpertsUserContacted",
|
|
1204
|
+
MY_ANALYTICS_VIEW_DETAILED_GOALS_SHARING = "myAnalyticsViewDetailedGoalsSharing",
|
|
1205
|
+
MY_ANALYTICS_VIEW_PLAYGROUNDS = "myAnalyticsViewPlaygrounds",
|
|
1206
|
+
MY_ANALYTICS_VIEW_LIKES = "myAnalyticsViewLikes",
|
|
1207
|
+
MY_ANALYTICS_VIEW_SEARCH = "myAnalyticsViewSearch",
|
|
1208
|
+
MY_ANALYTICS_VIEW_INFY_TV = "myAnalyticsViewInfyTv",
|
|
1209
|
+
MY_ANALYTICS_VIEW_INFY_RADIO = "myAnalyticsViewInfyRadio",
|
|
1210
|
+
MY_ANALYTICS_VIEW_INFY_LIVE = "myAnalyticsViewInfyLive",
|
|
1211
|
+
MY_ANALYTICS_VIEW_TOP_COURSES_BY_USER_UNIT = "myAnalyticsViewTopCoursesByUserUnit",
|
|
1212
|
+
MY_ANALYTICS_VIEW_TOP_COURSES_BY_USER_PEERS = "myAnalyticsViewTopCoursesbyUserPeers",
|
|
1213
|
+
LEARNING_ANALYTICS = "learningAnalytics",
|
|
1214
|
+
LEARNING_ANALYTICS_SEARCH_FOR_PARTICIPANTS_AND_EDUCATORS = "learningAnalyticsSearchForParticipantsAndEducators",
|
|
1215
|
+
LEARNING_ANALYTICS_UNIT_FILTER = "learningAnalyticsUnitFilter",
|
|
1216
|
+
LEARNING_ANALYTICS_PU_FILTER = "learningAnalyticsPuFilter",
|
|
1217
|
+
LEARNING_ANALYTICS_DU_FILTER = "learningAnalyticsDuFilter",
|
|
1218
|
+
LEARNING_ANALYTICS_ACCOUNT_FILTER = "learningAnalyticsAccountFilter",
|
|
1219
|
+
LEARNING_ANALYTICS_LOCATION_FILTER = "learningAnalyticsLocationFilter",
|
|
1220
|
+
LEARNING_ANALYTICS_QUARTER_FILTER = "learningAnalyticsQuarterFilter",
|
|
1221
|
+
LEARNING_ANALYTICS_COMPLETED_FILTER = "learningAnalyticsCompletedFilter",
|
|
1222
|
+
LEARNING_ANALYTICS_ETA_FILTER = "learningAnalyticsEtaFilter",
|
|
1223
|
+
LEARNING_ANALYTICS_UNIQUE_USERS_DATA = "learningAnalyticsUniqueUsersData",
|
|
1224
|
+
LEARNING_ANALYTICS_USERS_BY_ONSITE_OFFSHORE = "learningAnalyticsUsersByOnsiteOffshore",
|
|
1225
|
+
LEARNING_ANALYTICS_USERS_BY_DEVICE_TYPE = "learningAnalyticsUsersByDeviceType",
|
|
1226
|
+
LEARNING_ANALYTICS_USERS_BY_UNIT = "learningAnalyticsUsersByUnit",
|
|
1227
|
+
LEARNING_ANALYTICS_USERS_BY_TRACK = "learningAnalyticsUsersByTrack",
|
|
1228
|
+
LEARNING_ANALYTICS_USERS_BY_PU_SALES = "learningAnalyticsUsersByPuSales",
|
|
1229
|
+
LEARNING_ANALYTICS_USERS_BY_CU_TYPE = "learningAnalyticsUsersByCuType",
|
|
1230
|
+
LEARNING_ANALYTICS_USERS_BY_SKILL = "learningAnalyticsUsersBySkill",
|
|
1231
|
+
LEARNING_ANALYTICS_USERS_BY_TOPICS = "learningAnalyticsUsersByTopics",
|
|
1232
|
+
LEARNING_ANALYTICS_USERS_BY_HORIZON = "learningAnalyticsUsersByHorizon",
|
|
1233
|
+
LEARNING_ANALYTICS_USERS_GROWTH = "learningAnalyticsUsersGrowth",
|
|
1234
|
+
LEARNING_ANALYTICS_USERS_DETAILS = "learningAnalyticsUsersDetails",
|
|
1235
|
+
LEARNING_ANALYTICS_VIEW_ALL_TRAININGS_SECTION = "learningAnalyticsViewAllTrainingsSection",
|
|
1236
|
+
LEARNING_ANALYTICS_TALENT_GRID_FILTER = "learningAnalyticstalentGridFilter",
|
|
1237
|
+
LEARNING_ANALYTICS_STACK_FILTER = "learningAnalyticsStackFilter",
|
|
1238
|
+
LEARNING_ANALYTICS_UNIQUE_PARTICIPANTS = "learningAnalyticsUniqueParticipants",
|
|
1239
|
+
LEARNING_ANALYTICS_OVERALL_PARTICIPANTS = "learningAnalyticsOverallParticipants",
|
|
1240
|
+
LEARNING_ANALYTICS_AVERAGE_DAYS = "learningAnalyticsAverageDays",
|
|
1241
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_ONSITE_ONSHORE = "learningAnalyticsParticipantsByOnsiteOnshore",
|
|
1242
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_UNIT = "learningAnalyticsParticipantsByUnit",
|
|
1243
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_PU = "learningAnalyticsParticipantsByPu",
|
|
1244
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_SKILL_TYPE = "learningAnalyticsParticipantsBySkillType",
|
|
1245
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_SKILL = "learningAnalyticsParticipantsBySkill",
|
|
1246
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_STACKS = "learningAnalyticsParticipantsByStacks",
|
|
1247
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_NEW_SERVICES = "learningAnalyticsParticipantsByNewServices",
|
|
1248
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_LEARNING_TRACK = "learningAnalyticsParticipantsByLearningTrack",
|
|
1249
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_OFFERING_MODE = "learningAnalyticsParticipantsByOfferingMode",
|
|
1250
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_TOPICS = "learningAnalyticsParticipantsByTopics",
|
|
1251
|
+
LEARNING_ANALYTICS_PARTICIPANTS_BY_ABCD = "learningAnalyticsParticipantsByAbcd",
|
|
1252
|
+
LEARNING_ANALYTICS_PARTICIPANTS_DETAILS = "learningAnalyticsParticipantsDetails",
|
|
1253
|
+
LEARNING_ANALYTICS_SCHEDULES_SECTION = "learningAnalyticsSchedulesSection",
|
|
1254
|
+
LEARNING_ANALYTICS_SCHEDULE_DATE_FILTER = "learningAnalyticsScheduleDateFilter",
|
|
1255
|
+
LEARNING_ANALYTICS_PARTICIPANTS = "learningAnalyticsParticipants",
|
|
1256
|
+
LEARNING_ANALYTICS_EDUCATORS = "learningAnalyticsEducators",
|
|
1257
|
+
LEARNING_ANALYTICS_COURSES = "learningAnalyticsCourses",
|
|
1258
|
+
LEARNING_ANALYTICS_SCHEDULES = "learningAnalyticsSchedules",
|
|
1259
|
+
LEARNING_ANALYTICS_VIEW_TRAINING_SCHEDULES_SECTION = "learningAnalyticsTrainingSchedulesSection",
|
|
1260
|
+
LEARNING_ANALYTICS_COURSES_BY_OFFERING_MODE = "learningAnalyticsCoursesByOfferingMode",
|
|
1261
|
+
LEARNING_ANALYTICS_COURSES_BY_TRACK = "learningAnalyticsCoursesByTrack",
|
|
1262
|
+
LEARNING_ANALYTICS_COURSES_BY_TOPIC = "learningAnalyticsCoursesByTopic",
|
|
1263
|
+
LEARNING_ANALYTICS_COURSES_BY_ABCD = "learningAnalyticsCoursesByAbcd",
|
|
1264
|
+
LEARNING_ANALYTICS_COURSES_BY_SKILL = "learningAnalyticsCoursesBySkill",
|
|
1265
|
+
APPS_PAGE = "appsPage",
|
|
1266
|
+
APPS_PAGE_VIEW_DIFFERENT_APPS_ICONS = "appsPageViewDifferentAppsIcons",
|
|
1267
|
+
COURSE_CARD = "courseCard",
|
|
1268
|
+
COURSE_CARD_LIKE_THE_COURSE_BUTTON = "courseCardLikeTheCourseButton",
|
|
1269
|
+
COURSE_CARD_SHARE_THE_COURSE_BUTTON = "courseCardShareTheCourseButton",
|
|
1270
|
+
COURSE_CARD_ADD_COURSE_TO_GOALS_BUTTON = "courseCardAddCourseToGoalsButton",
|
|
1271
|
+
COURSE_CARD_ADD_COURSE_TO_PLAYLIST_BUTTON = "courseCardAddCourseToPlaylistButton",
|
|
1272
|
+
COURSE_CARD_VIEW_MORE_OPTIONS_BUTTON = "courseCardViewMoreOptionsButton",
|
|
1273
|
+
COURSE_CARD_START_COURSE_OPTION = "courseCardStartCourseOption",
|
|
1274
|
+
COURSE_CARD_VIEW_TOC_OPTION = "courseCardViewTocOption",
|
|
1275
|
+
COURSE_CARD_COHORTS_OPTION = "courseCardCohortsOption",
|
|
1276
|
+
COURSE_CARD_ANALYTICS_OPTION = "courseCardAnalyticsOption",
|
|
1277
|
+
SEARCH_RESULTS_PAGE = "searchResultsPage",
|
|
1278
|
+
SEARCH_RESULTS_PAGE_VIEW_LEARNING_SECTION = "searchResultsPageViewLearningSection",
|
|
1279
|
+
SEARCH_RESULTS_PAGE_VIEW_CERTIFICATIONS_SECTION = "searchResultsPageViewCertificationsSection",
|
|
1280
|
+
SEARCH_RESULTS_PAGE_VIEW_KNOWLEDGE_SECTION = "searchResultsPageViewKnowledgeSection",
|
|
1281
|
+
SEARCH_RESULTS_PAGE_VIEW_PROJECTS_SECTION = "searchResultsPageViewProjectsSection",
|
|
1282
|
+
SEARCH_RESULTS_PAGE_VIEW_SOCIAL_SECTION = "searchResultsPageViewSocialSection",
|
|
1283
|
+
SEARCH_RESULTS_PAGE_CATALOG_FILTER = "searchResultsPageCatalogFilter",
|
|
1284
|
+
SEARCH_RESULTS_PAGE_DURATION_FILTER = "searchResultsPageDurationFilter",
|
|
1285
|
+
SEARCH_RESULTS_PAGE_CONTENT_TYPE_FILTER = "searchResultsPageContentTypeFilter",
|
|
1286
|
+
SEARCH_RESULTS_PAGE_LEVEL_FILTER = "searchResultsPageLevelFilter",
|
|
1287
|
+
SEARCH_RESULTS_PAGE_SOURCE_FILTER = "searchResultsPageSourceFilter",
|
|
1288
|
+
SEARCH_RESULTS_PAGE_UNIT_FILTER = "searchResultsPageUnitFilter",
|
|
1289
|
+
SEARCH_RESULTS_PAGE_TYPE_FILTER = "searchResultsPageTypeFilter",
|
|
1290
|
+
SEARCH_RESULTS_PAGE_PUBLISHED_DATE_FILTER = "searchResultsPagePublishedDateFilter",
|
|
1291
|
+
SEARCH_RESULTS_PAGE_CATEGORY_FILTER = "searchResultsPageCategoryFilter",
|
|
1292
|
+
SEARCH_RESULTS_PAGE_ITEM_TYPE_FILTER = "searchResultsPageItemTypeFilter",
|
|
1293
|
+
SEARCH_RESULTS_PAGE_TOPICS_FILTER = "searchResultsPageTopicsFilter",
|
|
1294
|
+
SEARCH_RESULTS_PAGE_AUTHORS_FILTER = "searchResultsPageAuthorsFilter",
|
|
1295
|
+
SEARCH_RESULTS_PAGE_TAGS_FILTER = "searchResultsPageTagsFilter",
|
|
1296
|
+
SEARCH_RESULTS_PAGE_GROUPS_FILTER = "searchResultsPageGroupsFilter",
|
|
1297
|
+
SEARCH_RESULTS_PAGE_VIEW_RESULT_CARDS = "searchResultsPageViewResultCards",
|
|
1298
|
+
SEARCH_RESULTS_PAGE_VIEW_RELATED_CONCEPTS = "searchResultsPageViewRelatedConcepts",
|
|
1299
|
+
LAB_42_INTERVIEW = "interview",
|
|
1300
|
+
LAB_42_DIALOGUE = "dialogue",
|
|
1301
|
+
LAB_42_STRATEGY_MAP = "strategyMap",
|
|
1302
|
+
LAB_42_VIRTUAL_CLASSROOM = "virtualClassroom",
|
|
1303
|
+
LAB_42_PROJECT_STACK = "projectStack",
|
|
1304
|
+
LAB_42_LIVE_TRANSCRIBE = "liveTranscribe",
|
|
1305
|
+
LAB_42_EPOCH = "epoch",
|
|
1306
|
+
LEARNING_ASSISTANT_MAQ = "learning-assistant-maq",
|
|
1307
|
+
LEARNING_ASSISTANT_ILIPDP = "learning-assistant-ilipdp"
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
declare enum EInstance {
|
|
1311
|
+
INSTANCE = "RootOrg"
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
type TFetchStatus = 'none' | 'fetching' | 'done' | 'error' | 'hasMore';
|
|
1315
|
+
type TSendStatus = 'none' | 'sending' | 'done' | 'error';
|
|
1316
|
+
|
|
1317
|
+
declare class ClassChangeOnScrollDirective implements OnInit, OnDestroy, AfterViewInit {
|
|
1318
|
+
wsClassOnScrollDirChange: number;
|
|
1319
|
+
get isScrollingDown(): boolean;
|
|
1320
|
+
get isScrollingUp(): boolean;
|
|
1321
|
+
get isNotScrolling(): boolean;
|
|
1322
|
+
hasScrolledDown: boolean;
|
|
1323
|
+
private windowScrollSubscription;
|
|
1324
|
+
private timeoutTimer;
|
|
1325
|
+
private lastScreenTop;
|
|
1326
|
+
private currState;
|
|
1327
|
+
constructor();
|
|
1328
|
+
ngOnInit(): void;
|
|
1329
|
+
ngAfterViewInit(): void;
|
|
1330
|
+
ngOnDestroy(): void;
|
|
1331
|
+
private setScrollState;
|
|
1332
|
+
private resetScrollingState;
|
|
1333
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClassChangeOnScrollDirective, never>;
|
|
1334
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClassChangeOnScrollDirective, "[wsUtilsClassChangeOnScroll]", never, { "wsClassOnScrollDirChange": { "alias": "wsClassOnScrollDirChange"; "required": false; }; }, {}, never, never, false, never>;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
declare class ClassChangeOnScrollModule {
|
|
1338
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClassChangeOnScrollModule, never>;
|
|
1339
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ClassChangeOnScrollModule, [typeof ClassChangeOnScrollDirective], [typeof i2.CommonModule], [typeof ClassChangeOnScrollDirective]>;
|
|
1340
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ClassChangeOnScrollModule>;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
declare class DefaultThumbnailDirective implements OnChanges {
|
|
1344
|
+
wsUtilsDefaultThumbnail: string;
|
|
1345
|
+
src: string;
|
|
1346
|
+
isSrcUpdateAttemptedForDefault: boolean;
|
|
1347
|
+
srcUrl: string;
|
|
1348
|
+
updateSrc(): void;
|
|
1349
|
+
ngOnChanges(): void;
|
|
1350
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultThumbnailDirective, never>;
|
|
1351
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DefaultThumbnailDirective, "[wsUtilsDefaultThumbnail]", never, { "wsUtilsDefaultThumbnail": { "alias": "wsUtilsDefaultThumbnail"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, {}, never, never, false, never>;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
declare class DefaultThumbnailModule {
|
|
1355
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultThumbnailModule, never>;
|
|
1356
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DefaultThumbnailModule, [typeof DefaultThumbnailDirective], [typeof i2.CommonModule], [typeof DefaultThumbnailDirective]>;
|
|
1357
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DefaultThumbnailModule>;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
interface IImageResponsiveUnit {
|
|
1361
|
+
[key: string]: string;
|
|
1362
|
+
}
|
|
1363
|
+
declare class ImageResponsiveDirective implements OnChanges, OnDestroy {
|
|
1364
|
+
private breakpointObserver;
|
|
1365
|
+
src: IImageResponsiveUnit | null;
|
|
1366
|
+
srcBindUrl: string;
|
|
1367
|
+
currentSize: string;
|
|
1368
|
+
breakpointSubscription: Subscription | null;
|
|
1369
|
+
constructor(breakpointObserver: BreakpointObserver);
|
|
1370
|
+
ngOnChanges(): void;
|
|
1371
|
+
ngOnDestroy(): void;
|
|
1372
|
+
private setSrc;
|
|
1373
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageResponsiveDirective, never>;
|
|
1374
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageResponsiveDirective, "[wsUtilsImageResponsive]", never, { "src": { "alias": "src"; "required": false; }; }, {}, never, never, false, never>;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
declare class ImageResponsiveModule {
|
|
1378
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageResponsiveModule, never>;
|
|
1379
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageResponsiveModule, [typeof ImageResponsiveDirective], [typeof i2.CommonModule], [typeof ImageResponsiveDirective]>;
|
|
1380
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ImageResponsiveModule>;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
declare class InViewPortDirective implements OnInit, OnDestroy {
|
|
1384
|
+
private _el;
|
|
1385
|
+
private scroll;
|
|
1386
|
+
private resize;
|
|
1387
|
+
inViewport: EventEmitter<boolean>;
|
|
1388
|
+
constructor(_el: ElementRef);
|
|
1389
|
+
ngOnInit(): void;
|
|
1390
|
+
ngOnDestroy(): void;
|
|
1391
|
+
check(partial?: boolean, direction?: string): void;
|
|
1392
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InViewPortDirective, never>;
|
|
1393
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InViewPortDirective, "[wsUtilsInViewPort]", never, {}, { "inViewport": "inViewport"; }, never, never, false, never>;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
declare class InViewPortModule {
|
|
1397
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InViewPortModule, never>;
|
|
1398
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InViewPortModule, [typeof InViewPortDirective], [typeof i2.CommonModule], [typeof InViewPortDirective]>;
|
|
1399
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InViewPortModule>;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
declare class NavigationDirective implements OnChanges {
|
|
1403
|
+
wsUtilsNavigation: string;
|
|
1404
|
+
openInNewTab: boolean;
|
|
1405
|
+
routeUrl: string;
|
|
1406
|
+
onMouseEnter($event: Event): void;
|
|
1407
|
+
constructor();
|
|
1408
|
+
ngOnChanges(): void;
|
|
1409
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationDirective, never>;
|
|
1410
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NavigationDirective, "[wsUtilsNavigation]", never, { "wsUtilsNavigation": { "alias": "wsUtilsNavigation"; "required": false; }; "openInNewTab": { "alias": "openInNewTab"; "required": false; }; "routeUrl": { "alias": "routeUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
declare class NavigationModule {
|
|
1414
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationModule, never>;
|
|
1415
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationModule, [typeof NavigationDirective], [typeof i2.CommonModule], [typeof NavigationDirective]>;
|
|
1416
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationModule>;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare class PermissionDirective {
|
|
1420
|
+
constructor();
|
|
1421
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionDirective, never>;
|
|
1422
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PermissionDirective, "[wsUtilsPermission]", never, {}, {}, never, never, false, never>;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
declare class PermissionModule {
|
|
1426
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionModule, never>;
|
|
1427
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PermissionModule, [typeof PermissionDirective], [typeof i2.CommonModule], [typeof PermissionDirective]>;
|
|
1428
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PermissionModule>;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
declare function getStringifiedQueryParams(obj: {
|
|
1432
|
+
[key: string]: number | string | undefined | string[];
|
|
1433
|
+
}): string;
|
|
1434
|
+
|
|
1435
|
+
declare class HorizontalScrollerComponent implements OnInit, OnChanges, OnDestroy {
|
|
1436
|
+
loadStatus: TFetchStatus;
|
|
1437
|
+
onHover: boolean;
|
|
1438
|
+
loadNext: EventEmitter<any>;
|
|
1439
|
+
horizontalScrollElem: ElementRef | null;
|
|
1440
|
+
enablePrev: boolean;
|
|
1441
|
+
enableNext: boolean;
|
|
1442
|
+
private scrollObserver;
|
|
1443
|
+
constructor();
|
|
1444
|
+
ngOnInit(): void;
|
|
1445
|
+
ngOnChanges(): void;
|
|
1446
|
+
ngOnDestroy(): void;
|
|
1447
|
+
showPrev(): void;
|
|
1448
|
+
showNext(): void;
|
|
1449
|
+
private updateNavigationBtnStatus;
|
|
1450
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalScrollerComponent, never>;
|
|
1451
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalScrollerComponent, "ws-utils-horizontal-scroller", never, { "loadStatus": { "alias": "loadStatus"; "required": false; }; "onHover": { "alias": "onHover"; "required": false; }; }, { "loadNext": "loadNext"; }, never, ["*"], false, never>;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
declare class HorizontalScrollerModule {
|
|
1455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalScrollerModule, never>;
|
|
1456
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HorizontalScrollerModule, [typeof HorizontalScrollerComponent], [typeof i2.CommonModule, typeof i3$1.MatButtonModule, typeof i4.MatIconModule, typeof i5.MatProgressSpinnerModule], [typeof HorizontalScrollerComponent]>;
|
|
1457
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HorizontalScrollerModule>;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
declare class AuthKeycloakService {
|
|
1461
|
+
private loginChangeSubject;
|
|
1462
|
+
constructor();
|
|
1463
|
+
get isLoggedIn$(): rxjs.Observable<boolean>;
|
|
1464
|
+
/**
|
|
1465
|
+
* @deprecated this will be depricated
|
|
1466
|
+
*/
|
|
1467
|
+
logout(_redirectUrl?: string): Promise<void>;
|
|
1468
|
+
force_logout(): Promise<void>;
|
|
1469
|
+
private get defaultRedirectUrl();
|
|
1470
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthKeycloakService, never>;
|
|
1471
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthKeycloakService>;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
declare namespace WsEvents {
|
|
1475
|
+
interface IWsEventsFromWidget {
|
|
1476
|
+
type: 'widget';
|
|
1477
|
+
widgetType: string;
|
|
1478
|
+
widgetSubType: string;
|
|
1479
|
+
}
|
|
1480
|
+
interface IWsEventsFromPage {
|
|
1481
|
+
type: 'page';
|
|
1482
|
+
pageUrl: string;
|
|
1483
|
+
pageType: string;
|
|
1484
|
+
}
|
|
1485
|
+
enum WsEventType {
|
|
1486
|
+
Action = "Action",
|
|
1487
|
+
Telemetry = "Telemetry",
|
|
1488
|
+
PageNavigation = "PageNavigation",
|
|
1489
|
+
AccessRestrictedContentAccessed = "AccessRestrictedContentAccessed",
|
|
1490
|
+
PageSlow = "PageSlow",
|
|
1491
|
+
ErrorOccurred = "ErrorOccurred",
|
|
1492
|
+
WidgetResolveError = "WidgetResolveError"
|
|
1493
|
+
}
|
|
1494
|
+
enum WsEventLogLevel {
|
|
1495
|
+
Warn = "Warn",
|
|
1496
|
+
Error = "Error",
|
|
1497
|
+
Info = "Info",
|
|
1498
|
+
Log = "Log",
|
|
1499
|
+
Trace = "Trace"
|
|
1500
|
+
}
|
|
1501
|
+
enum WsAuditTypes {
|
|
1502
|
+
Created = "Created",
|
|
1503
|
+
Updated = "Updated",
|
|
1504
|
+
Deleted = "Deleted"
|
|
1505
|
+
}
|
|
1506
|
+
enum WsTimeSpentType {
|
|
1507
|
+
Page = "Page",
|
|
1508
|
+
Player = "Player"
|
|
1509
|
+
}
|
|
1510
|
+
enum WsTimeSpentMode {
|
|
1511
|
+
Play = "Play",
|
|
1512
|
+
View = "View"
|
|
1513
|
+
}
|
|
1514
|
+
enum externalTelemetrypdata {
|
|
1515
|
+
RBCP = "rbcp-web-ui"
|
|
1516
|
+
}
|
|
1517
|
+
interface IWsEvents<T> {
|
|
1518
|
+
eventType: WsEventType;
|
|
1519
|
+
eventLogLevel: WsEventLogLevel;
|
|
1520
|
+
from: IWsEventsFromWidget | IWsEventsFromPage | string;
|
|
1521
|
+
to: string;
|
|
1522
|
+
data: T;
|
|
1523
|
+
passThroughData?: any;
|
|
1524
|
+
pageContext?: any;
|
|
1525
|
+
}
|
|
1526
|
+
enum EnumTelemetrySubType {
|
|
1527
|
+
Init = "Init",
|
|
1528
|
+
Interact = "Interact",
|
|
1529
|
+
Loaded = "Loaded",
|
|
1530
|
+
Unloaded = "Unloaded",
|
|
1531
|
+
StateChange = "StateChange",
|
|
1532
|
+
HeartBeat = "HeartBeat",
|
|
1533
|
+
Search = "Search",
|
|
1534
|
+
Feedback = "Feedback",
|
|
1535
|
+
Impression = "Impression"
|
|
1536
|
+
}
|
|
1537
|
+
interface ITelemetryPageContext {
|
|
1538
|
+
pageId?: string;
|
|
1539
|
+
module?: string;
|
|
1540
|
+
pageIdExt?: string;
|
|
1541
|
+
}
|
|
1542
|
+
interface ITelemetryEdata {
|
|
1543
|
+
type: string;
|
|
1544
|
+
subType?: string;
|
|
1545
|
+
id?: string;
|
|
1546
|
+
pageid?: string;
|
|
1547
|
+
}
|
|
1548
|
+
interface ITelemetryTabData {
|
|
1549
|
+
label: string;
|
|
1550
|
+
index: number;
|
|
1551
|
+
}
|
|
1552
|
+
interface IWsEventTelemetry {
|
|
1553
|
+
eventSubType: EnumTelemetrySubType;
|
|
1554
|
+
pageContext?: ITelemetryPageContext;
|
|
1555
|
+
}
|
|
1556
|
+
enum EnumTelemetryPdfActivity {
|
|
1557
|
+
PAGE_CHANGED = "PAGE_CHANGED",
|
|
1558
|
+
FULLSCREEN_ACTIVATED = "FULLSCREEN_ACTIVATED",
|
|
1559
|
+
FULLSCREEN_DEACTIVATED = "FULLSCREEN_DEACTIVATED",
|
|
1560
|
+
ZOOM_CHANGE = "ZOOM_CHANGE",
|
|
1561
|
+
NONE = "NONE"
|
|
1562
|
+
}
|
|
1563
|
+
interface IWsEventTelemetryPdfData extends IWsEventTelemetry {
|
|
1564
|
+
activityType: EnumTelemetryPdfActivity;
|
|
1565
|
+
currentPage: number;
|
|
1566
|
+
totalPage: number;
|
|
1567
|
+
activityStartedAt: Date | null;
|
|
1568
|
+
object?: any;
|
|
1569
|
+
}
|
|
1570
|
+
type WsEventTelemetryPDF = IWsEvents<IWsEventTelemetryPdfData>;
|
|
1571
|
+
interface IWsEventTelemetryInteract extends IWsEventTelemetry {
|
|
1572
|
+
edata: ITelemetryEdata;
|
|
1573
|
+
object: any;
|
|
1574
|
+
pageContext?: ITelemetryPageContext;
|
|
1575
|
+
}
|
|
1576
|
+
interface IWsEventTelemetryFeedback extends IWsEventTelemetry {
|
|
1577
|
+
edata: ITelemetryEdata;
|
|
1578
|
+
object: any;
|
|
1579
|
+
pageContext?: ITelemetryPageContext;
|
|
1580
|
+
}
|
|
1581
|
+
interface IWsEventTelemetryImpression extends IWsEventTelemetry {
|
|
1582
|
+
edata?: ITelemetryEdata;
|
|
1583
|
+
object?: any;
|
|
1584
|
+
pageContext?: ITelemetryPageContext;
|
|
1585
|
+
}
|
|
1586
|
+
interface IWsEventTelemetrySearch extends IWsEventTelemetry {
|
|
1587
|
+
type: string;
|
|
1588
|
+
subType?: string;
|
|
1589
|
+
query?: string;
|
|
1590
|
+
filters?: string;
|
|
1591
|
+
size?: number;
|
|
1592
|
+
locale?: any;
|
|
1593
|
+
}
|
|
1594
|
+
interface IWsEventTelemetryHeartBeat extends IWsEventTelemetry {
|
|
1595
|
+
type: string;
|
|
1596
|
+
id: string;
|
|
1597
|
+
}
|
|
1598
|
+
type WsEventTelemetryInteract = IWsEvents<IWsEventTelemetryInteract>;
|
|
1599
|
+
type WsEventTelemetryFeedback = IWsEvents<IWsEventTelemetryFeedback>;
|
|
1600
|
+
type WsEventTelemetryImpression = IWsEvents<IWsEventTelemetryImpression>;
|
|
1601
|
+
type WsEventTelemetrySearch = IWsEvents<IWsEventTelemetrySearch>;
|
|
1602
|
+
type WsEventTelemetryHeartBeat = IWsEvents<IWsEventTelemetryHeartBeat>;
|
|
1603
|
+
enum EnumTelemetryMediaActivity {
|
|
1604
|
+
PLAYED = "PLAYED",
|
|
1605
|
+
PAUSED = "PAUSED",
|
|
1606
|
+
SEEKED = "SEEKED",
|
|
1607
|
+
ENDED = "ENDED",
|
|
1608
|
+
VOLUME_CHANGE = "VOLUME_CHANGE",
|
|
1609
|
+
MUTE = "MUTE",
|
|
1610
|
+
UNMUTE = "UNMUTE",
|
|
1611
|
+
PLAYBACK_SPEED_CHANGE = "PLAYBACK_SPEED_CHANGE",
|
|
1612
|
+
FULLSCREEN_ACTIVATED = "FULLSCREEN_ACTIVATED",
|
|
1613
|
+
FULLSCREEN_DEACTIVATED = "FULLSCREEN_DEACTIVATED",
|
|
1614
|
+
PICTURE_IN_PICTURE_ACTIVATED = "PICTURE_IN_PICTURE_ACTIVATED",
|
|
1615
|
+
PICTURE_IN_PICTURE_DEACTIVATED = "PICTURE_IN_PICTURE_DEACTIVATED",
|
|
1616
|
+
NONE = "NONE"
|
|
1617
|
+
}
|
|
1618
|
+
enum EnumTelemetryMediaState {
|
|
1619
|
+
PLAYING = "PLAYING",
|
|
1620
|
+
PAUSED = "PAUSED",
|
|
1621
|
+
ENDED = "ENDED",
|
|
1622
|
+
BUFFERING = "BUFFERING",
|
|
1623
|
+
NOT_STARTED = "NOT_STARTED"
|
|
1624
|
+
}
|
|
1625
|
+
interface IWsEventTelemetryMediaData extends IWsEventTelemetry {
|
|
1626
|
+
currentState: EnumTelemetryMediaState;
|
|
1627
|
+
activityType: EnumTelemetryMediaActivity;
|
|
1628
|
+
currentTime: number | null;
|
|
1629
|
+
totalTime: number | null;
|
|
1630
|
+
maxedSeekedTime: number;
|
|
1631
|
+
activityStartedAt?: Date | null;
|
|
1632
|
+
}
|
|
1633
|
+
type WsEventTelemetryMedia = IWsEvents<IWsEventTelemetryMediaData>;
|
|
1634
|
+
enum EnumTelemetrymodules {
|
|
1635
|
+
CONTENT = "content",
|
|
1636
|
+
FEEDBACK = "feedback",
|
|
1637
|
+
COURSE = "course",
|
|
1638
|
+
PROGRAM = "program",
|
|
1639
|
+
EXPLORE = "explore",
|
|
1640
|
+
LEARN = "learn",
|
|
1641
|
+
HOME = "home",
|
|
1642
|
+
DASHBOARD = "dashboard",
|
|
1643
|
+
SEARCH = "search",
|
|
1644
|
+
DISCUSS = "discuss",
|
|
1645
|
+
COMPETENCY = "competency",
|
|
1646
|
+
EVENTS = "events",
|
|
1647
|
+
CAREER = "career",
|
|
1648
|
+
PROFILE = "profile",
|
|
1649
|
+
NETWORK = "network",
|
|
1650
|
+
SUPPORT = "support"
|
|
1651
|
+
}
|
|
1652
|
+
enum EnumInteractTypes {
|
|
1653
|
+
CLICK = "click"
|
|
1654
|
+
}
|
|
1655
|
+
enum EnumInteractSubTypes {
|
|
1656
|
+
COURSE_TAB = "course-tab",
|
|
1657
|
+
CAREER_TAB = "career-tab",
|
|
1658
|
+
NETWORK_TAB = "network-tab",
|
|
1659
|
+
COMPETENCY_TAB = "competency-tab",
|
|
1660
|
+
PROFILE_EDIT_TAB = "profile-edit-tab",
|
|
1661
|
+
DISCUSS_TAB = "discuss-tab",
|
|
1662
|
+
EVENTS_TAB = "events-tab",
|
|
1663
|
+
SIDE_MENU = "side-menu",
|
|
1664
|
+
HOME_PAGE_STRIP_TABS = "home-page-strip-tabs"
|
|
1665
|
+
}
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
interface IRecursiveData {
|
|
1669
|
+
identifier: string;
|
|
1670
|
+
children: null | IRecursiveData[];
|
|
1671
|
+
}
|
|
1672
|
+
declare class UtilityService {
|
|
1673
|
+
private http;
|
|
1674
|
+
private platform;
|
|
1675
|
+
private router;
|
|
1676
|
+
private route;
|
|
1677
|
+
currentRouteData: any[];
|
|
1678
|
+
constructor(http: HttpClient, platform: Platform, router: Router, route: ActivatedRoute);
|
|
1679
|
+
private getChildRouteData;
|
|
1680
|
+
get randomId(): number;
|
|
1681
|
+
getJson<T>(url: string): Observable<T>;
|
|
1682
|
+
getLeafNodes<T extends IRecursiveData>(node: T, nodes: T[]): T[];
|
|
1683
|
+
getPath<T extends IRecursiveData>(node: T, id: string): T[];
|
|
1684
|
+
private hasPath;
|
|
1685
|
+
get isMobile(): boolean;
|
|
1686
|
+
get isIos(): boolean;
|
|
1687
|
+
get isAndroid(): boolean;
|
|
1688
|
+
get isAndroidApp(): boolean;
|
|
1689
|
+
get iOsAppRef(): any;
|
|
1690
|
+
setRouteData(data: any): void;
|
|
1691
|
+
get routeData(): WsEvents.ITelemetryPageContext;
|
|
1692
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityService, never>;
|
|
1693
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilityService>;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
declare class LogoutComponent implements OnInit {
|
|
1697
|
+
dialogRef: MatDialogRef<LogoutComponent>;
|
|
1698
|
+
private authSvc;
|
|
1699
|
+
private configSvc;
|
|
1700
|
+
private utilitySvc;
|
|
1701
|
+
disabled: boolean;
|
|
1702
|
+
isDownloadableIos: boolean;
|
|
1703
|
+
isDownloadableAndroid: boolean;
|
|
1704
|
+
constructor(dialogRef: MatDialogRef<LogoutComponent>, authSvc: AuthKeycloakService, configSvc: ConfigurationsService, utilitySvc: UtilityService);
|
|
1705
|
+
ngOnInit(): void;
|
|
1706
|
+
confirmed(): void;
|
|
1707
|
+
get isDownloadable(): boolean;
|
|
1708
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoutComponent, never>;
|
|
1709
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoutComponent, "ws-utils-logout", never, {}, {}, never, never, false, never>;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
declare class LogoutModule {
|
|
1713
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoutModule, never>;
|
|
1714
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LogoutModule, [typeof LogoutComponent], [typeof i2.CommonModule, typeof i3$1.MatButtonModule, typeof i6.MatDialogModule], never>;
|
|
1715
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LogoutModule>;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
interface IDateRange {
|
|
1719
|
+
fromDate: Date;
|
|
1720
|
+
toDate: Date;
|
|
1721
|
+
timeZone?: string;
|
|
1722
|
+
}
|
|
1723
|
+
declare class PipeConciseDateRangePipe implements PipeTransform {
|
|
1724
|
+
transform(dateRange: IDateRange): string;
|
|
1725
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeConciseDateRangePipe, never>;
|
|
1726
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeConciseDateRangePipe, "pipeConciseDateRange", false>;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
declare class PipeConciseDateRangeModule {
|
|
1730
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeConciseDateRangeModule, never>;
|
|
1731
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeConciseDateRangeModule, [typeof PipeConciseDateRangePipe], [typeof i2.CommonModule], [typeof PipeConciseDateRangePipe]>;
|
|
1732
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeConciseDateRangeModule>;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
declare class PipeCountTransformPipe implements PipeTransform {
|
|
1736
|
+
transform(value: number): string;
|
|
1737
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeCountTransformPipe, never>;
|
|
1738
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeCountTransformPipe, "pipeCountTransform", false>;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
declare class PipeCountTransformModule {
|
|
1742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeCountTransformModule, never>;
|
|
1743
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeCountTransformModule, [typeof PipeCountTransformPipe], [typeof i2.CommonModule], [typeof PipeCountTransformPipe]>;
|
|
1744
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeCountTransformModule>;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
interface ICertificationDate {
|
|
1748
|
+
day: number;
|
|
1749
|
+
month: number;
|
|
1750
|
+
year: number;
|
|
1751
|
+
timeZone?: string;
|
|
1752
|
+
}
|
|
1753
|
+
declare class PipeDateConcatPipe implements PipeTransform {
|
|
1754
|
+
private readonly months;
|
|
1755
|
+
constructor();
|
|
1756
|
+
transform(value: ICertificationDate): string;
|
|
1757
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeDateConcatPipe, never>;
|
|
1758
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeDateConcatPipe, "pipeDateConcat", false>;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
declare class PipeDateConcatModule {
|
|
1762
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeDateConcatModule, never>;
|
|
1763
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeDateConcatModule, [typeof PipeDateConcatPipe], [typeof i2.CommonModule], [typeof PipeDateConcatPipe]>;
|
|
1764
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeDateConcatModule>;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
declare class PipeDurationTransformPipe implements PipeTransform {
|
|
1768
|
+
transform(data: number, type: 'time24' | 'hms' | 'hour'): any;
|
|
1769
|
+
defaultDuration(h: number, m: number, s: number): string;
|
|
1770
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeDurationTransformPipe, never>;
|
|
1771
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeDurationTransformPipe, "pipeDurationTransform", false>;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
declare class PipeDurationTransformModule {
|
|
1775
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeDurationTransformModule, never>;
|
|
1776
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeDurationTransformModule, [typeof PipeDurationTransformPipe], [typeof i2.CommonModule], [typeof PipeDurationTransformPipe]>;
|
|
1777
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeDurationTransformModule>;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
declare class PipeHtmlTagRemovalPipe implements PipeTransform {
|
|
1781
|
+
transform(htmlString: string): string;
|
|
1782
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeHtmlTagRemovalPipe, never>;
|
|
1783
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeHtmlTagRemovalPipe, "pipeHtmlTagRemoval", false>;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
declare class PipeHtmlTagRemovalModule {
|
|
1787
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeHtmlTagRemovalModule, never>;
|
|
1788
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeHtmlTagRemovalModule, [typeof PipeHtmlTagRemovalPipe], [typeof i2.CommonModule], [typeof PipeHtmlTagRemovalPipe]>;
|
|
1789
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeHtmlTagRemovalModule>;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
declare class PipeFilterPipe implements PipeTransform {
|
|
1793
|
+
transform(value: any, keys: string, term: string): string;
|
|
1794
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeFilterPipe, never>;
|
|
1795
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeFilterPipe, "pipeFilter", false>;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
declare class PipeFilterModule {
|
|
1799
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeFilterModule, never>;
|
|
1800
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeFilterModule, [typeof PipeFilterPipe], [typeof i2.CommonModule], [typeof PipeFilterPipe]>;
|
|
1801
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeFilterModule>;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
declare class PipeFilterSearchPipe implements PipeTransform {
|
|
1805
|
+
transform(items: any[], searchText: string, ...keys: any): any;
|
|
1806
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeFilterSearchPipe, never>;
|
|
1807
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeFilterSearchPipe, "pipeFilterSearch", false>;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
declare class PipeFilterSearchModule {
|
|
1811
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeFilterSearchModule, never>;
|
|
1812
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeFilterSearchModule, [typeof PipeFilterSearchPipe], [typeof i2.CommonModule], [typeof PipeFilterSearchPipe]>;
|
|
1813
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeFilterSearchModule>;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
declare class PipeListFilterPipe implements PipeTransform {
|
|
1817
|
+
transform(value: any, keys: string, term: string): string;
|
|
1818
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeListFilterPipe, never>;
|
|
1819
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeListFilterPipe, "pipeListFilter", false>;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
declare class PipeListFilterModule {
|
|
1823
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeListFilterModule, never>;
|
|
1824
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeListFilterModule, [typeof PipeListFilterPipe], [typeof i2.CommonModule], [typeof PipeListFilterPipe]>;
|
|
1825
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeListFilterModule>;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
declare class PipeRelativeTimePipe implements PipeTransform {
|
|
1829
|
+
transform(value: number): string;
|
|
1830
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeRelativeTimePipe, never>;
|
|
1831
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeRelativeTimePipe, "pipeRelativeTime", false>;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
declare class PipeRelativeTimeModule {
|
|
1835
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeRelativeTimeModule, never>;
|
|
1836
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeRelativeTimeModule, [typeof PipeRelativeTimePipe], [typeof i2.CommonModule], [typeof PipeRelativeTimePipe]>;
|
|
1837
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeRelativeTimeModule>;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
declare class OrderByPipe implements PipeTransform {
|
|
1841
|
+
transform: {
|
|
1842
|
+
<T>(collection: lodash.List<T> | null | undefined, iteratees?: lodash.Many<lodash.ListIterator<T, lodash.NotVoid>>, orders?: lodash.Many<boolean | "asc" | "desc">): T[];
|
|
1843
|
+
<T>(collection: lodash.List<T> | null | undefined, iteratees?: lodash.Many<lodash.ListIteratee<T>>, orders?: lodash.Many<boolean | "asc" | "desc">): T[];
|
|
1844
|
+
<T extends object>(collection: T | null | undefined, iteratees?: lodash.Many<lodash.ObjectIterator<T, lodash.NotVoid>>, orders?: lodash.Many<boolean | "asc" | "desc">): Array<T[keyof T]>;
|
|
1845
|
+
<T extends object>(collection: T | null | undefined, iteratees?: lodash.Many<lodash.ObjectIteratee<T>>, orders?: lodash.Many<boolean | "asc" | "desc">): Array<T[keyof T]>;
|
|
1846
|
+
};
|
|
1847
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderByPipe, never>;
|
|
1848
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<OrderByPipe, "orderBy", false>;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
declare class PipeOrderByModule {
|
|
1852
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeOrderByModule, never>;
|
|
1853
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeOrderByModule, [typeof OrderByPipe], [typeof i2.CommonModule], [typeof OrderByPipe]>;
|
|
1854
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeOrderByModule>;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
declare class PipeLimitToPipe implements PipeTransform {
|
|
1858
|
+
transform(data: any, limit?: number): any;
|
|
1859
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeLimitToPipe, never>;
|
|
1860
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeLimitToPipe, "pipeLimitTo", false>;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
declare class PipeLimitToModule {
|
|
1864
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeLimitToModule, never>;
|
|
1865
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeLimitToModule, [typeof PipeLimitToPipe], [typeof i2.CommonModule], [typeof PipeLimitToPipe]>;
|
|
1866
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeLimitToModule>;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
interface IUserName {
|
|
1870
|
+
firstName: string;
|
|
1871
|
+
lastName: string;
|
|
1872
|
+
email: string;
|
|
1873
|
+
}
|
|
1874
|
+
declare class PipeNameTransformPipe implements PipeTransform {
|
|
1875
|
+
transform(value: IUserName): string;
|
|
1876
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeNameTransformPipe, never>;
|
|
1877
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeNameTransformPipe, "pipeNameTransform", false>;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
declare class PipeNameTransformModule {
|
|
1881
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeNameTransformModule, never>;
|
|
1882
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeNameTransformModule, [typeof PipeNameTransformPipe], [typeof i2.CommonModule], [typeof PipeNameTransformPipe]>;
|
|
1883
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeNameTransformModule>;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
declare class PipePartialContentPipe implements PipeTransform {
|
|
1887
|
+
transform(value: any, keys: string[]): any;
|
|
1888
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipePartialContentPipe, never>;
|
|
1889
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipePartialContentPipe, "pipePartialContent", false>;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
declare class PipePartialContentModule {
|
|
1893
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipePartialContentModule, never>;
|
|
1894
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipePartialContentModule, [typeof PipePartialContentPipe], [typeof i2.CommonModule], [typeof PipePartialContentPipe]>;
|
|
1895
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipePartialContentModule>;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
declare class PipeSafeSanitizerPipe implements PipeTransform {
|
|
1899
|
+
protected sanitizer: DomSanitizer;
|
|
1900
|
+
constructor(sanitizer: DomSanitizer);
|
|
1901
|
+
transform(value: string, type?: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
|
|
1902
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeSafeSanitizerPipe, never>;
|
|
1903
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PipeSafeSanitizerPipe, "pipeSafeSanitizer", false>;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
declare class PipeSafeSanitizerModule {
|
|
1907
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeSafeSanitizerModule, never>;
|
|
1908
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeSafeSanitizerModule, [typeof PipeSafeSanitizerPipe], [typeof i2.CommonModule], [typeof PipeSafeSanitizerPipe]>;
|
|
1909
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeSafeSanitizerModule>;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
interface IResolveResponse<T> {
|
|
1913
|
+
data: T | null;
|
|
1914
|
+
error: any | null;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
declare class ExploreDetailResolve {
|
|
1918
|
+
private http;
|
|
1919
|
+
private configSvc;
|
|
1920
|
+
private utilitySvc;
|
|
1921
|
+
private baseUrl;
|
|
1922
|
+
isIntranetAllowedSettings: boolean;
|
|
1923
|
+
constructor(http: HttpClient, configSvc: ConfigurationsService, utilitySvc: UtilityService);
|
|
1924
|
+
resolve(route: ActivatedRouteSnapshot, _state: RouterStateSnapshot): Observable<IResolveResponse<any>>;
|
|
1925
|
+
private transformPageData;
|
|
1926
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExploreDetailResolve, never>;
|
|
1927
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExploreDetailResolve>;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
declare class MarketingOfferingResolve {
|
|
1931
|
+
private http;
|
|
1932
|
+
constructor(http: HttpClient);
|
|
1933
|
+
resolve(route: ActivatedRouteSnapshot, _state: RouterStateSnapshot): Observable<IResolveResponse<any>>;
|
|
1934
|
+
private transformPageData;
|
|
1935
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MarketingOfferingResolve, never>;
|
|
1936
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MarketingOfferingResolve>;
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
declare class PageResolve {
|
|
1940
|
+
private configSvc;
|
|
1941
|
+
private http;
|
|
1942
|
+
private locale;
|
|
1943
|
+
private baseUrl;
|
|
1944
|
+
constructor(configSvc: ConfigurationsService, http: HttpClient, locale: string);
|
|
1945
|
+
resolve(route: ActivatedRouteSnapshot): Observable<IResolveResponse<NsPage.IPage>> | IResolveResponse<NsPage.IPage>;
|
|
1946
|
+
private setS3Cookie;
|
|
1947
|
+
private getContent;
|
|
1948
|
+
private getData;
|
|
1949
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageResolve, never>;
|
|
1950
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PageResolve>;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
declare class LoggerService {
|
|
1954
|
+
private configSvc;
|
|
1955
|
+
constructor(configSvc: ConfigurationsService);
|
|
1956
|
+
private consoleError;
|
|
1957
|
+
private consoleInfo;
|
|
1958
|
+
private consoleLog;
|
|
1959
|
+
private consoleWarn;
|
|
1960
|
+
private noConsole;
|
|
1961
|
+
get error(): (...data: any[]) => void;
|
|
1962
|
+
get info(): (...data: any[]) => void;
|
|
1963
|
+
get log(): (...data: any[]) => void;
|
|
1964
|
+
get warn(): (...data: any[]) => void;
|
|
1965
|
+
removeConsoleAccess(): void;
|
|
1966
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoggerService, never>;
|
|
1967
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoggerService>;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
interface IWsMsTokenModelResponse {
|
|
1971
|
+
accessToken?: string;
|
|
1972
|
+
expiresOn?: string;
|
|
1973
|
+
resource?: string;
|
|
1974
|
+
tokenType?: string;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
declare class AuthMicrosoftService {
|
|
1978
|
+
private loggerSvc;
|
|
1979
|
+
private http;
|
|
1980
|
+
private msConfig;
|
|
1981
|
+
private emailUsed;
|
|
1982
|
+
private code;
|
|
1983
|
+
private msToken;
|
|
1984
|
+
constructor(loggerSvc: LoggerService, http: HttpClient);
|
|
1985
|
+
get isLogoutRequired(): boolean;
|
|
1986
|
+
get loginUrl(): string | null;
|
|
1987
|
+
logoutUrl(redirectUrl: string): string;
|
|
1988
|
+
init(config: Pick<NsInstanceConfig.IConfig, 'microsoft'>): Promise<void>;
|
|
1989
|
+
login(email: string): Promise<void>;
|
|
1990
|
+
getToken(email: string): Promise<string>;
|
|
1991
|
+
loginForSSOEnabledEmbed(email: string): void;
|
|
1992
|
+
isValidEmail(email: string): boolean;
|
|
1993
|
+
isValid(accessToken: string | undefined, expiresOn: string | undefined): boolean;
|
|
1994
|
+
exchangeTokenForCode(code: string, redirectUrl: string): Promise<any>;
|
|
1995
|
+
getTokenForEmail(email: string): Promise<any>;
|
|
1996
|
+
getInstanceFromResponse(token: IWsMsTokenModelResponse): {
|
|
1997
|
+
accessToken: string | undefined;
|
|
1998
|
+
expiresOn: string | undefined;
|
|
1999
|
+
resource: string | undefined;
|
|
2000
|
+
tokenType: string | undefined;
|
|
2001
|
+
};
|
|
2002
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthMicrosoftService, never>;
|
|
2003
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthMicrosoftService>;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
declare class EventService {
|
|
2007
|
+
private utilitySvc;
|
|
2008
|
+
todaysEvents: any;
|
|
2009
|
+
private eventsSubject;
|
|
2010
|
+
events$: rxjs.Observable<WsEvents.IWsEvents<any>>;
|
|
2011
|
+
private eventsChatbotSubject;
|
|
2012
|
+
chatbotEvents$: rxjs.Observable<WsEvents.IWsEvents<any>>;
|
|
2013
|
+
private eventsGetStartSubject;
|
|
2014
|
+
getStartEvents$: rxjs.Observable<WsEvents.IWsEvents<any>>;
|
|
2015
|
+
private eventsPRSubject;
|
|
2016
|
+
getPREvents$: rxjs.Observable<WsEvents.IWsEvents<any>>;
|
|
2017
|
+
environment: any;
|
|
2018
|
+
constructor(utilitySvc: UtilityService, environment: any);
|
|
2019
|
+
dispatchEvent<T>(event: WsEvents.IWsEvents<T>): void;
|
|
2020
|
+
dispatchChatbotEvent<T>(event: WsEvents.IWsEvents<T>): void;
|
|
2021
|
+
dispatchGetStartedEvent<T>(event: WsEvents.IWsEvents<T>): void;
|
|
2022
|
+
dispatchPlatformRatingEvent<T>(event: WsEvents.IWsEvents<T>): void;
|
|
2023
|
+
raiseInteractTelemetry(edata: WsEvents.ITelemetryEdata, object: any, pageContext?: WsEvents.ITelemetryPageContext): void;
|
|
2024
|
+
raiseFeedbackTelemetry(edata: WsEvents.ITelemetryEdata, object: any, from?: string): void;
|
|
2025
|
+
raiseCustomImpression(object: any, pageContext?: WsEvents.ITelemetryPageContext): void;
|
|
2026
|
+
private getContext;
|
|
2027
|
+
handleTabTelemetry(subType: string, data: WsEvents.ITelemetryTabData, object?: any): void;
|
|
2028
|
+
getPublicUrl(url: string): string;
|
|
2029
|
+
allEventDateFormat(datetime: any): string;
|
|
2030
|
+
compareDate(startDate: any): boolean;
|
|
2031
|
+
customDateFormat(date: any, time: any): string;
|
|
2032
|
+
setEventListData(eventObj: any): void;
|
|
2033
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EventService, never>;
|
|
2034
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EventService>;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
interface IContentRating {
|
|
2038
|
+
averageRating: string;
|
|
2039
|
+
ratingCount: number;
|
|
2040
|
+
ratingInfo: IRatingInfo[];
|
|
2041
|
+
}
|
|
2042
|
+
interface IRatingInfo {
|
|
2043
|
+
rating: number;
|
|
2044
|
+
count: number;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
declare namespace NsContent {
|
|
2048
|
+
export interface IContinueLearningData extends IContent {
|
|
2049
|
+
continueData: any;
|
|
2050
|
+
}
|
|
2051
|
+
export interface IContent {
|
|
2052
|
+
platform?: any;
|
|
2053
|
+
addedOn: string;
|
|
2054
|
+
appIcon: string;
|
|
2055
|
+
artifactUrl: string;
|
|
2056
|
+
averageRating?: any;
|
|
2057
|
+
body?: string;
|
|
2058
|
+
certificationList?: IRelatedContentMeta[];
|
|
2059
|
+
certificationStatus?: TCertificationStatus;
|
|
2060
|
+
certificationSubmissionDate?: string;
|
|
2061
|
+
certificationUrl: string;
|
|
2062
|
+
children: IContent[];
|
|
2063
|
+
childrenClassifiers?: string[];
|
|
2064
|
+
clients?: IClient[];
|
|
2065
|
+
collections?: IContent[];
|
|
2066
|
+
complexityLevel: string;
|
|
2067
|
+
contentId: string;
|
|
2068
|
+
contentType: EContentTypes;
|
|
2069
|
+
contentUrlAtSource: string;
|
|
2070
|
+
creatorContacts: ICreator[];
|
|
2071
|
+
creatorDetails: ICreator[];
|
|
2072
|
+
creatorLogo: string;
|
|
2073
|
+
creatorPosterImage: string;
|
|
2074
|
+
creatorThumbnail: string;
|
|
2075
|
+
curatedTags: string[];
|
|
2076
|
+
description: string;
|
|
2077
|
+
displayContentType: EDisplayContentTypes;
|
|
2078
|
+
downloadUrl?: string;
|
|
2079
|
+
duration: number;
|
|
2080
|
+
exclusiveContent?: boolean;
|
|
2081
|
+
expiryDate?: string;
|
|
2082
|
+
equivalentCertifications?: IRelatedContentMeta[];
|
|
2083
|
+
hasAccess: boolean;
|
|
2084
|
+
hasAssessment?: string;
|
|
2085
|
+
idealScreenSize?: string;
|
|
2086
|
+
identifier: string;
|
|
2087
|
+
introductoryVideo?: string;
|
|
2088
|
+
introductoryVideoIcon?: string;
|
|
2089
|
+
learningTrack?: string;
|
|
2090
|
+
isExternal: boolean;
|
|
2091
|
+
isIframeSupported: 'Yes' | 'No' | 'Maybe';
|
|
2092
|
+
isInIntranet?: boolean;
|
|
2093
|
+
keywords?: string[];
|
|
2094
|
+
kArtifacts?: IRelatedContentMeta[];
|
|
2095
|
+
lastUpdatedOn: string;
|
|
2096
|
+
learningMode?: TLearningMode;
|
|
2097
|
+
learningObjective: string;
|
|
2098
|
+
labels?: string[];
|
|
2099
|
+
locale?: string;
|
|
2100
|
+
hasTranslations?: {
|
|
2101
|
+
identifier: string;
|
|
2102
|
+
locale: string;
|
|
2103
|
+
}[];
|
|
2104
|
+
isTranslationOf?: {
|
|
2105
|
+
identifier: string;
|
|
2106
|
+
locale: string;
|
|
2107
|
+
}[];
|
|
2108
|
+
me_totalSessionsCount: number;
|
|
2109
|
+
mediaType: string;
|
|
2110
|
+
mimeType: EMimeTypes;
|
|
2111
|
+
minWingspanVersion?: string;
|
|
2112
|
+
msArtifactDetails?: IMSArtifactDetails;
|
|
2113
|
+
mode?: ETagType;
|
|
2114
|
+
name: string;
|
|
2115
|
+
nextCertificationAttemptDate?: string;
|
|
2116
|
+
playgroundInstructions?: string;
|
|
2117
|
+
playgroundResources?: IResourcePlayground[];
|
|
2118
|
+
postContents?: IPrePostContent[];
|
|
2119
|
+
posterImage?: string;
|
|
2120
|
+
preContents?: IPrePostContent[];
|
|
2121
|
+
preRequisites: string;
|
|
2122
|
+
price?: {
|
|
2123
|
+
currency: string;
|
|
2124
|
+
value: number;
|
|
2125
|
+
};
|
|
2126
|
+
proctorUrl?: string;
|
|
2127
|
+
progress?: IMarkAsCompleteProgress;
|
|
2128
|
+
publishedOn: string;
|
|
2129
|
+
recentCertificationAttemptScore?: number;
|
|
2130
|
+
recommendationReasons?: string[];
|
|
2131
|
+
region?: string[];
|
|
2132
|
+
registrationUrl?: string;
|
|
2133
|
+
registrationInstructions?: string;
|
|
2134
|
+
resourceCategory?: string[];
|
|
2135
|
+
resourceType: string;
|
|
2136
|
+
size?: number;
|
|
2137
|
+
skills: ISkill[];
|
|
2138
|
+
softwareRequirements?: IResourceDetail[];
|
|
2139
|
+
sourceName: string;
|
|
2140
|
+
sourceShortName: string;
|
|
2141
|
+
sourceIconUrl?: string;
|
|
2142
|
+
sourceUrl?: string;
|
|
2143
|
+
ssoEnabled?: boolean;
|
|
2144
|
+
status: 'Draft' | 'InReview' | 'QualityReview' | 'Reviewed' | 'Processing' | 'Live' | 'Deleted' | 'MarkedForDeletion' | 'Expired';
|
|
2145
|
+
subTitle?: string;
|
|
2146
|
+
subTitles?: ISubtitle[];
|
|
2147
|
+
studyMaterials?: IRelatedContentMeta[];
|
|
2148
|
+
systemRequirements?: string[];
|
|
2149
|
+
tags: ITag[];
|
|
2150
|
+
topics: IContentTopic[];
|
|
2151
|
+
totalLikes?: {
|
|
2152
|
+
[key: string]: number;
|
|
2153
|
+
};
|
|
2154
|
+
totalRating?: number;
|
|
2155
|
+
track: ITrack[];
|
|
2156
|
+
uniqueLearners?: number;
|
|
2157
|
+
viewCount?: {
|
|
2158
|
+
[key: string]: number;
|
|
2159
|
+
};
|
|
2160
|
+
reason?: string;
|
|
2161
|
+
trainingLHubCount?: number;
|
|
2162
|
+
verifiers?: {
|
|
2163
|
+
name: string;
|
|
2164
|
+
email: string;
|
|
2165
|
+
id: string;
|
|
2166
|
+
}[];
|
|
2167
|
+
references?: {
|
|
2168
|
+
url: string;
|
|
2169
|
+
title: string;
|
|
2170
|
+
}[];
|
|
2171
|
+
resumePage?: number;
|
|
2172
|
+
[key: string]: any;
|
|
2173
|
+
}
|
|
2174
|
+
export interface IContentMinimal {
|
|
2175
|
+
appIcon: string;
|
|
2176
|
+
artifactUrl: string;
|
|
2177
|
+
complexityLevel: string;
|
|
2178
|
+
contentType: EContentTypes;
|
|
2179
|
+
description: string;
|
|
2180
|
+
displayContentType?: EDisplayContentTypes;
|
|
2181
|
+
duration: number;
|
|
2182
|
+
identifier: string;
|
|
2183
|
+
hasAccess?: boolean;
|
|
2184
|
+
isInIntranet?: boolean;
|
|
2185
|
+
learningMode?: TLearningMode;
|
|
2186
|
+
mimeType: EMimeTypes;
|
|
2187
|
+
name: string;
|
|
2188
|
+
creatorDetails: ICreator[];
|
|
2189
|
+
creatorContacts: ICreator[];
|
|
2190
|
+
PosterImage: string;
|
|
2191
|
+
resourceType?: string;
|
|
2192
|
+
totalRating?: number;
|
|
2193
|
+
}
|
|
2194
|
+
export interface ICollectionHierarchyResponse {
|
|
2195
|
+
data: IContent;
|
|
2196
|
+
hasMore: boolean;
|
|
2197
|
+
totalContents: number;
|
|
2198
|
+
}
|
|
2199
|
+
export interface IRelatedContentMeta {
|
|
2200
|
+
identifier: string;
|
|
2201
|
+
name: string;
|
|
2202
|
+
}
|
|
2203
|
+
type TCertificationStatus = 'ongoing' | 'passed' | 'canAttempt' | 'cannotAttempt';
|
|
2204
|
+
export type TLearningMode = 'Self-Paced' | 'Instructor-Led' | 'Open' | 'Closed';
|
|
2205
|
+
interface IMarkAsCompleteProgress {
|
|
2206
|
+
progressStatus: 'open' | 'started' | 'completed';
|
|
2207
|
+
showMarkAsComplete: boolean;
|
|
2208
|
+
markAsCompleteReason: string;
|
|
2209
|
+
progressSupported: boolean;
|
|
2210
|
+
progress: number | null;
|
|
2211
|
+
}
|
|
2212
|
+
interface ITag {
|
|
2213
|
+
id: string;
|
|
2214
|
+
type: string;
|
|
2215
|
+
value: string;
|
|
2216
|
+
}
|
|
2217
|
+
interface IMSArtifactDetails {
|
|
2218
|
+
channelId: string;
|
|
2219
|
+
videoId: string;
|
|
2220
|
+
}
|
|
2221
|
+
interface IClient {
|
|
2222
|
+
displayName: string;
|
|
2223
|
+
id: string;
|
|
2224
|
+
name: string;
|
|
2225
|
+
}
|
|
2226
|
+
interface ISubtitle {
|
|
2227
|
+
srclang: string;
|
|
2228
|
+
label: string;
|
|
2229
|
+
url: string;
|
|
2230
|
+
}
|
|
2231
|
+
interface IPrePostContent {
|
|
2232
|
+
identifier: string;
|
|
2233
|
+
name: string;
|
|
2234
|
+
}
|
|
2235
|
+
interface IResourceDetail {
|
|
2236
|
+
title?: string;
|
|
2237
|
+
url?: string;
|
|
2238
|
+
}
|
|
2239
|
+
interface IResourcePlayground {
|
|
2240
|
+
appIcon: string;
|
|
2241
|
+
artifactUrl: string;
|
|
2242
|
+
identifier: string;
|
|
2243
|
+
name: string;
|
|
2244
|
+
}
|
|
2245
|
+
interface ITrack {
|
|
2246
|
+
id: string;
|
|
2247
|
+
name: string;
|
|
2248
|
+
status: string;
|
|
2249
|
+
visibility: string;
|
|
2250
|
+
}
|
|
2251
|
+
interface ISkill {
|
|
2252
|
+
id: string;
|
|
2253
|
+
category: string;
|
|
2254
|
+
skill: string;
|
|
2255
|
+
name: string;
|
|
2256
|
+
}
|
|
2257
|
+
export interface ICreator {
|
|
2258
|
+
id: string;
|
|
2259
|
+
name: string;
|
|
2260
|
+
email: string;
|
|
2261
|
+
}
|
|
2262
|
+
export interface IContentTopic {
|
|
2263
|
+
identifier: string;
|
|
2264
|
+
name: string;
|
|
2265
|
+
}
|
|
2266
|
+
export interface IContact {
|
|
2267
|
+
id: string;
|
|
2268
|
+
name: string;
|
|
2269
|
+
email: string;
|
|
2270
|
+
}
|
|
2271
|
+
export interface IViewerContinueLearningRequest {
|
|
2272
|
+
resourceId: string;
|
|
2273
|
+
contextPathId: string;
|
|
2274
|
+
data: string;
|
|
2275
|
+
dateAccessed: number;
|
|
2276
|
+
contextType?: string;
|
|
2277
|
+
}
|
|
2278
|
+
export enum EContentTypes {
|
|
2279
|
+
PROGRAM = "Learning Path",
|
|
2280
|
+
CHANNEL = "Channel",
|
|
2281
|
+
COURSE = "Course",
|
|
2282
|
+
KNOWLEDGE_ARTIFACT = "Knowledge Artifact",
|
|
2283
|
+
KNOWLEDGE_BOARD = "Knowledge Board",
|
|
2284
|
+
LEARNING_JOURNEY = "Learning Journeys",
|
|
2285
|
+
MODULE = "Collection",
|
|
2286
|
+
RESOURCE = "Resource"
|
|
2287
|
+
}
|
|
2288
|
+
export enum EMiscPlayerSupportedCollectionTypes {
|
|
2289
|
+
PLAYLIST = "Playlist"
|
|
2290
|
+
}
|
|
2291
|
+
export const PLAYER_SUPPORTED_COLLECTION_TYPES: string[];
|
|
2292
|
+
export const KB_SUPPORTED_CONTENT_TYPES: EContentTypes[];
|
|
2293
|
+
export const PLAYLIST_SUPPORTED_CONTENT_TYPES: EContentTypes[];
|
|
2294
|
+
export enum EMimeTypes {
|
|
2295
|
+
COLLECTION = "application/vnd.ekstep.content-collection",
|
|
2296
|
+
HTML = "application/html",
|
|
2297
|
+
ILP_FP = "application/ilpfp",
|
|
2298
|
+
IAP = "application/iap-assessment",
|
|
2299
|
+
M4A = "audio/m4a",
|
|
2300
|
+
MP3 = "audio/mpeg",
|
|
2301
|
+
MP4 = "video/mp4",
|
|
2302
|
+
M3U8 = "application/x-mpegURL",
|
|
2303
|
+
INTERACTION = "video/interactive",
|
|
2304
|
+
PDF = "application/pdf",
|
|
2305
|
+
QUIZ = "application/quiz",
|
|
2306
|
+
DRAG_DROP = "application/drag-drop",
|
|
2307
|
+
HTML_PICKER = "application/htmlpicker",
|
|
2308
|
+
WEB_MODULE = "application/web-module",
|
|
2309
|
+
WEB_MODULE_EXERCISE = "application/web-module-exercise",
|
|
2310
|
+
YOUTUBE = "video/x-youtube",
|
|
2311
|
+
HANDS_ON = "application/integrated-hands-on",
|
|
2312
|
+
RDBMS_HANDS_ON = "application/rdbms",
|
|
2313
|
+
CLASS_DIAGRAM = "application/class-diagram",
|
|
2314
|
+
CHANNEL = "application/channel",
|
|
2315
|
+
COLLECTION_RESOURCE = "resource/collection",
|
|
2316
|
+
CERTIFICATION = "application/certification",
|
|
2317
|
+
PLAYLIST = "application/playlist",
|
|
2318
|
+
UNKNOWN = "application/unknown"
|
|
2319
|
+
}
|
|
2320
|
+
export enum EDisplayContentTypes {
|
|
2321
|
+
ASSESSMENT = "ASSESSMENT",
|
|
2322
|
+
AUDIO = "AUDIO",
|
|
2323
|
+
CERTIFICATION = "CERTIFICATION",
|
|
2324
|
+
CHANNEL = "Channel",
|
|
2325
|
+
CLASS_DIAGRAM = "CLASS_DIAGRAM",
|
|
2326
|
+
COURSE = "COURSE",
|
|
2327
|
+
DEFAULT = "DEFAULT",
|
|
2328
|
+
DRAG_DROP = "DRAG_DROP",
|
|
2329
|
+
EXTERNAL_CERTIFICATION = "EXTERNAL_CERTIFICATION",
|
|
2330
|
+
EXTERNAL_COURSE = "EXTERNAL_COURSE",
|
|
2331
|
+
GOALS = "GOALS",
|
|
2332
|
+
HANDS_ON = "HANDS_ON",
|
|
2333
|
+
IAP = "IAP",
|
|
2334
|
+
INSTRUCTOR_LED = "INSTRUCTOR_LED",
|
|
2335
|
+
INTERACTIVE_VIDEO = "INTERACTIVE_VIDEO",
|
|
2336
|
+
KNOWLEDGE_ARTIFACT = "KNOWLEDGE_ARTIFACT",
|
|
2337
|
+
MODULE = "MODULE",
|
|
2338
|
+
PDF = "PDF",
|
|
2339
|
+
PLAYLIST = "PLAYLIST",
|
|
2340
|
+
PROGRAM = "PROGRAM",
|
|
2341
|
+
QUIZ = "QUIZ",
|
|
2342
|
+
RESOURCE = "RESOURCE",
|
|
2343
|
+
RDBMS_HANDS_ON = "RDBMS_HANDS_ON",
|
|
2344
|
+
VIDEO = "VIDEO",
|
|
2345
|
+
WEB_MODULE = "WEB_MODULE",
|
|
2346
|
+
WEB_PAGE = "WEB_PAGE",
|
|
2347
|
+
YOUTUBE = "YOUTUBE",
|
|
2348
|
+
KNOWLEDGE_BOARD = "Knowledge Board",
|
|
2349
|
+
LEARNING_JOURNEY = "Learning Journeys"
|
|
2350
|
+
}
|
|
2351
|
+
export enum EFilterCategory {
|
|
2352
|
+
ALL = "ALL",
|
|
2353
|
+
LEARN = "LEARN",
|
|
2354
|
+
PRACTICE = "PRACTICE",
|
|
2355
|
+
ASSESS = "ASSESS"
|
|
2356
|
+
}
|
|
2357
|
+
export enum ETagType {
|
|
2358
|
+
NEWLY_ADDED = "NEWLY ADDED"
|
|
2359
|
+
}
|
|
2360
|
+
export {};
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
declare namespace NSSearch {
|
|
2364
|
+
interface IFeatureSearchConfig {
|
|
2365
|
+
tabs: IConfigContentStrip[];
|
|
2366
|
+
}
|
|
2367
|
+
interface IFilterSearchRequest {
|
|
2368
|
+
contentType?: NsContent.EContentTypes[];
|
|
2369
|
+
creatorContacts?: string[];
|
|
2370
|
+
labels?: string[];
|
|
2371
|
+
resourceCategory?: string[];
|
|
2372
|
+
catalogPaths?: string[];
|
|
2373
|
+
}
|
|
2374
|
+
interface ISearchRequest {
|
|
2375
|
+
filters?: IFilterSearchRequest;
|
|
2376
|
+
query?: string;
|
|
2377
|
+
isStandAlone?: boolean;
|
|
2378
|
+
instanceCatalog?: boolean;
|
|
2379
|
+
locale?: string[];
|
|
2380
|
+
pageNo?: number;
|
|
2381
|
+
pageSize?: number;
|
|
2382
|
+
uuid?: string;
|
|
2383
|
+
rootOrg?: string;
|
|
2384
|
+
sort?: {
|
|
2385
|
+
[key: string]: string;
|
|
2386
|
+
}[];
|
|
2387
|
+
}
|
|
2388
|
+
interface ISearchOrgRegionRecommendationRequest extends ISearchRequest {
|
|
2389
|
+
defaultLabel?: string;
|
|
2390
|
+
preLabelValue?: string;
|
|
2391
|
+
}
|
|
2392
|
+
interface ISearchV6Request {
|
|
2393
|
+
visibleFilters?: ISearchV6VisibleFilters;
|
|
2394
|
+
excludeSourceFields?: string[];
|
|
2395
|
+
includeSourceFields?: string[];
|
|
2396
|
+
sort?: ISearchSort[];
|
|
2397
|
+
query: string;
|
|
2398
|
+
sourceFields?: string[];
|
|
2399
|
+
locale?: string[];
|
|
2400
|
+
pageNo?: number;
|
|
2401
|
+
pageSize?: number;
|
|
2402
|
+
filters?: ISearchV6Filters[];
|
|
2403
|
+
isStandAlone?: boolean;
|
|
2404
|
+
didYouMean?: boolean;
|
|
2405
|
+
}
|
|
2406
|
+
interface ISearchSort {
|
|
2407
|
+
[key: string]: 'asc' | 'desc';
|
|
2408
|
+
}
|
|
2409
|
+
interface ISearchV6VisibleFilters {
|
|
2410
|
+
[key: string]: {
|
|
2411
|
+
displayName: string;
|
|
2412
|
+
order?: {
|
|
2413
|
+
[key: string]: 'asc' | 'desc';
|
|
2414
|
+
}[];
|
|
2415
|
+
};
|
|
2416
|
+
}
|
|
2417
|
+
interface ISearchV6Filters {
|
|
2418
|
+
andFilters?: {
|
|
2419
|
+
[key: string]: string[];
|
|
2420
|
+
}[];
|
|
2421
|
+
notFilters?: {
|
|
2422
|
+
[key: string]: string[];
|
|
2423
|
+
}[];
|
|
2424
|
+
}
|
|
2425
|
+
interface ISearchRedirection {
|
|
2426
|
+
f?: {
|
|
2427
|
+
[index: string]: string[];
|
|
2428
|
+
};
|
|
2429
|
+
q?: string;
|
|
2430
|
+
tab?: string;
|
|
2431
|
+
}
|
|
2432
|
+
interface IConfigContentStrip {
|
|
2433
|
+
titleKey?: string;
|
|
2434
|
+
title?: string;
|
|
2435
|
+
reqRoles?: string[];
|
|
2436
|
+
reqFeatures?: string[];
|
|
2437
|
+
searchRedirection?: ISearchRedirection;
|
|
2438
|
+
searchQuery?: ISearchRequest;
|
|
2439
|
+
contentIds?: string[];
|
|
2440
|
+
}
|
|
2441
|
+
interface ISearchApiResult {
|
|
2442
|
+
totalHits: number;
|
|
2443
|
+
result: NsContent.IContent[];
|
|
2444
|
+
filters: IFilterUnitResponse[];
|
|
2445
|
+
notToBeShownFilters?: IFilterUnitResponse[];
|
|
2446
|
+
filtersUsed: string[];
|
|
2447
|
+
}
|
|
2448
|
+
interface ISearchV6ApiResult {
|
|
2449
|
+
totalHits: number;
|
|
2450
|
+
result: NsContent.IContent[];
|
|
2451
|
+
filtersUsed: string[];
|
|
2452
|
+
notVisibleFilters: string[];
|
|
2453
|
+
filters: IFilterUnitResponse[];
|
|
2454
|
+
queryUsed?: string;
|
|
2455
|
+
doYouMean?: string;
|
|
2456
|
+
}
|
|
2457
|
+
interface IFilterUnitResponse {
|
|
2458
|
+
id?: string;
|
|
2459
|
+
type: string;
|
|
2460
|
+
displayName: string;
|
|
2461
|
+
content: IFilterUnitContent[];
|
|
2462
|
+
}
|
|
2463
|
+
interface IFilterUnitContent {
|
|
2464
|
+
type?: string;
|
|
2465
|
+
id?: string;
|
|
2466
|
+
displayName: string;
|
|
2467
|
+
count: number;
|
|
2468
|
+
children?: IFilterUnitContent[];
|
|
2469
|
+
}
|
|
2470
|
+
interface ITypeUnitResponse {
|
|
2471
|
+
displayName: string;
|
|
2472
|
+
type: string;
|
|
2473
|
+
count: string;
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
declare namespace NsCardContent {
|
|
2478
|
+
interface ICard {
|
|
2479
|
+
content: NsContent.IContent;
|
|
2480
|
+
cardSubType: TCardSubType;
|
|
2481
|
+
context: {
|
|
2482
|
+
pageSection: string;
|
|
2483
|
+
position?: number;
|
|
2484
|
+
};
|
|
2485
|
+
intranetMode?: 'greyOut' | 'hide';
|
|
2486
|
+
deletedMode?: 'greyOut' | 'hide';
|
|
2487
|
+
likes?: number;
|
|
2488
|
+
contentTags?: IContentTags;
|
|
2489
|
+
stateData: any;
|
|
2490
|
+
}
|
|
2491
|
+
interface IContentTags {
|
|
2492
|
+
daysSpan?: number;
|
|
2493
|
+
excludeContentType?: NsContent.EContentTypes[];
|
|
2494
|
+
excludeMimeType?: string[];
|
|
2495
|
+
tag: string;
|
|
2496
|
+
criteriaField?: string;
|
|
2497
|
+
}
|
|
2498
|
+
type TCardSubType = 'standard' | 'minimal' | 'space-saving' | 'card-user-details' | 'basic-info' | 'basic-details' | 'card-description-back' | 'network-card';
|
|
2499
|
+
enum EContentStatus {
|
|
2500
|
+
LIVE = "Live",
|
|
2501
|
+
EXPIRED = "Expired",
|
|
2502
|
+
DELETED = "Deleted",
|
|
2503
|
+
MARK_FOR_DELETION = "MarkedForDeletion"
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
declare namespace NsContentStripMultiple {
|
|
2508
|
+
export interface IContentStripMultiple {
|
|
2509
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
2510
|
+
loader?: boolean;
|
|
2511
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
2512
|
+
strips: IContentStripUnit[];
|
|
2513
|
+
isChannelStrip?: boolean;
|
|
2514
|
+
}
|
|
2515
|
+
export interface IContentStripUnit {
|
|
2516
|
+
key: string;
|
|
2517
|
+
title: string;
|
|
2518
|
+
name?: string;
|
|
2519
|
+
mode?: 'accordion';
|
|
2520
|
+
info?: IStripInfo;
|
|
2521
|
+
preWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
2522
|
+
postWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
2523
|
+
stripConfig?: IStripConfig;
|
|
2524
|
+
canHideStrip?: boolean;
|
|
2525
|
+
filters?: any[];
|
|
2526
|
+
selectAll?: boolean | null;
|
|
2527
|
+
request?: {
|
|
2528
|
+
search?: NSSearch.ISearchRequest;
|
|
2529
|
+
searchV6?: NSSearch.ISearchV6Request;
|
|
2530
|
+
searchRegionRecommendation?: NSSearch.ISearchOrgRegionRecommendationRequest;
|
|
2531
|
+
api?: IStripRequestApi;
|
|
2532
|
+
ids?: string[];
|
|
2533
|
+
};
|
|
2534
|
+
searchV6Type?: 'KB' | 'Collections' | 'searchQuery' | null;
|
|
2535
|
+
stripBackground?: string;
|
|
2536
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
2537
|
+
loader?: boolean;
|
|
2538
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
2539
|
+
refreshEvent?: Record<'eventType' | 'from', string>;
|
|
2540
|
+
fetchLikes?: boolean;
|
|
2541
|
+
}
|
|
2542
|
+
export interface IStripRequestApi {
|
|
2543
|
+
path: string;
|
|
2544
|
+
queryParams?: {
|
|
2545
|
+
pageNo?: number;
|
|
2546
|
+
pageSize?: number;
|
|
2547
|
+
pageState?: string;
|
|
2548
|
+
sourceFields?: string;
|
|
2549
|
+
};
|
|
2550
|
+
}
|
|
2551
|
+
export interface IStripInfo {
|
|
2552
|
+
mode: 'below' | 'popup' | 'modal';
|
|
2553
|
+
visibilityMode?: 'hidden' | 'visible';
|
|
2554
|
+
icon: {
|
|
2555
|
+
icon: string;
|
|
2556
|
+
scale: number;
|
|
2557
|
+
style?: any;
|
|
2558
|
+
};
|
|
2559
|
+
widget: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
2560
|
+
}
|
|
2561
|
+
interface IStripConfig {
|
|
2562
|
+
cardSubType: NsCardContent.TCardSubType;
|
|
2563
|
+
postCardForSearch?: boolean;
|
|
2564
|
+
intranetMode?: 'greyOut' | 'hide';
|
|
2565
|
+
deletedMode?: 'greyOut' | 'hide';
|
|
2566
|
+
contentTags?: IContentTags;
|
|
2567
|
+
}
|
|
2568
|
+
export interface IContentTags {
|
|
2569
|
+
daysSpan?: number;
|
|
2570
|
+
excludeContentType?: NsContent.EContentTypes[];
|
|
2571
|
+
excludeMimeType?: string[];
|
|
2572
|
+
tag: string;
|
|
2573
|
+
criteriaField: string;
|
|
2574
|
+
}
|
|
2575
|
+
export interface IContentStripResponseApi {
|
|
2576
|
+
contents: NsContent.IContent[];
|
|
2577
|
+
hasMore?: boolean;
|
|
2578
|
+
pageState?: string;
|
|
2579
|
+
totalHits?: number;
|
|
2580
|
+
}
|
|
2581
|
+
export {};
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
declare class WidgetContentService {
|
|
2585
|
+
private http;
|
|
2586
|
+
private configSvc;
|
|
2587
|
+
constructor(http: HttpClient, configSvc: ConfigurationsService);
|
|
2588
|
+
fetchMarkAsCompleteMeta(identifier: string): Promise<any>;
|
|
2589
|
+
fetchContent(contentId: string, hierarchyType?: 'all' | 'minimal' | 'detail', additionalFields?: string[]): Observable<NsContent.IContent>;
|
|
2590
|
+
fetchAuthoringContent(contentId: string): Observable<NsContent.IContent>;
|
|
2591
|
+
fetchMultipleContent(ids: string[]): Observable<NsContent.IContent[]>;
|
|
2592
|
+
fetchCollectionHierarchy(type: string, id: string, pageNumber?: number, pageSize?: number): Observable<NsContent.ICollectionHierarchyResponse>;
|
|
2593
|
+
fetchContentLikes(contentIds: {
|
|
2594
|
+
content_id: string[];
|
|
2595
|
+
}): Promise<{
|
|
2596
|
+
[identifier: string]: number;
|
|
2597
|
+
}>;
|
|
2598
|
+
fetchContentRatings(contentIds: {
|
|
2599
|
+
contentIds: string[];
|
|
2600
|
+
}): Promise<Object>;
|
|
2601
|
+
fetchContentRatingsV2(contentId: string): Observable<IContentRating>;
|
|
2602
|
+
fetchContentHistory(contentId: string): Observable<NsContent.IContinueLearningData>;
|
|
2603
|
+
continueLearning(id: string, collectionId?: string, collectionType?: string): Promise<any>;
|
|
2604
|
+
saveContinueLearning(content: NsContent.IViewerContinueLearningRequest): Observable<any>;
|
|
2605
|
+
setS3Cookie(contentId: string): Observable<any>;
|
|
2606
|
+
setS3ImageCookie(): Observable<any>;
|
|
2607
|
+
fetchManifest(url: string): Observable<any>;
|
|
2608
|
+
fetchWebModuleContent(url: string): Observable<any>;
|
|
2609
|
+
search(req: NSSearch.ISearchRequest): Observable<NSSearch.ISearchApiResult>;
|
|
2610
|
+
searchRegionRecommendation(req: NSSearch.ISearchOrgRegionRecommendationRequest): Observable<NsContentStripMultiple.IContentStripResponseApi>;
|
|
2611
|
+
searchV6(req: NSSearch.ISearchV6Request): Observable<NSSearch.ISearchV6ApiResult>;
|
|
2612
|
+
fetchContentRating(contentId: string): Observable<{
|
|
2613
|
+
rating: number;
|
|
2614
|
+
}>;
|
|
2615
|
+
deleteContentRating(contentId: string): Observable<any>;
|
|
2616
|
+
addContentRating(contentId: string, data: {
|
|
2617
|
+
rating: number;
|
|
2618
|
+
}): Observable<any>;
|
|
2619
|
+
getFirstChildInHierarchy(content: NsContent.IContent): NsContent.IContent;
|
|
2620
|
+
getRegistrationStatus(source: string): Promise<{
|
|
2621
|
+
hasAccess: boolean;
|
|
2622
|
+
registrationUrl?: string;
|
|
2623
|
+
}>;
|
|
2624
|
+
fetchConfig(url: string): Observable<any>;
|
|
2625
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetContentService, never>;
|
|
2626
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetContentService>;
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
declare class TelemetryService {
|
|
2630
|
+
private configSvc;
|
|
2631
|
+
private eventsSvc;
|
|
2632
|
+
private logger;
|
|
2633
|
+
previousUrl: string | null;
|
|
2634
|
+
telemetryConfig: NsInstanceConfig.ITelemetryConfig | null;
|
|
2635
|
+
pData: any;
|
|
2636
|
+
contextCdata: never[];
|
|
2637
|
+
environment: any;
|
|
2638
|
+
externalApps: any;
|
|
2639
|
+
constructor(environment: any, configSvc: ConfigurationsService, eventsSvc: EventService, logger: LoggerService);
|
|
2640
|
+
get getTelemetrySessionId(): string;
|
|
2641
|
+
get rootOrgId(): string;
|
|
2642
|
+
start(edata: any, data: any, pageContext?: WsEvents.ITelemetryPageContext): void;
|
|
2643
|
+
end(edata: any, data: any, pageContext?: WsEvents.ITelemetryPageContext): void;
|
|
2644
|
+
audit(type: string, props: string, data: any): void;
|
|
2645
|
+
heartbeat(type: string, id: string): void;
|
|
2646
|
+
impression(data?: any): void;
|
|
2647
|
+
externalImpression(impressionData: any): void;
|
|
2648
|
+
addCustomImpressionListener(): void;
|
|
2649
|
+
addTimeSpentListener(): void;
|
|
2650
|
+
addCustomEventListener(): void;
|
|
2651
|
+
addPlayerListener(): void;
|
|
2652
|
+
addInteractListener(): void;
|
|
2653
|
+
addFeedbackListener(): void;
|
|
2654
|
+
addHearbeatListener(): void;
|
|
2655
|
+
addSearchListener(): void;
|
|
2656
|
+
getPageDetails(): {
|
|
2657
|
+
pageid: string;
|
|
2658
|
+
pageUrl: string;
|
|
2659
|
+
pageUrlParts: string[];
|
|
2660
|
+
refferUrl: string | null;
|
|
2661
|
+
objectId: string | null;
|
|
2662
|
+
module: string;
|
|
2663
|
+
};
|
|
2664
|
+
extractContentIdFromUrlParts(urlParts: string[]): string | null;
|
|
2665
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TelemetryService, never>;
|
|
2666
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
declare class SubapplicationRespondService {
|
|
2670
|
+
private contentSvc;
|
|
2671
|
+
private eventSvc;
|
|
2672
|
+
private teleSvc;
|
|
2673
|
+
subAppname: string;
|
|
2674
|
+
continueLearningData: any;
|
|
2675
|
+
contentWindowinfo: any;
|
|
2676
|
+
loaded: boolean;
|
|
2677
|
+
constructor(contentSvc: WidgetContentService, eventSvc: EventService, teleSvc: TelemetryService);
|
|
2678
|
+
continueLearningRespond(id: string, continueLearning: any): void;
|
|
2679
|
+
telemetryEvents(tData: any): void;
|
|
2680
|
+
unsubscribeResponse(): void;
|
|
2681
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubapplicationRespondService, never>;
|
|
2682
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SubapplicationRespondService>;
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
declare class UserPreferenceService {
|
|
2686
|
+
private http;
|
|
2687
|
+
private configurationSvc;
|
|
2688
|
+
constructor(http: HttpClient, configurationSvc: ConfigurationsService);
|
|
2689
|
+
initialize(): void;
|
|
2690
|
+
fetchUserPreference(): Promise<IUserPreference>;
|
|
2691
|
+
saveUserPreference(changedUserPref?: Partial<IUserPreference>): Promise<boolean>;
|
|
2692
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserPreferenceService, never>;
|
|
2693
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserPreferenceService>;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
export { AuthKeycloakService, AuthMicrosoftService, ClassChangeOnScrollDirective, ClassChangeOnScrollModule, ConfigurationsService, DefaultThumbnailDirective, DefaultThumbnailModule, EFeatures, EInstance, EventService, ExploreDetailResolve, HorizontalScrollerComponent, HorizontalScrollerModule, ImageCropComponent, ImageCropModule, ImageResponsiveDirective, ImageResponsiveModule, InViewPortDirective, InViewPortModule, LoggerService, LogoutComponent, LogoutModule, MarketingOfferingResolve, NavigationDirective, NavigationModule, NsAppsConfig, NsContent, NsInstanceConfig, NsPage, NsUser, OrderByPipe, PageResolve, PermissionDirective, PermissionModule, PipeConciseDateRangeModule, PipeConciseDateRangePipe, PipeCountTransformModule, PipeCountTransformPipe, PipeDateConcatModule, PipeDateConcatPipe, PipeDurationTransformModule, PipeDurationTransformPipe, PipeFilterModule, PipeFilterPipe, PipeFilterSearchModule, PipeFilterSearchPipe, PipeHtmlTagRemovalModule, PipeHtmlTagRemovalPipe, PipeLimitToModule, PipeLimitToPipe, PipeListFilterModule, PipeListFilterPipe, PipeNameTransformModule, PipeNameTransformPipe, PipeOrderByModule, PipePartialContentModule, PipePartialContentPipe, PipeRelativeTimeModule, PipeRelativeTimePipe, PipeSafeSanitizerModule, PipeSafeSanitizerPipe, SubapplicationRespondService, TelemetryService, UserPreferenceService, UtilityService, ValueService, WidgetContentService, WsEvents, getStringifiedQueryParams };
|
|
2697
|
+
export type { IContentRating, IDialogueDta, IImageResponsiveUnit, IPortalUrls, IProfile, IRatingInfo, IResolveResponse, IUserPreference, IWsMsTokenModelResponse, TFetchStatus, TSendStatus };
|
|
2698
|
+
//# sourceMappingURL=index.d.ts.map
|