@bluevolt-tech/lumen 1.3.2 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/bv-button/bv-button.js +2 -182
- package/dist/components/bv-course-detail-modal/bv-course-detail-modal.js +2 -182
- package/dist/components/bv-course-grid-card/bv-course-grid-card.d.ts +12 -0
- package/dist/components/bv-course-grid-card/bv-course-grid-card.js +87 -185
- package/dist/components/bv-course-list-card/bv-course-list-card.d.ts +11 -0
- package/dist/components/bv-course-list-card/bv-course-list-card.js +77 -185
- package/dist/components/bv-empty-state/bv-empty-state.d.ts +22 -1
- package/dist/components/bv-empty-state/bv-empty-state.js +410 -5
- package/dist/components/bv-empty-state/illustrations.d.ts +3 -0
- package/dist/components/bv-filter-panel/bv-filter-panel.d.ts +4 -0
- package/dist/components/bv-filter-panel/bv-filter-panel.js +30 -3
- package/dist/components/bv-portal-header/bv-portal-header.d.ts +1 -0
- package/dist/components/bv-portal-header/bv-portal-header.js +99 -195
- package/dist/components/bv-promo-banner/bv-promo-banner.d.ts +4 -0
- package/dist/components/bv-promo-banner/bv-promo-banner.js +16 -1
- package/dist/components/bv-user-row/bv-user-row.d.ts +6 -0
- package/dist/components/bv-user-row/bv-user-row.js +59 -193
- package/dist/storybook/stories/screens/course-catalog.data.js +1842 -153
- package/dist/themes/base.css +1 -1
- package/package.json +1 -1
- package/themes/base.css +1 -1
|
@@ -6,7 +6,20 @@ function formatDuration(minutes) {
|
|
|
6
6
|
}
|
|
7
7
|
function formatLastUpdated(isoDate) {
|
|
8
8
|
const [year, month] = isoDate.split("-").map(Number);
|
|
9
|
-
const MONTHS = [
|
|
9
|
+
const MONTHS = [
|
|
10
|
+
"Jan",
|
|
11
|
+
"Feb",
|
|
12
|
+
"Mar",
|
|
13
|
+
"Apr",
|
|
14
|
+
"May",
|
|
15
|
+
"Jun",
|
|
16
|
+
"Jul",
|
|
17
|
+
"Aug",
|
|
18
|
+
"Sep",
|
|
19
|
+
"Oct",
|
|
20
|
+
"Nov",
|
|
21
|
+
"Dec"
|
|
22
|
+
];
|
|
10
23
|
return `${MONTHS[month - 1]} ${year}`;
|
|
11
24
|
}
|
|
12
25
|
var FILTER_GROUPS_DEF = [
|
|
@@ -91,7 +104,11 @@ function getFilteredSorted(courses, filters, sort) {
|
|
|
91
104
|
case "updated":
|
|
92
105
|
return [...result].sort((a, b) => b.lastUpdatedDate.localeCompare(a.lastUpdatedDate));
|
|
93
106
|
case "duration":
|
|
107
|
+
// backwards compatible: same as duration_asc
|
|
108
|
+
case "duration_asc":
|
|
94
109
|
return [...result].sort((a, b) => a.durationMinutes - b.durationMinutes);
|
|
110
|
+
case "duration_desc":
|
|
111
|
+
return [...result].sort((a, b) => b.durationMinutes - a.durationMinutes);
|
|
95
112
|
case "never-downloaded":
|
|
96
113
|
return [...result].sort((a, b) => {
|
|
97
114
|
if (!a.downloaded && b.downloaded) return -1;
|
|
@@ -128,167 +145,1839 @@ function buildGroupsAttr(allCourses, filters) {
|
|
|
128
145
|
}
|
|
129
146
|
var ALL_COURSES = [
|
|
130
147
|
// CEU — 11 courses
|
|
131
|
-
{
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
148
|
+
{
|
|
149
|
+
id: "1",
|
|
150
|
+
type: "CEU",
|
|
151
|
+
title: "Accounting CEU Credits",
|
|
152
|
+
publisher: "Etna Supply Company",
|
|
153
|
+
description: "Explore accounting fundamentals and reporting standards for continuing education credit.",
|
|
154
|
+
durationMinutes: 150,
|
|
155
|
+
lastUpdatedDate: "2024-01-15",
|
|
156
|
+
downloaded: false,
|
|
157
|
+
industries: ["fin", "bank"],
|
|
158
|
+
language: "en"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
id: "2",
|
|
162
|
+
type: "CEU",
|
|
163
|
+
title: "Financial Compliance & Reporting",
|
|
164
|
+
publisher: "BlueVolt Course Library",
|
|
165
|
+
description: "Stay current with financial compliance requirements and master essential reporting standards.",
|
|
166
|
+
durationMinutes: 240,
|
|
167
|
+
lastUpdatedDate: "2023-11-15",
|
|
168
|
+
downloaded: false,
|
|
169
|
+
industries: ["fin", "bank"],
|
|
170
|
+
language: "en"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
id: "3",
|
|
174
|
+
type: "CEU",
|
|
175
|
+
title: "Supply Chain Analytics CEU",
|
|
176
|
+
publisher: "Etna Supply Company",
|
|
177
|
+
description: "Earn CEU credits while mastering demand forecasting, inventory optimization, and performance metrics.",
|
|
178
|
+
durationMinutes: 210,
|
|
179
|
+
lastUpdatedDate: "2023-12-15",
|
|
180
|
+
downloaded: false,
|
|
181
|
+
industries: ["eng", "fin"],
|
|
182
|
+
language: "es"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
id: "4",
|
|
186
|
+
type: "CEU",
|
|
187
|
+
title: "Data Privacy & Security CEU",
|
|
188
|
+
publisher: "BlueVolt VoltLand",
|
|
189
|
+
description: "Understand data privacy regulations and apply security best practices across your organization.",
|
|
190
|
+
durationMinutes: 120,
|
|
191
|
+
lastUpdatedDate: "2023-11-15",
|
|
192
|
+
downloaded: true,
|
|
193
|
+
industries: ["fin", "comms"],
|
|
194
|
+
language: "en"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
id: "5",
|
|
198
|
+
type: "CEU",
|
|
199
|
+
title: "National Electrical Code Basics",
|
|
200
|
+
publisher: "A.Y. McDonald",
|
|
201
|
+
description: "An introduction to the NEC covering wiring methods, overcurrent protection, and grounding fundamentals.",
|
|
202
|
+
durationMinutes: 150,
|
|
203
|
+
lastUpdatedDate: "2023-12-15",
|
|
204
|
+
downloaded: false,
|
|
205
|
+
industries: ["elec", "eng"],
|
|
206
|
+
language: "en"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
id: "6",
|
|
210
|
+
type: "CEU",
|
|
211
|
+
title: "HVAC Systems & Code Compliance",
|
|
212
|
+
publisher: "Milwaukee Electric Tool",
|
|
213
|
+
description: "Understand HVAC system fundamentals and the code requirements governing installation and service.",
|
|
214
|
+
durationMinutes: 195,
|
|
215
|
+
lastUpdatedDate: "2024-01-15",
|
|
216
|
+
downloaded: false,
|
|
217
|
+
industries: ["eng", "const"],
|
|
218
|
+
language: "en"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: "7",
|
|
222
|
+
type: "CEU",
|
|
223
|
+
title: "Project Management Fundamentals CEU",
|
|
224
|
+
publisher: "Elm City Flexity",
|
|
225
|
+
description: "Earn CEU credits with a practical overview of project planning, risk management, and delivery.",
|
|
226
|
+
durationMinutes: 180,
|
|
227
|
+
lastUpdatedDate: "2024-03-15",
|
|
228
|
+
downloaded: true,
|
|
229
|
+
industries: ["consult", "eng"],
|
|
230
|
+
language: "en"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
id: "8",
|
|
234
|
+
type: "CEU",
|
|
235
|
+
title: "Quality Assurance & ISO Standards",
|
|
236
|
+
publisher: "Ace Hardware",
|
|
237
|
+
description: "Master quality management principles and ISO 9001 requirements for your team and operations.",
|
|
238
|
+
durationMinutes: 165,
|
|
239
|
+
lastUpdatedDate: "2024-02-15",
|
|
240
|
+
downloaded: false,
|
|
241
|
+
industries: ["eng", "fin"],
|
|
242
|
+
language: "en"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
id: "9",
|
|
246
|
+
type: "CEU",
|
|
247
|
+
title: "Renewable Energy Technologies CEU",
|
|
248
|
+
publisher: "BlueVolt VoltLand",
|
|
249
|
+
description: "Survey emerging renewable energy technologies and their applications in modern grid infrastructure.",
|
|
250
|
+
durationMinutes: 135,
|
|
251
|
+
lastUpdatedDate: "2023-12-15",
|
|
252
|
+
downloaded: false,
|
|
253
|
+
industries: ["energy", "env"],
|
|
254
|
+
language: "en"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
id: "10",
|
|
258
|
+
type: "CEU",
|
|
259
|
+
title: "Building Codes & Zoning Regulations",
|
|
260
|
+
publisher: "BlueVolt Course Library",
|
|
261
|
+
description: "Navigate building codes, zoning laws, and permit requirements for residential and commercial projects.",
|
|
262
|
+
durationMinutes: 180,
|
|
263
|
+
lastUpdatedDate: "2023-12-15",
|
|
264
|
+
downloaded: true,
|
|
265
|
+
industries: ["const", "floor"],
|
|
266
|
+
language: "en"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
id: "11",
|
|
270
|
+
type: "CEU",
|
|
271
|
+
title: "Cybersecurity Fundamentals CEU",
|
|
272
|
+
publisher: "BlueVolt VoltLand",
|
|
273
|
+
description: "Earn CEU credits while learning to identify threats, manage risk, and protect sensitive systems.",
|
|
274
|
+
durationMinutes: 90,
|
|
275
|
+
lastUpdatedDate: "2024-03-15",
|
|
276
|
+
downloaded: false,
|
|
277
|
+
industries: ["fin", "comms"],
|
|
278
|
+
language: "en"
|
|
279
|
+
},
|
|
142
280
|
// HR & Onboarding — 8 courses
|
|
143
|
-
{
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
281
|
+
{
|
|
282
|
+
id: "12",
|
|
283
|
+
type: "HR & Onboarding",
|
|
284
|
+
title: "HR Onboarding Fundamentals",
|
|
285
|
+
publisher: "Etna Supply Company",
|
|
286
|
+
description: "Streamline new employee onboarding with structured orientation, compliance documentation, and team integration.",
|
|
287
|
+
durationMinutes: 105,
|
|
288
|
+
lastUpdatedDate: "2024-01-15",
|
|
289
|
+
downloaded: false,
|
|
290
|
+
industries: ["edu", "consult"],
|
|
291
|
+
language: "en"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
id: "13",
|
|
295
|
+
type: "HR & Onboarding",
|
|
296
|
+
title: "New Employee Orientation",
|
|
297
|
+
publisher: "BlueVolt Course Library",
|
|
298
|
+
description: "A comprehensive orientation covering company culture, workplace policies, benefits, and first-week expectations.",
|
|
299
|
+
durationMinutes: 45,
|
|
300
|
+
lastUpdatedDate: "2024-03-15",
|
|
301
|
+
downloaded: true,
|
|
302
|
+
industries: ["edu", "consult"],
|
|
303
|
+
language: "en"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
id: "14",
|
|
307
|
+
type: "HR & Onboarding",
|
|
308
|
+
title: "Benefits Administration 101",
|
|
309
|
+
publisher: "BlueVolt Course Library",
|
|
310
|
+
description: "A complete guide to employee benefits enrollment, plan comparison, and open enrollment communication.",
|
|
311
|
+
durationMinutes: 120,
|
|
312
|
+
lastUpdatedDate: "2024-02-15",
|
|
313
|
+
downloaded: false,
|
|
314
|
+
industries: ["fin", "bank"],
|
|
315
|
+
language: "en"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
id: "15",
|
|
319
|
+
type: "HR & Onboarding",
|
|
320
|
+
title: "Diversity, Equity & Inclusion",
|
|
321
|
+
publisher: "Elm City Flexity",
|
|
322
|
+
description: "Build inclusive workplaces through practical DEI frameworks, allyship, and equitable hiring practices.",
|
|
323
|
+
durationMinutes: 90,
|
|
324
|
+
lastUpdatedDate: "2024-02-15",
|
|
325
|
+
downloaded: false,
|
|
326
|
+
industries: ["edu", "consult"],
|
|
327
|
+
language: "es"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
id: "16",
|
|
331
|
+
type: "HR & Onboarding",
|
|
332
|
+
title: "Performance Management Essentials",
|
|
333
|
+
publisher: "Ace Hardware",
|
|
334
|
+
description: "Develop effective performance review cycles, goal-setting frameworks, and constructive feedback systems.",
|
|
335
|
+
durationMinutes: 135,
|
|
336
|
+
lastUpdatedDate: "2024-02-15",
|
|
337
|
+
downloaded: false,
|
|
338
|
+
industries: ["consult", "edu"],
|
|
339
|
+
language: "en"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
id: "17",
|
|
343
|
+
type: "HR & Onboarding",
|
|
344
|
+
title: "Employment Law Overview",
|
|
345
|
+
publisher: "A.Y. McDonald",
|
|
346
|
+
description: "Understand FMLA, ADA, Title VII, and other key employment laws to reduce organizational legal risk.",
|
|
347
|
+
durationMinutes: 120,
|
|
348
|
+
lastUpdatedDate: "2024-01-15",
|
|
349
|
+
downloaded: false,
|
|
350
|
+
industries: ["bank", "fin"],
|
|
351
|
+
language: "en"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
id: "18",
|
|
355
|
+
type: "HR & Onboarding",
|
|
356
|
+
title: "Onboarding Best Practices",
|
|
357
|
+
publisher: "Etna Supply Company",
|
|
358
|
+
description: "Design onboarding programs that accelerate time-to-productivity and improve first-year retention rates.",
|
|
359
|
+
durationMinutes: 90,
|
|
360
|
+
lastUpdatedDate: "2024-03-15",
|
|
361
|
+
downloaded: false,
|
|
362
|
+
industries: ["edu", "consult"],
|
|
363
|
+
language: "en"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
id: "19",
|
|
367
|
+
type: "HR & Onboarding",
|
|
368
|
+
title: "Compensation & Benefits Strategy",
|
|
369
|
+
publisher: "Milwaukee Electric Tool",
|
|
370
|
+
description: "Align compensation structures with market data to attract, retain, and motivate top talent effectively.",
|
|
371
|
+
durationMinutes: 150,
|
|
372
|
+
lastUpdatedDate: "2024-02-15",
|
|
373
|
+
downloaded: false,
|
|
374
|
+
industries: ["fin", "bank"],
|
|
375
|
+
language: "en"
|
|
376
|
+
},
|
|
151
377
|
// Product Knowledge — 11 courses
|
|
152
|
-
{
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
378
|
+
{
|
|
379
|
+
id: "20",
|
|
380
|
+
type: "Product Knowledge",
|
|
381
|
+
title: "Power Tools 101",
|
|
382
|
+
publisher: "Milwaukee Electric Tool",
|
|
383
|
+
description: "Learn the features, applications, and safe operation of Milwaukee's professional-grade power tool lineup.",
|
|
384
|
+
durationMinutes: 120,
|
|
385
|
+
lastUpdatedDate: "2024-01-15",
|
|
386
|
+
downloaded: true,
|
|
387
|
+
industries: ["const", "elec"],
|
|
388
|
+
language: "en"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
id: "21",
|
|
392
|
+
type: "Product Knowledge",
|
|
393
|
+
title: "Plumbing Systems & Components",
|
|
394
|
+
publisher: "A.Y. McDonald",
|
|
395
|
+
description: "Deep dive into pipe materials, fittings, and best practices for plumbing installation and maintenance.",
|
|
396
|
+
durationMinutes: 90,
|
|
397
|
+
lastUpdatedDate: "2023-11-15",
|
|
398
|
+
downloaded: true,
|
|
399
|
+
industries: ["const", "floor"],
|
|
400
|
+
language: "en"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
id: "22",
|
|
404
|
+
type: "Product Knowledge",
|
|
405
|
+
title: "Hardware Store Operations",
|
|
406
|
+
publisher: "Ace Hardware",
|
|
407
|
+
description: "Train store teams on inventory management, customer assistance, planogram compliance, and product safety.",
|
|
408
|
+
durationMinutes: 105,
|
|
409
|
+
lastUpdatedDate: "2023-12-15",
|
|
410
|
+
downloaded: true,
|
|
411
|
+
industries: ["const", "floor"],
|
|
412
|
+
language: "en"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
id: "23",
|
|
416
|
+
type: "Product Knowledge",
|
|
417
|
+
title: "Electrical Wiring & Installation",
|
|
418
|
+
publisher: "Milwaukee Electric Tool",
|
|
419
|
+
description: "Master residential and commercial wiring techniques, conduit routing, and panel installation fundamentals.",
|
|
420
|
+
durationMinutes: 165,
|
|
421
|
+
lastUpdatedDate: "2024-03-15",
|
|
422
|
+
downloaded: false,
|
|
423
|
+
industries: ["elec", "const"],
|
|
424
|
+
language: "en"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
id: "24",
|
|
428
|
+
type: "Product Knowledge",
|
|
429
|
+
title: "Lumber & Building Materials",
|
|
430
|
+
publisher: "Ace Hardware",
|
|
431
|
+
description: "Understand lumber grades, engineered wood products, and sourcing considerations for construction projects.",
|
|
432
|
+
durationMinutes: 120,
|
|
433
|
+
lastUpdatedDate: "2024-02-15",
|
|
434
|
+
downloaded: false,
|
|
435
|
+
industries: ["const", "eng"],
|
|
436
|
+
language: "en"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
id: "25",
|
|
440
|
+
type: "Product Knowledge",
|
|
441
|
+
title: "HVAC Product Fundamentals",
|
|
442
|
+
publisher: "Milwaukee Electric Tool",
|
|
443
|
+
description: "Explore the full range of HVAC equipment, refrigerants, and controls for installation professionals.",
|
|
444
|
+
durationMinutes: 150,
|
|
445
|
+
lastUpdatedDate: "2024-01-15",
|
|
446
|
+
downloaded: false,
|
|
447
|
+
industries: ["eng", "energy"],
|
|
448
|
+
language: "en"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
id: "26",
|
|
452
|
+
type: "Product Knowledge",
|
|
453
|
+
title: "Plumbing Fittings & Fixtures",
|
|
454
|
+
publisher: "A.Y. McDonald",
|
|
455
|
+
description: "A detailed guide to fittings, valves, and fixture selection for residential and commercial plumbing work.",
|
|
456
|
+
durationMinutes: 75,
|
|
457
|
+
lastUpdatedDate: "2024-01-15",
|
|
458
|
+
downloaded: true,
|
|
459
|
+
industries: ["const", "floor"],
|
|
460
|
+
language: "en"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
id: "27",
|
|
464
|
+
type: "Product Knowledge",
|
|
465
|
+
title: "Smart Home Technology Basics",
|
|
466
|
+
publisher: "BlueVolt VoltLand",
|
|
467
|
+
description: "Discover connected home devices, protocols, and installation best practices for today's smart homes.",
|
|
468
|
+
durationMinutes: 120,
|
|
469
|
+
lastUpdatedDate: "2024-02-15",
|
|
470
|
+
downloaded: false,
|
|
471
|
+
industries: ["elx", "comms"],
|
|
472
|
+
language: "en"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
id: "28",
|
|
476
|
+
type: "Product Knowledge",
|
|
477
|
+
title: "Power Tool Maintenance & Repair",
|
|
478
|
+
publisher: "Milwaukee Electric Tool",
|
|
479
|
+
description: "Extend tool lifespan through proper maintenance routines, storage practices, and basic repair techniques.",
|
|
480
|
+
durationMinutes: 135,
|
|
481
|
+
lastUpdatedDate: "2023-12-15",
|
|
482
|
+
downloaded: false,
|
|
483
|
+
industries: ["const", "elec"],
|
|
484
|
+
language: "en"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
id: "29",
|
|
488
|
+
type: "Product Knowledge",
|
|
489
|
+
title: "Flooring Materials & Installation",
|
|
490
|
+
publisher: "Ace Hardware",
|
|
491
|
+
description: "Survey hardwood, tile, vinyl, and carpet options along with installation techniques for each material.",
|
|
492
|
+
durationMinutes: 180,
|
|
493
|
+
lastUpdatedDate: "2023-11-15",
|
|
494
|
+
downloaded: true,
|
|
495
|
+
industries: ["const", "floor"],
|
|
496
|
+
language: "en"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
id: "30",
|
|
500
|
+
type: "Product Knowledge",
|
|
501
|
+
title: "Battery Technology & Charging",
|
|
502
|
+
publisher: "Elm City Flexity",
|
|
503
|
+
description: "Understand lithium-ion battery chemistry, charging best practices, and storage guidelines for power tools.",
|
|
504
|
+
durationMinutes: 90,
|
|
505
|
+
lastUpdatedDate: "2024-03-15",
|
|
506
|
+
downloaded: false,
|
|
507
|
+
industries: ["elx", "energy"],
|
|
508
|
+
language: "en"
|
|
509
|
+
},
|
|
163
510
|
// Safety & Compliance — 11 courses
|
|
164
|
-
{
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
511
|
+
{
|
|
512
|
+
id: "31",
|
|
513
|
+
type: "Safety & Compliance",
|
|
514
|
+
title: "Workplace Safety Essentials",
|
|
515
|
+
publisher: "Milwaukee Electric Tool",
|
|
516
|
+
description: "A comprehensive overview of workplace safety protocols, hazard identification, and OSHA compliance basics.",
|
|
517
|
+
durationMinutes: 180,
|
|
518
|
+
lastUpdatedDate: "2024-01-15",
|
|
519
|
+
downloaded: false,
|
|
520
|
+
industries: ["const", "energy"],
|
|
521
|
+
language: "en"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
id: "32",
|
|
525
|
+
type: "Safety & Compliance",
|
|
526
|
+
title: "Electrical Safety Standards",
|
|
527
|
+
publisher: "Ace Hardware",
|
|
528
|
+
description: "Understand OSHA and NFPA electrical safety standards for effective application in commercial and residential settings.",
|
|
529
|
+
durationMinutes: 165,
|
|
530
|
+
lastUpdatedDate: "2024-01-15",
|
|
531
|
+
downloaded: true,
|
|
532
|
+
industries: ["elec", "const"],
|
|
533
|
+
language: "en"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
id: "33",
|
|
537
|
+
type: "Safety & Compliance",
|
|
538
|
+
title: "Environmental Health & Safety",
|
|
539
|
+
publisher: "Elm City Flexity",
|
|
540
|
+
description: "Navigate EHS regulations, proper disposal practices, and green workplace standards for your team.",
|
|
541
|
+
durationMinutes: 195,
|
|
542
|
+
lastUpdatedDate: "2023-12-15",
|
|
543
|
+
downloaded: false,
|
|
544
|
+
industries: ["env", "chem"],
|
|
545
|
+
language: "en"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
id: "34",
|
|
549
|
+
type: "Safety & Compliance",
|
|
550
|
+
title: "Hazardous Materials Handling",
|
|
551
|
+
publisher: "Etna Supply Company",
|
|
552
|
+
description: "Learn safe handling, storage, labeling, and disposal procedures for hazardous materials in industrial settings.",
|
|
553
|
+
durationMinutes: 240,
|
|
554
|
+
lastUpdatedDate: "2023-11-15",
|
|
555
|
+
downloaded: true,
|
|
556
|
+
industries: ["chem", "env"],
|
|
557
|
+
language: "es"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
id: "35",
|
|
561
|
+
type: "Safety & Compliance",
|
|
562
|
+
title: "Fall Protection & Working at Heights",
|
|
563
|
+
publisher: "Elm City Flexity",
|
|
564
|
+
description: "Master OSHA fall protection requirements, harness inspection, and anchor point selection for elevated work.",
|
|
565
|
+
durationMinutes: 120,
|
|
566
|
+
lastUpdatedDate: "2024-02-15",
|
|
567
|
+
downloaded: false,
|
|
568
|
+
industries: ["const", "eng"],
|
|
569
|
+
language: "en"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
id: "36",
|
|
573
|
+
type: "Safety & Compliance",
|
|
574
|
+
title: "Fire Safety & Emergency Procedures",
|
|
575
|
+
publisher: "A.Y. McDonald",
|
|
576
|
+
description: "Establish fire prevention practices, evacuation planning, and emergency response protocols for your facility.",
|
|
577
|
+
durationMinutes: 90,
|
|
578
|
+
lastUpdatedDate: "2024-03-15",
|
|
579
|
+
downloaded: false,
|
|
580
|
+
industries: ["const", "energy"],
|
|
581
|
+
language: "en"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
id: "37",
|
|
585
|
+
type: "Safety & Compliance",
|
|
586
|
+
title: "OSHA General Industry Safety",
|
|
587
|
+
publisher: "BlueVolt Course Library",
|
|
588
|
+
description: "Cover OSHA general industry standards, recordkeeping requirements, and inspection preparedness essentials.",
|
|
589
|
+
durationMinutes: 180,
|
|
590
|
+
lastUpdatedDate: "2024-03-15",
|
|
591
|
+
downloaded: false,
|
|
592
|
+
industries: ["const", "eng"],
|
|
593
|
+
language: "en"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
id: "38",
|
|
597
|
+
type: "Safety & Compliance",
|
|
598
|
+
title: "Chemical Safety & SDS Management",
|
|
599
|
+
publisher: "Etna Supply Company",
|
|
600
|
+
description: "Manage SDS documentation, chemical labeling, and employee right-to-know compliance in your workplace.",
|
|
601
|
+
durationMinutes: 150,
|
|
602
|
+
lastUpdatedDate: "2023-12-15",
|
|
603
|
+
downloaded: false,
|
|
604
|
+
industries: ["chem", "env"],
|
|
605
|
+
language: "en"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
id: "39",
|
|
609
|
+
type: "Safety & Compliance",
|
|
610
|
+
title: "Lockout/Tagout Procedures",
|
|
611
|
+
publisher: "Milwaukee Electric Tool",
|
|
612
|
+
description: "Implement effective LOTO programs to protect workers during equipment servicing and maintenance operations.",
|
|
613
|
+
durationMinutes: 60,
|
|
614
|
+
lastUpdatedDate: "2024-02-15",
|
|
615
|
+
downloaded: false,
|
|
616
|
+
industries: ["elec", "const"],
|
|
617
|
+
language: "en"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
id: "40",
|
|
621
|
+
type: "Safety & Compliance",
|
|
622
|
+
title: "Ergonomics & Injury Prevention",
|
|
623
|
+
publisher: "Ace Hardware",
|
|
624
|
+
description: "Reduce workplace injuries with ergonomic assessments, workstation design, and body mechanics training.",
|
|
625
|
+
durationMinutes: 75,
|
|
626
|
+
lastUpdatedDate: "2024-01-15",
|
|
627
|
+
downloaded: true,
|
|
628
|
+
industries: ["consult", "edu"],
|
|
629
|
+
language: "es"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
id: "41",
|
|
633
|
+
type: "Safety & Compliance",
|
|
634
|
+
title: "First Aid & CPR Certification Prep",
|
|
635
|
+
publisher: "BlueVolt VoltLand",
|
|
636
|
+
description: "Prepare for first aid and CPR certification with guided instruction on emergency response basics.",
|
|
637
|
+
durationMinutes: 135,
|
|
638
|
+
lastUpdatedDate: "2024-03-15",
|
|
639
|
+
downloaded: false,
|
|
640
|
+
industries: ["edu", "const"],
|
|
641
|
+
language: "en"
|
|
642
|
+
},
|
|
175
643
|
// Soft Skills — 11 courses
|
|
176
|
-
{
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
644
|
+
{
|
|
645
|
+
id: "42",
|
|
646
|
+
type: "Soft Skills",
|
|
647
|
+
title: "Communication Skills Masterclass",
|
|
648
|
+
publisher: "BlueVolt VoltLand",
|
|
649
|
+
description: "Develop effective communication strategies for professional environments, conflict resolution, and team collaboration.",
|
|
650
|
+
durationMinutes: 75,
|
|
651
|
+
lastUpdatedDate: "2024-03-15",
|
|
652
|
+
downloaded: false,
|
|
653
|
+
industries: ["comms", "consult"],
|
|
654
|
+
language: "en"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
id: "43",
|
|
658
|
+
type: "Soft Skills",
|
|
659
|
+
title: "Leadership & Team Management",
|
|
660
|
+
publisher: "A.Y. McDonald",
|
|
661
|
+
description: "Build leadership skills and learn to motivate, delegate, and guide teams toward shared goals and measurable results.",
|
|
662
|
+
durationMinutes: 135,
|
|
663
|
+
lastUpdatedDate: "2024-02-15",
|
|
664
|
+
downloaded: false,
|
|
665
|
+
industries: ["consult", "edu"],
|
|
666
|
+
language: "en"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
id: "44",
|
|
670
|
+
type: "Soft Skills",
|
|
671
|
+
title: "Customer Service Excellence",
|
|
672
|
+
publisher: "Elm City Flexity",
|
|
673
|
+
description: "Master proven techniques for handling inquiries, resolving complaints, and improving customer retention rates.",
|
|
674
|
+
durationMinutes: 90,
|
|
675
|
+
lastUpdatedDate: "2024-03-15",
|
|
676
|
+
downloaded: false,
|
|
677
|
+
industries: ["comms", "ent"],
|
|
678
|
+
language: "es"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
id: "45",
|
|
682
|
+
type: "Soft Skills",
|
|
683
|
+
title: "Conflict Resolution at Work",
|
|
684
|
+
publisher: "Elm City Flexity",
|
|
685
|
+
description: "Develop strategies for identifying, addressing, and resolving workplace conflicts professionally and constructively.",
|
|
686
|
+
durationMinutes: 60,
|
|
687
|
+
lastUpdatedDate: "2024-03-15",
|
|
688
|
+
downloaded: false,
|
|
689
|
+
industries: ["consult", "comms"],
|
|
690
|
+
language: "en"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
id: "46",
|
|
694
|
+
type: "Soft Skills",
|
|
695
|
+
title: "Time Management & Productivity",
|
|
696
|
+
publisher: "Etna Supply Company",
|
|
697
|
+
description: "Boost productivity with time management frameworks, prioritization tools, and sustainable habit-building strategies.",
|
|
698
|
+
durationMinutes: 60,
|
|
699
|
+
lastUpdatedDate: "2024-03-15",
|
|
700
|
+
downloaded: true,
|
|
701
|
+
industries: ["consult", "edu"],
|
|
702
|
+
language: "en"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
id: "47",
|
|
706
|
+
type: "Soft Skills",
|
|
707
|
+
title: "Presentation Skills & Public Speaking",
|
|
708
|
+
publisher: "BlueVolt Course Library",
|
|
709
|
+
description: "Build confidence and technique for delivering compelling presentations to any professional audience.",
|
|
710
|
+
durationMinutes: 105,
|
|
711
|
+
lastUpdatedDate: "2024-02-15",
|
|
712
|
+
downloaded: false,
|
|
713
|
+
industries: ["comms", "ent"],
|
|
714
|
+
language: "en"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
id: "48",
|
|
718
|
+
type: "Soft Skills",
|
|
719
|
+
title: "Emotional Intelligence for Leaders",
|
|
720
|
+
publisher: "Ace Hardware",
|
|
721
|
+
description: "Develop self-awareness and empathy to lead teams with emotional intelligence and resilience under pressure.",
|
|
722
|
+
durationMinutes: 120,
|
|
723
|
+
lastUpdatedDate: "2024-02-15",
|
|
724
|
+
downloaded: true,
|
|
725
|
+
industries: ["consult", "edu"],
|
|
726
|
+
language: "es"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
id: "49",
|
|
730
|
+
type: "Soft Skills",
|
|
731
|
+
title: "Negotiation & Persuasion",
|
|
732
|
+
publisher: "A.Y. McDonald",
|
|
733
|
+
description: "Master principled negotiation strategies and persuasion frameworks for business and professional contexts.",
|
|
734
|
+
durationMinutes: 90,
|
|
735
|
+
lastUpdatedDate: "2024-01-15",
|
|
736
|
+
downloaded: false,
|
|
737
|
+
industries: ["consult", "fin"],
|
|
738
|
+
language: "en"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
id: "50",
|
|
742
|
+
type: "Soft Skills",
|
|
743
|
+
title: "Critical Thinking & Problem Solving",
|
|
744
|
+
publisher: "BlueVolt VoltLand",
|
|
745
|
+
description: "Strengthen analytical skills with structured frameworks for breaking down complex problems and evaluating solutions.",
|
|
746
|
+
durationMinutes: 120,
|
|
747
|
+
lastUpdatedDate: "2024-02-15",
|
|
748
|
+
downloaded: true,
|
|
749
|
+
industries: ["edu", "consult"],
|
|
750
|
+
language: "en"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
id: "51",
|
|
754
|
+
type: "Soft Skills",
|
|
755
|
+
title: "Business Writing & Communication",
|
|
756
|
+
publisher: "Etna Supply Company",
|
|
757
|
+
description: "Improve professional writing for emails, reports, and proposals that inform and persuade effectively.",
|
|
758
|
+
durationMinutes: 90,
|
|
759
|
+
lastUpdatedDate: "2024-01-15",
|
|
760
|
+
downloaded: false,
|
|
761
|
+
industries: ["comms", "consult"],
|
|
762
|
+
language: "es"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
id: "52",
|
|
766
|
+
type: "Soft Skills",
|
|
767
|
+
title: "Teamwork & Collaboration",
|
|
768
|
+
publisher: "BlueVolt Course Library",
|
|
769
|
+
description: "Build high-performing team dynamics through trust-building, communication, and shared accountability practices.",
|
|
770
|
+
durationMinutes: 75,
|
|
771
|
+
lastUpdatedDate: "2024-02-15",
|
|
772
|
+
downloaded: false,
|
|
773
|
+
industries: ["consult", "edu"],
|
|
774
|
+
language: "en"
|
|
775
|
+
},
|
|
187
776
|
// CEU — 20 more
|
|
188
|
-
{
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
{
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
777
|
+
{
|
|
778
|
+
id: "53",
|
|
779
|
+
type: "CEU",
|
|
780
|
+
title: "Advanced Building Systems CEU",
|
|
781
|
+
publisher: "Etna Supply Company",
|
|
782
|
+
description: "Explore advanced mechanical, electrical, and plumbing systems integration for modern commercial buildings.",
|
|
783
|
+
durationMinutes: 195,
|
|
784
|
+
lastUpdatedDate: "2024-04-10",
|
|
785
|
+
downloaded: false,
|
|
786
|
+
industries: ["const", "eng"],
|
|
787
|
+
language: "en"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
id: "54",
|
|
791
|
+
type: "CEU",
|
|
792
|
+
title: "Green Building & LEED Certification",
|
|
793
|
+
publisher: "BlueVolt Course Library",
|
|
794
|
+
description: "Earn CEU credits while mastering LEED rating systems, sustainable site design, and energy performance benchmarks.",
|
|
795
|
+
durationMinutes: 210,
|
|
796
|
+
lastUpdatedDate: "2024-05-01",
|
|
797
|
+
downloaded: false,
|
|
798
|
+
industries: ["const", "env"],
|
|
799
|
+
language: "en"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
id: "55",
|
|
803
|
+
type: "CEU",
|
|
804
|
+
title: "Electrical Code Updates 2024",
|
|
805
|
+
publisher: "A.Y. McDonald",
|
|
806
|
+
description: "Stay current with the latest NEC code cycle changes affecting wiring methods, arc-fault protection, and EV infrastructure.",
|
|
807
|
+
durationMinutes: 120,
|
|
808
|
+
lastUpdatedDate: "2024-03-20",
|
|
809
|
+
downloaded: true,
|
|
810
|
+
industries: ["elec", "const"],
|
|
811
|
+
language: "en"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
id: "56",
|
|
815
|
+
type: "CEU",
|
|
816
|
+
title: "Industrial Automation CEU",
|
|
817
|
+
publisher: "Milwaukee Electric Tool",
|
|
818
|
+
description: "Survey PLC programming, robotics integration, and safety standards for automated manufacturing environments.",
|
|
819
|
+
durationMinutes: 225,
|
|
820
|
+
lastUpdatedDate: "2024-02-28",
|
|
821
|
+
downloaded: false,
|
|
822
|
+
industries: ["eng", "elx"],
|
|
823
|
+
language: "en"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
id: "57",
|
|
827
|
+
type: "CEU",
|
|
828
|
+
title: "Water Management & Conservation CEU",
|
|
829
|
+
publisher: "Elm City Flexity",
|
|
830
|
+
description: "Understand water efficiency strategies, stormwater regulations, and conservation technologies for commercial applications.",
|
|
831
|
+
durationMinutes: 150,
|
|
832
|
+
lastUpdatedDate: "2024-01-20",
|
|
833
|
+
downloaded: false,
|
|
834
|
+
industries: ["env", "const"],
|
|
835
|
+
language: "en"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
id: "58",
|
|
839
|
+
type: "CEU",
|
|
840
|
+
title: "Solar Energy Systems CEU",
|
|
841
|
+
publisher: "BlueVolt VoltLand",
|
|
842
|
+
description: "Earn CEU credits covering photovoltaic system design, permitting, interconnection standards, and battery storage basics.",
|
|
843
|
+
durationMinutes: 180,
|
|
844
|
+
lastUpdatedDate: "2024-04-15",
|
|
845
|
+
downloaded: false,
|
|
846
|
+
industries: ["energy", "elec"],
|
|
847
|
+
language: "en"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
id: "59",
|
|
851
|
+
type: "CEU",
|
|
852
|
+
title: "Contract Law Fundamentals",
|
|
853
|
+
publisher: "Ace Hardware",
|
|
854
|
+
description: "Understand contract formation, breach remedies, and risk allocation clauses relevant to construction and supply agreements.",
|
|
855
|
+
durationMinutes: 135,
|
|
856
|
+
lastUpdatedDate: "2023-10-10",
|
|
857
|
+
downloaded: false,
|
|
858
|
+
industries: ["fin", "consult"],
|
|
859
|
+
language: "en"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
id: "60",
|
|
863
|
+
type: "CEU",
|
|
864
|
+
title: "Risk Management & Insurance CEU",
|
|
865
|
+
publisher: "Etna Supply Company",
|
|
866
|
+
description: "Master enterprise risk frameworks, insurance products, and claims management for commercial and industrial operations.",
|
|
867
|
+
durationMinutes: 165,
|
|
868
|
+
lastUpdatedDate: "2024-01-05",
|
|
869
|
+
downloaded: true,
|
|
870
|
+
industries: ["fin", "bank"],
|
|
871
|
+
language: "en"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
id: "61",
|
|
875
|
+
type: "CEU",
|
|
876
|
+
title: "Tax Preparation Fundamentals CEU",
|
|
877
|
+
publisher: "BlueVolt Course Library",
|
|
878
|
+
description: "Cover federal and state tax filing requirements, deductions, and compliance obligations for small business operations.",
|
|
879
|
+
durationMinutes: 120,
|
|
880
|
+
lastUpdatedDate: "2023-09-15",
|
|
881
|
+
downloaded: false,
|
|
882
|
+
industries: ["fin", "bank"],
|
|
883
|
+
language: "es"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
id: "62",
|
|
887
|
+
type: "CEU",
|
|
888
|
+
title: "Healthcare Compliance CEU",
|
|
889
|
+
publisher: "BlueVolt VoltLand",
|
|
890
|
+
description: "Navigate HIPAA, CMS regulations, and healthcare billing compliance requirements for administrative and clinical staff.",
|
|
891
|
+
durationMinutes: 150,
|
|
892
|
+
lastUpdatedDate: "2024-02-10",
|
|
893
|
+
downloaded: false,
|
|
894
|
+
industries: ["bio", "edu"],
|
|
895
|
+
language: "en"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
id: "63",
|
|
899
|
+
type: "CEU",
|
|
900
|
+
title: "Digital Marketing Fundamentals CEU",
|
|
901
|
+
publisher: "Elm City Flexity",
|
|
902
|
+
description: "Earn CEU credits while learning SEO, paid advertising, social media strategy, and analytics for business growth.",
|
|
903
|
+
durationMinutes: 90,
|
|
904
|
+
lastUpdatedDate: "2024-05-05",
|
|
905
|
+
downloaded: false,
|
|
906
|
+
industries: ["comms", "ent"],
|
|
907
|
+
language: "en"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
id: "64",
|
|
911
|
+
type: "CEU",
|
|
912
|
+
title: "Supply Chain Management CEU",
|
|
913
|
+
publisher: "Etna Supply Company",
|
|
914
|
+
description: "Master procurement strategy, supplier evaluation, logistics optimization, and demand-driven inventory practices.",
|
|
915
|
+
durationMinutes: 195,
|
|
916
|
+
lastUpdatedDate: "2024-03-01",
|
|
917
|
+
downloaded: true,
|
|
918
|
+
industries: ["eng", "fin"],
|
|
919
|
+
language: "en"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
id: "65",
|
|
923
|
+
type: "CEU",
|
|
924
|
+
title: "Environmental Regulations CEU",
|
|
925
|
+
publisher: "A.Y. McDonald",
|
|
926
|
+
description: "Understand EPA regulations, permit requirements, and compliance strategies for industrial and commercial facilities.",
|
|
927
|
+
durationMinutes: 180,
|
|
928
|
+
lastUpdatedDate: "2024-01-25",
|
|
929
|
+
downloaded: false,
|
|
930
|
+
industries: ["env", "chem"],
|
|
931
|
+
language: "en"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
id: "66",
|
|
935
|
+
type: "CEU",
|
|
936
|
+
title: "Structural Engineering Basics CEU",
|
|
937
|
+
publisher: "BlueVolt Course Library",
|
|
938
|
+
description: "Explore load calculations, structural systems, and material behavior for civil and architectural engineering professionals.",
|
|
939
|
+
durationMinutes: 210,
|
|
940
|
+
lastUpdatedDate: "2023-12-20",
|
|
941
|
+
downloaded: false,
|
|
942
|
+
industries: ["eng", "const"],
|
|
943
|
+
language: "en"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
id: "67",
|
|
947
|
+
type: "CEU",
|
|
948
|
+
title: "Utility Safety & Right-of-Way CEU",
|
|
949
|
+
publisher: "Milwaukee Electric Tool",
|
|
950
|
+
description: "Learn right-of-way regulations, utility locating procedures, and safety requirements for work near energized infrastructure.",
|
|
951
|
+
durationMinutes: 135,
|
|
952
|
+
lastUpdatedDate: "2024-04-20",
|
|
953
|
+
downloaded: false,
|
|
954
|
+
industries: ["energy", "const"],
|
|
955
|
+
language: "en"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
id: "68",
|
|
959
|
+
type: "CEU",
|
|
960
|
+
title: "Welding Codes & Standards CEU",
|
|
961
|
+
publisher: "Etna Supply Company",
|
|
962
|
+
description: "Earn CEU credits covering AWS and ASME welding codes, inspection requirements, and weld quality assurance procedures.",
|
|
963
|
+
durationMinutes: 165,
|
|
964
|
+
lastUpdatedDate: "2024-02-05",
|
|
965
|
+
downloaded: true,
|
|
966
|
+
industries: ["eng", "const"],
|
|
967
|
+
language: "en"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
id: "69",
|
|
971
|
+
type: "CEU",
|
|
972
|
+
title: "Fire Suppression Systems CEU",
|
|
973
|
+
publisher: "Elm City Flexity",
|
|
974
|
+
description: "Understand NFPA standards, sprinkler system design, and inspection requirements for fire suppression installations.",
|
|
975
|
+
durationMinutes: 150,
|
|
976
|
+
lastUpdatedDate: "2023-11-20",
|
|
977
|
+
downloaded: false,
|
|
978
|
+
industries: ["const", "energy"],
|
|
979
|
+
language: "en"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
id: "70",
|
|
983
|
+
type: "CEU",
|
|
984
|
+
title: "Elevator Systems & Safety CEU",
|
|
985
|
+
publisher: "BlueVolt VoltLand",
|
|
986
|
+
description: "Survey elevator and escalator codes, inspection protocols, and maintenance requirements for building operations teams.",
|
|
987
|
+
durationMinutes: 120,
|
|
988
|
+
lastUpdatedDate: "2023-10-25",
|
|
989
|
+
downloaded: false,
|
|
990
|
+
industries: ["const", "eng"],
|
|
991
|
+
language: "en"
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
id: "71",
|
|
995
|
+
type: "CEU",
|
|
996
|
+
title: "Refrigeration Systems CEU",
|
|
997
|
+
publisher: "Milwaukee Electric Tool",
|
|
998
|
+
description: "Cover commercial refrigeration fundamentals, refrigerant regulations, and EPA Section 608 compliance requirements.",
|
|
999
|
+
durationMinutes: 180,
|
|
1000
|
+
lastUpdatedDate: "2024-03-15",
|
|
1001
|
+
downloaded: false,
|
|
1002
|
+
industries: ["energy", "eng"],
|
|
1003
|
+
language: "es"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
id: "72",
|
|
1007
|
+
type: "CEU",
|
|
1008
|
+
title: "Underground Utilities CEU",
|
|
1009
|
+
publisher: "A.Y. McDonald",
|
|
1010
|
+
description: "Learn excavation safety, damage prevention best practices, and regulatory requirements for underground utility work.",
|
|
1011
|
+
durationMinutes: 105,
|
|
1012
|
+
lastUpdatedDate: "2024-04-01",
|
|
1013
|
+
downloaded: false,
|
|
1014
|
+
industries: ["const", "energy"],
|
|
1015
|
+
language: "en"
|
|
1016
|
+
},
|
|
208
1017
|
// HR & Onboarding — 20 more
|
|
209
|
-
{
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
{
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
1018
|
+
{
|
|
1019
|
+
id: "73",
|
|
1020
|
+
type: "HR & Onboarding",
|
|
1021
|
+
title: "Employee Handbook & Policies",
|
|
1022
|
+
publisher: "BlueVolt Course Library",
|
|
1023
|
+
description: "Guide employees through company policies, code of conduct, and workplace expectations in an engaging interactive format.",
|
|
1024
|
+
durationMinutes: 60,
|
|
1025
|
+
lastUpdatedDate: "2024-03-10",
|
|
1026
|
+
downloaded: false,
|
|
1027
|
+
industries: ["edu", "consult"],
|
|
1028
|
+
language: "en"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
id: "74",
|
|
1032
|
+
type: "HR & Onboarding",
|
|
1033
|
+
title: "Workplace Anti-Harassment Training",
|
|
1034
|
+
publisher: "Elm City Flexity",
|
|
1035
|
+
description: "Identify, prevent, and respond to harassment and discrimination in the workplace in compliance with federal and state laws.",
|
|
1036
|
+
durationMinutes: 90,
|
|
1037
|
+
lastUpdatedDate: "2024-04-05",
|
|
1038
|
+
downloaded: true,
|
|
1039
|
+
industries: ["edu", "consult"],
|
|
1040
|
+
language: "en"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
id: "75",
|
|
1044
|
+
type: "HR & Onboarding",
|
|
1045
|
+
title: "Remote Work Best Practices",
|
|
1046
|
+
publisher: "BlueVolt VoltLand",
|
|
1047
|
+
description: "Set remote employees up for success with guidance on communication norms, productivity tools, and virtual collaboration.",
|
|
1048
|
+
durationMinutes: 75,
|
|
1049
|
+
lastUpdatedDate: "2024-05-01",
|
|
1050
|
+
downloaded: false,
|
|
1051
|
+
industries: ["comms", "consult"],
|
|
1052
|
+
language: "en"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
id: "76",
|
|
1056
|
+
type: "HR & Onboarding",
|
|
1057
|
+
title: "Drug & Alcohol Workplace Policy",
|
|
1058
|
+
publisher: "Etna Supply Company",
|
|
1059
|
+
description: "Establish and communicate substance abuse policies, testing procedures, and employee assistance program resources.",
|
|
1060
|
+
durationMinutes: 60,
|
|
1061
|
+
lastUpdatedDate: "2024-01-30",
|
|
1062
|
+
downloaded: false,
|
|
1063
|
+
industries: ["const", "edu"],
|
|
1064
|
+
language: "en"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
id: "77",
|
|
1068
|
+
type: "HR & Onboarding",
|
|
1069
|
+
title: "ADA Accommodation Procedures",
|
|
1070
|
+
publisher: "A.Y. McDonald",
|
|
1071
|
+
description: "Understand ADA requirements, the interactive accommodation process, and best practices for inclusive workplace design.",
|
|
1072
|
+
durationMinutes: 90,
|
|
1073
|
+
lastUpdatedDate: "2024-02-20",
|
|
1074
|
+
downloaded: false,
|
|
1075
|
+
industries: ["edu", "bank"],
|
|
1076
|
+
language: "en"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
id: "78",
|
|
1080
|
+
type: "HR & Onboarding",
|
|
1081
|
+
title: "Succession Planning & Talent Dev",
|
|
1082
|
+
publisher: "Ace Hardware",
|
|
1083
|
+
description: "Build talent pipelines and succession plans that prepare the next generation of organizational leaders.",
|
|
1084
|
+
durationMinutes: 120,
|
|
1085
|
+
lastUpdatedDate: "2024-03-25",
|
|
1086
|
+
downloaded: false,
|
|
1087
|
+
industries: ["consult", "fin"],
|
|
1088
|
+
language: "en"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
id: "79",
|
|
1092
|
+
type: "HR & Onboarding",
|
|
1093
|
+
title: "Exit Interview Processes",
|
|
1094
|
+
publisher: "BlueVolt Course Library",
|
|
1095
|
+
description: "Design structured exit interview programs that surface actionable insights to reduce voluntary turnover.",
|
|
1096
|
+
durationMinutes: 45,
|
|
1097
|
+
lastUpdatedDate: "2024-01-15",
|
|
1098
|
+
downloaded: false,
|
|
1099
|
+
industries: ["consult", "edu"],
|
|
1100
|
+
language: "en"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
id: "80",
|
|
1104
|
+
type: "HR & Onboarding",
|
|
1105
|
+
title: "Employee Engagement Strategies",
|
|
1106
|
+
publisher: "Elm City Flexity",
|
|
1107
|
+
description: "Apply evidence-based engagement practices, pulse surveys, and recognition programs to build a motivated workforce.",
|
|
1108
|
+
durationMinutes: 105,
|
|
1109
|
+
lastUpdatedDate: "2024-04-10",
|
|
1110
|
+
downloaded: false,
|
|
1111
|
+
industries: ["consult", "edu"],
|
|
1112
|
+
language: "en"
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
id: "81",
|
|
1116
|
+
type: "HR & Onboarding",
|
|
1117
|
+
title: "Recruiting & Hiring Best Practices",
|
|
1118
|
+
publisher: "Milwaukee Electric Tool",
|
|
1119
|
+
description: "Master structured interviewing, bias-free candidate evaluation, and compliant hiring documentation processes.",
|
|
1120
|
+
durationMinutes: 120,
|
|
1121
|
+
lastUpdatedDate: "2024-02-28",
|
|
1122
|
+
downloaded: true,
|
|
1123
|
+
industries: ["consult", "edu"],
|
|
1124
|
+
language: "en"
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
id: "82",
|
|
1128
|
+
type: "HR & Onboarding",
|
|
1129
|
+
title: "Payroll & Time Tracking Basics",
|
|
1130
|
+
publisher: "Etna Supply Company",
|
|
1131
|
+
description: "Navigate payroll processing, time and attendance systems, and wage compliance requirements for hourly and salaried staff.",
|
|
1132
|
+
durationMinutes: 90,
|
|
1133
|
+
lastUpdatedDate: "2023-11-10",
|
|
1134
|
+
downloaded: false,
|
|
1135
|
+
industries: ["fin", "bank"],
|
|
1136
|
+
language: "es"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
id: "83",
|
|
1140
|
+
type: "HR & Onboarding",
|
|
1141
|
+
title: "Workplace Investigations",
|
|
1142
|
+
publisher: "BlueVolt VoltLand",
|
|
1143
|
+
description: "Conduct fair, thorough, and legally defensible workplace investigations for misconduct and policy violation complaints.",
|
|
1144
|
+
durationMinutes: 135,
|
|
1145
|
+
lastUpdatedDate: "2024-03-05",
|
|
1146
|
+
downloaded: false,
|
|
1147
|
+
industries: ["consult", "fin"],
|
|
1148
|
+
language: "en"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
id: "84",
|
|
1152
|
+
type: "HR & Onboarding",
|
|
1153
|
+
title: "Team Building Fundamentals",
|
|
1154
|
+
publisher: "Ace Hardware",
|
|
1155
|
+
description: "Design and facilitate team-building activities that strengthen trust, communication, and cohesion across departments.",
|
|
1156
|
+
durationMinutes: 75,
|
|
1157
|
+
lastUpdatedDate: "2024-04-20",
|
|
1158
|
+
downloaded: false,
|
|
1159
|
+
industries: ["edu", "consult"],
|
|
1160
|
+
language: "en"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
id: "85",
|
|
1164
|
+
type: "HR & Onboarding",
|
|
1165
|
+
title: "Manager Fundamentals Training",
|
|
1166
|
+
publisher: "A.Y. McDonald",
|
|
1167
|
+
description: "Equip new and emerging managers with core skills in planning, delegation, performance conversations, and team development.",
|
|
1168
|
+
durationMinutes: 150,
|
|
1169
|
+
lastUpdatedDate: "2024-02-10",
|
|
1170
|
+
downloaded: true,
|
|
1171
|
+
industries: ["consult", "edu"],
|
|
1172
|
+
language: "en"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
id: "86",
|
|
1176
|
+
type: "HR & Onboarding",
|
|
1177
|
+
title: "Change Management for Teams",
|
|
1178
|
+
publisher: "BlueVolt Course Library",
|
|
1179
|
+
description: "Guide teams through organizational change using proven change models, communication plans, and resistance management techniques.",
|
|
1180
|
+
durationMinutes: 120,
|
|
1181
|
+
lastUpdatedDate: "2024-05-05",
|
|
1182
|
+
downloaded: false,
|
|
1183
|
+
industries: ["consult", "edu"],
|
|
1184
|
+
language: "en"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
id: "87",
|
|
1188
|
+
type: "HR & Onboarding",
|
|
1189
|
+
title: "Organizational Culture & Values",
|
|
1190
|
+
publisher: "Elm City Flexity",
|
|
1191
|
+
description: "Define, communicate, and reinforce organizational values to build a culture that attracts and retains top talent.",
|
|
1192
|
+
durationMinutes: 60,
|
|
1193
|
+
lastUpdatedDate: "2024-01-20",
|
|
1194
|
+
downloaded: false,
|
|
1195
|
+
industries: ["consult", "ent"],
|
|
1196
|
+
language: "en"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
id: "88",
|
|
1200
|
+
type: "HR & Onboarding",
|
|
1201
|
+
title: "Employee Wellness Programs",
|
|
1202
|
+
publisher: "BlueVolt VoltLand",
|
|
1203
|
+
description: "Design comprehensive wellness initiatives covering physical, mental, and financial health to improve workforce well-being.",
|
|
1204
|
+
durationMinutes: 90,
|
|
1205
|
+
lastUpdatedDate: "2024-03-30",
|
|
1206
|
+
downloaded: false,
|
|
1207
|
+
industries: ["edu", "consult"],
|
|
1208
|
+
language: "en"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
id: "89",
|
|
1212
|
+
type: "HR & Onboarding",
|
|
1213
|
+
title: "HR Analytics Basics",
|
|
1214
|
+
publisher: "Etna Supply Company",
|
|
1215
|
+
description: "Use people data and HR metrics to drive smarter decisions around hiring, retention, performance, and workforce planning.",
|
|
1216
|
+
durationMinutes: 105,
|
|
1217
|
+
lastUpdatedDate: "2024-04-25",
|
|
1218
|
+
downloaded: false,
|
|
1219
|
+
industries: ["fin", "consult"],
|
|
1220
|
+
language: "en"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
id: "90",
|
|
1224
|
+
type: "HR & Onboarding",
|
|
1225
|
+
title: "Labor Relations Overview",
|
|
1226
|
+
publisher: "Milwaukee Electric Tool",
|
|
1227
|
+
description: "Understand collective bargaining, NLRA rights, union organizing basics, and best practices for positive labor relations.",
|
|
1228
|
+
durationMinutes: 120,
|
|
1229
|
+
lastUpdatedDate: "2023-12-05",
|
|
1230
|
+
downloaded: false,
|
|
1231
|
+
industries: ["consult", "fin"],
|
|
1232
|
+
language: "en"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
id: "91",
|
|
1236
|
+
type: "HR & Onboarding",
|
|
1237
|
+
title: "Intern & Apprentice Onboarding",
|
|
1238
|
+
publisher: "Ace Hardware",
|
|
1239
|
+
description: "Structure intern and apprenticeship programs with clear goals, mentoring, and evaluation frameworks for early-career talent.",
|
|
1240
|
+
durationMinutes: 60,
|
|
1241
|
+
lastUpdatedDate: "2024-02-15",
|
|
1242
|
+
downloaded: false,
|
|
1243
|
+
industries: ["edu", "const"],
|
|
1244
|
+
language: "en"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
id: "92",
|
|
1248
|
+
type: "HR & Onboarding",
|
|
1249
|
+
title: "Cross-Cultural Communication",
|
|
1250
|
+
publisher: "BlueVolt Course Library",
|
|
1251
|
+
description: "Navigate cultural differences in global teams through communication style awareness, empathy, and inclusive collaboration.",
|
|
1252
|
+
durationMinutes: 90,
|
|
1253
|
+
lastUpdatedDate: "2024-04-30",
|
|
1254
|
+
downloaded: false,
|
|
1255
|
+
industries: ["comms", "consult"],
|
|
1256
|
+
language: "es"
|
|
1257
|
+
},
|
|
229
1258
|
// Product Knowledge — 20 more
|
|
230
|
-
{
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
{
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
1259
|
+
{
|
|
1260
|
+
id: "93",
|
|
1261
|
+
type: "Product Knowledge",
|
|
1262
|
+
title: "Hand Tools & Accessories Guide",
|
|
1263
|
+
publisher: "Ace Hardware",
|
|
1264
|
+
description: "Explore professional-grade hand tools, accessories, and storage solutions for tradespeople and DIY enthusiasts.",
|
|
1265
|
+
durationMinutes: 75,
|
|
1266
|
+
lastUpdatedDate: "2024-01-10",
|
|
1267
|
+
downloaded: true,
|
|
1268
|
+
industries: ["const", "floor"],
|
|
1269
|
+
language: "en"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
id: "94",
|
|
1273
|
+
type: "Product Knowledge",
|
|
1274
|
+
title: "Outdoor Power Equipment Basics",
|
|
1275
|
+
publisher: "Milwaukee Electric Tool",
|
|
1276
|
+
description: "Learn product features, safety requirements, and maintenance best practices for commercial outdoor power equipment.",
|
|
1277
|
+
durationMinutes: 105,
|
|
1278
|
+
lastUpdatedDate: "2024-03-05",
|
|
1279
|
+
downloaded: false,
|
|
1280
|
+
industries: ["agr", "const"],
|
|
1281
|
+
language: "en"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
id: "95",
|
|
1285
|
+
type: "Product Knowledge",
|
|
1286
|
+
title: "Concrete & Masonry Products",
|
|
1287
|
+
publisher: "Etna Supply Company",
|
|
1288
|
+
description: "Understand concrete mixes, masonry units, admixtures, and best practices for durable concrete placement and finishing.",
|
|
1289
|
+
durationMinutes: 120,
|
|
1290
|
+
lastUpdatedDate: "2024-02-01",
|
|
1291
|
+
downloaded: false,
|
|
1292
|
+
industries: ["const", "eng"],
|
|
1293
|
+
language: "en"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
id: "96",
|
|
1297
|
+
type: "Product Knowledge",
|
|
1298
|
+
title: "Roofing Materials & Systems",
|
|
1299
|
+
publisher: "Ace Hardware",
|
|
1300
|
+
description: "Compare shingles, membranes, metal roofing, and flat-roof systems for residential and commercial applications.",
|
|
1301
|
+
durationMinutes: 135,
|
|
1302
|
+
lastUpdatedDate: "2023-11-05",
|
|
1303
|
+
downloaded: false,
|
|
1304
|
+
industries: ["const", "floor"],
|
|
1305
|
+
language: "en"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
id: "97",
|
|
1309
|
+
type: "Product Knowledge",
|
|
1310
|
+
title: "Insulation & Energy Efficiency",
|
|
1311
|
+
publisher: "BlueVolt Course Library",
|
|
1312
|
+
description: "Learn about rigid, batt, and spray-foam insulation products and their thermal performance in building envelopes.",
|
|
1313
|
+
durationMinutes: 90,
|
|
1314
|
+
lastUpdatedDate: "2024-04-05",
|
|
1315
|
+
downloaded: false,
|
|
1316
|
+
industries: ["const", "energy"],
|
|
1317
|
+
language: "en"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
id: "98",
|
|
1321
|
+
type: "Product Knowledge",
|
|
1322
|
+
title: "Commercial Lighting Solutions",
|
|
1323
|
+
publisher: "Elm City Flexity",
|
|
1324
|
+
description: "Discover LED fixtures, controls, and lighting design principles for commercial and industrial retrofit projects.",
|
|
1325
|
+
durationMinutes: 120,
|
|
1326
|
+
lastUpdatedDate: "2024-03-20",
|
|
1327
|
+
downloaded: true,
|
|
1328
|
+
industries: ["elec", "elx"],
|
|
1329
|
+
language: "en"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
id: "99",
|
|
1333
|
+
type: "Product Knowledge",
|
|
1334
|
+
title: "Generator & Power Systems",
|
|
1335
|
+
publisher: "Milwaukee Electric Tool",
|
|
1336
|
+
description: "Understand generator sizing, transfer switch requirements, and fuel system best practices for backup power installations.",
|
|
1337
|
+
durationMinutes: 150,
|
|
1338
|
+
lastUpdatedDate: "2024-01-25",
|
|
1339
|
+
downloaded: false,
|
|
1340
|
+
industries: ["elec", "energy"],
|
|
1341
|
+
language: "en"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
id: "100",
|
|
1345
|
+
type: "Product Knowledge",
|
|
1346
|
+
title: "Water Heater Technologies",
|
|
1347
|
+
publisher: "A.Y. McDonald",
|
|
1348
|
+
description: "Compare tank, tankless, heat pump, and solar water heating technologies for residential and commercial applications.",
|
|
1349
|
+
durationMinutes: 90,
|
|
1350
|
+
lastUpdatedDate: "2024-04-15",
|
|
1351
|
+
downloaded: false,
|
|
1352
|
+
industries: ["const", "energy"],
|
|
1353
|
+
language: "en"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
id: "101",
|
|
1357
|
+
type: "Product Knowledge",
|
|
1358
|
+
title: "Pneumatic Tools & Air Compressors",
|
|
1359
|
+
publisher: "Milwaukee Electric Tool",
|
|
1360
|
+
description: "Learn pneumatic tool applications, compressor sizing, and maintenance procedures for jobsite and shop environments.",
|
|
1361
|
+
durationMinutes: 105,
|
|
1362
|
+
lastUpdatedDate: "2023-12-10",
|
|
1363
|
+
downloaded: true,
|
|
1364
|
+
industries: ["const", "eng"],
|
|
1365
|
+
language: "en"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
id: "102",
|
|
1369
|
+
type: "Product Knowledge",
|
|
1370
|
+
title: "Fasteners & Anchoring Systems",
|
|
1371
|
+
publisher: "Ace Hardware",
|
|
1372
|
+
description: "Navigate fastener grades, drive types, and anchor systems for concrete, masonry, and structural steel applications.",
|
|
1373
|
+
durationMinutes: 90,
|
|
1374
|
+
lastUpdatedDate: "2024-02-20",
|
|
1375
|
+
downloaded: false,
|
|
1376
|
+
industries: ["const", "eng"],
|
|
1377
|
+
language: "en"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
id: "103",
|
|
1381
|
+
type: "Product Knowledge",
|
|
1382
|
+
title: "Cutting Tools & Blades",
|
|
1383
|
+
publisher: "Milwaukee Electric Tool",
|
|
1384
|
+
description: "Maximize cutting performance with expert guidance on blade selection, speed settings, and material-specific applications.",
|
|
1385
|
+
durationMinutes: 75,
|
|
1386
|
+
lastUpdatedDate: "2024-03-10",
|
|
1387
|
+
downloaded: false,
|
|
1388
|
+
industries: ["const", "elec"],
|
|
1389
|
+
language: "en"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
id: "104",
|
|
1393
|
+
type: "Product Knowledge",
|
|
1394
|
+
title: "Pipe & Drain Products Guide",
|
|
1395
|
+
publisher: "A.Y. McDonald",
|
|
1396
|
+
description: "A complete overview of pipe materials, fittings, drains, and cleanout systems for plumbing professionals.",
|
|
1397
|
+
durationMinutes: 105,
|
|
1398
|
+
lastUpdatedDate: "2024-01-30",
|
|
1399
|
+
downloaded: false,
|
|
1400
|
+
industries: ["const", "floor"],
|
|
1401
|
+
language: "es"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
id: "105",
|
|
1405
|
+
type: "Product Knowledge",
|
|
1406
|
+
title: "Storage & Organization Solutions",
|
|
1407
|
+
publisher: "Ace Hardware",
|
|
1408
|
+
description: "Design efficient shop and jobsite storage systems using shelving, cabinets, and tool management products.",
|
|
1409
|
+
durationMinutes: 60,
|
|
1410
|
+
lastUpdatedDate: "2024-05-10",
|
|
1411
|
+
downloaded: false,
|
|
1412
|
+
industries: ["const", "consult"],
|
|
1413
|
+
language: "en"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
id: "106",
|
|
1417
|
+
type: "Product Knowledge",
|
|
1418
|
+
title: "Paints, Coatings & Finishes",
|
|
1419
|
+
publisher: "Etna Supply Company",
|
|
1420
|
+
description: "Select the right paint, stain, or protective coating for interior, exterior, and industrial surface applications.",
|
|
1421
|
+
durationMinutes: 90,
|
|
1422
|
+
lastUpdatedDate: "2024-04-25",
|
|
1423
|
+
downloaded: false,
|
|
1424
|
+
industries: ["const", "floor"],
|
|
1425
|
+
language: "en"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
id: "107",
|
|
1429
|
+
type: "Product Knowledge",
|
|
1430
|
+
title: "Welding Equipment & Consumables",
|
|
1431
|
+
publisher: "Etna Supply Company",
|
|
1432
|
+
description: "Explore MIG, TIG, and stick welding equipment options along with electrode and wire selection guidance.",
|
|
1433
|
+
durationMinutes: 135,
|
|
1434
|
+
lastUpdatedDate: "2024-02-28",
|
|
1435
|
+
downloaded: false,
|
|
1436
|
+
industries: ["eng", "const"],
|
|
1437
|
+
language: "en"
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
id: "108",
|
|
1441
|
+
type: "Product Knowledge",
|
|
1442
|
+
title: "Landscape & Irrigation Systems",
|
|
1443
|
+
publisher: "BlueVolt VoltLand",
|
|
1444
|
+
description: "Learn about drip irrigation, sprinkler heads, controllers, and water-efficient landscape design principles.",
|
|
1445
|
+
durationMinutes: 120,
|
|
1446
|
+
lastUpdatedDate: "2024-03-15",
|
|
1447
|
+
downloaded: true,
|
|
1448
|
+
industries: ["agr", "env"],
|
|
1449
|
+
language: "en"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
id: "109",
|
|
1453
|
+
type: "Product Knowledge",
|
|
1454
|
+
title: "Security & Access Control Systems",
|
|
1455
|
+
publisher: "Elm City Flexity",
|
|
1456
|
+
description: "Survey cameras, keycard readers, intercoms, and integrated access control solutions for commercial installations.",
|
|
1457
|
+
durationMinutes: 135,
|
|
1458
|
+
lastUpdatedDate: "2024-01-15",
|
|
1459
|
+
downloaded: false,
|
|
1460
|
+
industries: ["elx", "comms"],
|
|
1461
|
+
language: "en"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
id: "110",
|
|
1465
|
+
type: "Product Knowledge",
|
|
1466
|
+
title: "Ventilation & Air Quality Products",
|
|
1467
|
+
publisher: "Milwaukee Electric Tool",
|
|
1468
|
+
description: "Understand exhaust fans, HRVs, ERVs, and air purification systems for healthy and code-compliant indoor environments.",
|
|
1469
|
+
durationMinutes: 105,
|
|
1470
|
+
lastUpdatedDate: "2023-11-25",
|
|
1471
|
+
downloaded: false,
|
|
1472
|
+
industries: ["const", "energy"],
|
|
1473
|
+
language: "en"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
id: "111",
|
|
1477
|
+
type: "Product Knowledge",
|
|
1478
|
+
title: "Cable Management Solutions",
|
|
1479
|
+
publisher: "BlueVolt Course Library",
|
|
1480
|
+
description: "Design clean and compliant cable routing using raceways, trays, conduit, and labeling systems for low-voltage installations.",
|
|
1481
|
+
durationMinutes: 90,
|
|
1482
|
+
lastUpdatedDate: "2024-04-08",
|
|
1483
|
+
downloaded: false,
|
|
1484
|
+
industries: ["elec", "elx"],
|
|
1485
|
+
language: "en"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
id: "112",
|
|
1489
|
+
type: "Product Knowledge",
|
|
1490
|
+
title: "HVAC Controls & Thermostats",
|
|
1491
|
+
publisher: "Elm City Flexity",
|
|
1492
|
+
description: "Explore programmable, smart, and BAS-integrated thermostat technologies for residential and light commercial HVAC systems.",
|
|
1493
|
+
durationMinutes: 120,
|
|
1494
|
+
lastUpdatedDate: "2024-05-05",
|
|
1495
|
+
downloaded: false,
|
|
1496
|
+
industries: ["eng", "elx"],
|
|
1497
|
+
language: "en"
|
|
1498
|
+
},
|
|
250
1499
|
// Safety & Compliance — 20 more
|
|
251
|
-
{
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
{
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
1500
|
+
{
|
|
1501
|
+
id: "113",
|
|
1502
|
+
type: "Safety & Compliance",
|
|
1503
|
+
title: "Confined Space Entry Procedures",
|
|
1504
|
+
publisher: "Etna Supply Company",
|
|
1505
|
+
description: "Apply OSHA permit-required confined space standards, atmospheric testing, and rescue planning for industrial environments.",
|
|
1506
|
+
durationMinutes: 150,
|
|
1507
|
+
lastUpdatedDate: "2024-01-05",
|
|
1508
|
+
downloaded: false,
|
|
1509
|
+
industries: ["const", "chem"],
|
|
1510
|
+
language: "en"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
id: "114",
|
|
1514
|
+
type: "Safety & Compliance",
|
|
1515
|
+
title: "Scaffolding Safety Standards",
|
|
1516
|
+
publisher: "Elm City Flexity",
|
|
1517
|
+
description: "Master OSHA scaffolding requirements, erection procedures, and daily inspection protocols for construction worksites.",
|
|
1518
|
+
durationMinutes: 120,
|
|
1519
|
+
lastUpdatedDate: "2024-02-15",
|
|
1520
|
+
downloaded: false,
|
|
1521
|
+
industries: ["const", "eng"],
|
|
1522
|
+
language: "en"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
id: "115",
|
|
1526
|
+
type: "Safety & Compliance",
|
|
1527
|
+
title: "Forklift & Powered Industrial Trucks",
|
|
1528
|
+
publisher: "Milwaukee Electric Tool",
|
|
1529
|
+
description: "Train operators on safe forklift operation, pre-shift inspections, and load-handling procedures per OSHA standards.",
|
|
1530
|
+
durationMinutes: 135,
|
|
1531
|
+
lastUpdatedDate: "2024-03-05",
|
|
1532
|
+
downloaded: true,
|
|
1533
|
+
industries: ["const", "eng"],
|
|
1534
|
+
language: "en"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
id: "116",
|
|
1538
|
+
type: "Safety & Compliance",
|
|
1539
|
+
title: "Personal Protective Equipment",
|
|
1540
|
+
publisher: "Ace Hardware",
|
|
1541
|
+
description: "Select, inspect, and maintain PPE for head, eye, hearing, respiratory, hand, and foot protection in all workplace settings.",
|
|
1542
|
+
durationMinutes: 75,
|
|
1543
|
+
lastUpdatedDate: "2024-04-01",
|
|
1544
|
+
downloaded: false,
|
|
1545
|
+
industries: ["const", "chem"],
|
|
1546
|
+
language: "en"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
id: "117",
|
|
1550
|
+
type: "Safety & Compliance",
|
|
1551
|
+
title: "Bloodborne Pathogens Training",
|
|
1552
|
+
publisher: "BlueVolt Course Library",
|
|
1553
|
+
description: "Understand OSHA bloodborne pathogen standards, exposure control plans, and post-exposure follow-up procedures.",
|
|
1554
|
+
durationMinutes: 60,
|
|
1555
|
+
lastUpdatedDate: "2024-03-20",
|
|
1556
|
+
downloaded: false,
|
|
1557
|
+
industries: ["edu", "bio"],
|
|
1558
|
+
language: "en"
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
id: "118",
|
|
1562
|
+
type: "Safety & Compliance",
|
|
1563
|
+
title: "Heat Stress & Cold Weather Safety",
|
|
1564
|
+
publisher: "BlueVolt VoltLand",
|
|
1565
|
+
description: "Recognize heat illness and cold stress symptoms, apply prevention strategies, and respond to weather-related emergencies.",
|
|
1566
|
+
durationMinutes: 60,
|
|
1567
|
+
lastUpdatedDate: "2024-04-10",
|
|
1568
|
+
downloaded: false,
|
|
1569
|
+
industries: ["const", "agr"],
|
|
1570
|
+
language: "es"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
id: "119",
|
|
1574
|
+
type: "Safety & Compliance",
|
|
1575
|
+
title: "Hearing Conservation Program",
|
|
1576
|
+
publisher: "Etna Supply Company",
|
|
1577
|
+
description: "Implement hearing conservation programs including noise monitoring, audiometric testing, and hearing protector selection.",
|
|
1578
|
+
durationMinutes: 90,
|
|
1579
|
+
lastUpdatedDate: "2024-01-20",
|
|
1580
|
+
downloaded: false,
|
|
1581
|
+
industries: ["const", "eng"],
|
|
1582
|
+
language: "en"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
id: "120",
|
|
1586
|
+
type: "Safety & Compliance",
|
|
1587
|
+
title: "Respiratory Protection Training",
|
|
1588
|
+
publisher: "A.Y. McDonald",
|
|
1589
|
+
description: "Select the correct respirator, conduct fit testing, and maintain respiratory protection programs per OSHA 1910.134.",
|
|
1590
|
+
durationMinutes: 105,
|
|
1591
|
+
lastUpdatedDate: "2024-02-05",
|
|
1592
|
+
downloaded: false,
|
|
1593
|
+
industries: ["chem", "const"],
|
|
1594
|
+
language: "en"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
id: "121",
|
|
1598
|
+
type: "Safety & Compliance",
|
|
1599
|
+
title: "Machine Guarding Requirements",
|
|
1600
|
+
publisher: "Milwaukee Electric Tool",
|
|
1601
|
+
description: "Apply OSHA machine guarding standards to protect workers from rotating parts, pinch points, and flying debris.",
|
|
1602
|
+
durationMinutes: 120,
|
|
1603
|
+
lastUpdatedDate: "2024-03-25",
|
|
1604
|
+
downloaded: true,
|
|
1605
|
+
industries: ["eng", "const"],
|
|
1606
|
+
language: "en"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
id: "122",
|
|
1610
|
+
type: "Safety & Compliance",
|
|
1611
|
+
title: "Electrical Arc Flash Safety",
|
|
1612
|
+
publisher: "BlueVolt VoltLand",
|
|
1613
|
+
description: "Understand arc flash hazards, NFPA 70E requirements, PPE selection, and safe work practices around energized electrical equipment.",
|
|
1614
|
+
durationMinutes: 150,
|
|
1615
|
+
lastUpdatedDate: "2024-04-15",
|
|
1616
|
+
downloaded: false,
|
|
1617
|
+
industries: ["elec", "energy"],
|
|
1618
|
+
language: "en"
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
id: "123",
|
|
1622
|
+
type: "Safety & Compliance",
|
|
1623
|
+
title: "Slips, Trips & Falls Prevention",
|
|
1624
|
+
publisher: "Ace Hardware",
|
|
1625
|
+
description: "Identify and control slip, trip, and fall hazards through housekeeping, flooring selection, and administrative controls.",
|
|
1626
|
+
durationMinutes: 60,
|
|
1627
|
+
lastUpdatedDate: "2024-05-01",
|
|
1628
|
+
downloaded: false,
|
|
1629
|
+
industries: ["const", "floor"],
|
|
1630
|
+
language: "en"
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
id: "124",
|
|
1634
|
+
type: "Safety & Compliance",
|
|
1635
|
+
title: "Tool & Equipment Safety",
|
|
1636
|
+
publisher: "Elm City Flexity",
|
|
1637
|
+
description: "Establish safe work practices for hand tools, power tools, and equipment through inspection, guarding, and proper technique.",
|
|
1638
|
+
durationMinutes: 90,
|
|
1639
|
+
lastUpdatedDate: "2024-01-10",
|
|
1640
|
+
downloaded: false,
|
|
1641
|
+
industries: ["const", "eng"],
|
|
1642
|
+
language: "en"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
id: "125",
|
|
1646
|
+
type: "Safety & Compliance",
|
|
1647
|
+
title: "Ladder Safety & Inspection",
|
|
1648
|
+
publisher: "Etna Supply Company",
|
|
1649
|
+
description: "Apply ANSI and OSHA ladder safety standards for portable, fixed, and extension ladders in construction and maintenance.",
|
|
1650
|
+
durationMinutes: 60,
|
|
1651
|
+
lastUpdatedDate: "2024-02-20",
|
|
1652
|
+
downloaded: false,
|
|
1653
|
+
industries: ["const", "elec"],
|
|
1654
|
+
language: "en"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
id: "126",
|
|
1658
|
+
type: "Safety & Compliance",
|
|
1659
|
+
title: "Trenching & Excavation Safety",
|
|
1660
|
+
publisher: "A.Y. McDonald",
|
|
1661
|
+
description: "Implement OSHA excavation standards with proper sloping, shoring, and protective system selection for underground work.",
|
|
1662
|
+
durationMinutes: 120,
|
|
1663
|
+
lastUpdatedDate: "2024-03-10",
|
|
1664
|
+
downloaded: true,
|
|
1665
|
+
industries: ["const", "energy"],
|
|
1666
|
+
language: "en"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
id: "127",
|
|
1670
|
+
type: "Safety & Compliance",
|
|
1671
|
+
title: "Right-to-Know & HAZCOM Standard",
|
|
1672
|
+
publisher: "BlueVolt Course Library",
|
|
1673
|
+
description: "Comply with OSHA HazCom 2012, GHS labeling requirements, and SDS access obligations for chemical-using workplaces.",
|
|
1674
|
+
durationMinutes: 75,
|
|
1675
|
+
lastUpdatedDate: "2024-04-20",
|
|
1676
|
+
downloaded: false,
|
|
1677
|
+
industries: ["chem", "env"],
|
|
1678
|
+
language: "es"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
id: "128",
|
|
1682
|
+
type: "Safety & Compliance",
|
|
1683
|
+
title: "Industrial Hygiene Fundamentals",
|
|
1684
|
+
publisher: "Milwaukee Electric Tool",
|
|
1685
|
+
description: "Anticipate, recognize, evaluate, and control occupational health hazards including chemicals, noise, and ergonomic stressors.",
|
|
1686
|
+
durationMinutes: 150,
|
|
1687
|
+
lastUpdatedDate: "2024-02-25",
|
|
1688
|
+
downloaded: false,
|
|
1689
|
+
industries: ["chem", "eng"],
|
|
1690
|
+
language: "en"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
id: "129",
|
|
1694
|
+
type: "Safety & Compliance",
|
|
1695
|
+
title: "Driving Safety & Fleet Management",
|
|
1696
|
+
publisher: "BlueVolt VoltLand",
|
|
1697
|
+
description: "Reduce fleet incidents through defensive driving techniques, vehicle inspection protocols, and DOT compliance basics.",
|
|
1698
|
+
durationMinutes: 90,
|
|
1699
|
+
lastUpdatedDate: "2024-03-30",
|
|
1700
|
+
downloaded: false,
|
|
1701
|
+
industries: ["const", "consult"],
|
|
1702
|
+
language: "en"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
id: "130",
|
|
1706
|
+
type: "Safety & Compliance",
|
|
1707
|
+
title: "Emergency Action Plan Development",
|
|
1708
|
+
publisher: "Elm City Flexity",
|
|
1709
|
+
description: "Build comprehensive emergency action plans covering evacuation, shelter-in-place, and employee accountability procedures.",
|
|
1710
|
+
durationMinutes: 105,
|
|
1711
|
+
lastUpdatedDate: "2024-01-30",
|
|
1712
|
+
downloaded: false,
|
|
1713
|
+
industries: ["const", "edu"],
|
|
1714
|
+
language: "en"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
id: "131",
|
|
1718
|
+
type: "Safety & Compliance",
|
|
1719
|
+
title: "Incident Investigation & Reporting",
|
|
1720
|
+
publisher: "Etna Supply Company",
|
|
1721
|
+
description: "Conduct root cause analyses, complete OSHA recordkeeping requirements, and implement corrective actions to prevent recurrence.",
|
|
1722
|
+
durationMinutes: 135,
|
|
1723
|
+
lastUpdatedDate: "2024-04-25",
|
|
1724
|
+
downloaded: true,
|
|
1725
|
+
industries: ["const", "eng"],
|
|
1726
|
+
language: "en"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
id: "132",
|
|
1730
|
+
type: "Safety & Compliance",
|
|
1731
|
+
title: "Radiation Safety Awareness",
|
|
1732
|
+
publisher: "Ace Hardware",
|
|
1733
|
+
description: "Understand ionizing and non-ionizing radiation sources, exposure limits, and protective measures for industrial workplaces.",
|
|
1734
|
+
durationMinutes: 120,
|
|
1735
|
+
lastUpdatedDate: "2024-05-10",
|
|
1736
|
+
downloaded: false,
|
|
1737
|
+
industries: ["energy", "bio"],
|
|
1738
|
+
language: "en"
|
|
1739
|
+
},
|
|
271
1740
|
// Soft Skills — 20 more
|
|
272
|
-
{
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
{
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
1741
|
+
{
|
|
1742
|
+
id: "133",
|
|
1743
|
+
type: "Soft Skills",
|
|
1744
|
+
title: "Active Listening Skills",
|
|
1745
|
+
publisher: "BlueVolt VoltLand",
|
|
1746
|
+
description: "Strengthen listening presence, ask better questions, and retain information to become a more effective communicator.",
|
|
1747
|
+
durationMinutes: 45,
|
|
1748
|
+
lastUpdatedDate: "2024-03-05",
|
|
1749
|
+
downloaded: false,
|
|
1750
|
+
industries: ["comms", "consult"],
|
|
1751
|
+
language: "en"
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
id: "134",
|
|
1755
|
+
type: "Soft Skills",
|
|
1756
|
+
title: "Coaching & Mentoring Others",
|
|
1757
|
+
publisher: "Elm City Flexity",
|
|
1758
|
+
description: "Develop the skills to guide, challenge, and support others through structured coaching conversations and mentoring relationships.",
|
|
1759
|
+
durationMinutes: 105,
|
|
1760
|
+
lastUpdatedDate: "2024-04-01",
|
|
1761
|
+
downloaded: false,
|
|
1762
|
+
industries: ["edu", "consult"],
|
|
1763
|
+
language: "en"
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
id: "135",
|
|
1767
|
+
type: "Soft Skills",
|
|
1768
|
+
title: "Decision Making Under Pressure",
|
|
1769
|
+
publisher: "A.Y. McDonald",
|
|
1770
|
+
description: "Apply structured decision-making frameworks and cognitive bias awareness to make sound judgments in high-stakes situations.",
|
|
1771
|
+
durationMinutes: 75,
|
|
1772
|
+
lastUpdatedDate: "2024-02-10",
|
|
1773
|
+
downloaded: false,
|
|
1774
|
+
industries: ["consult", "fin"],
|
|
1775
|
+
language: "en"
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
id: "136",
|
|
1779
|
+
type: "Soft Skills",
|
|
1780
|
+
title: "Adaptability & Change Readiness",
|
|
1781
|
+
publisher: "BlueVolt Course Library",
|
|
1782
|
+
description: "Build resilience and flexibility to navigate organizational change, ambiguity, and rapidly evolving business environments.",
|
|
1783
|
+
durationMinutes: 60,
|
|
1784
|
+
lastUpdatedDate: "2024-05-05",
|
|
1785
|
+
downloaded: true,
|
|
1786
|
+
industries: ["consult", "edu"],
|
|
1787
|
+
language: "en"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
id: "137",
|
|
1791
|
+
type: "Soft Skills",
|
|
1792
|
+
title: "Cross-Functional Collaboration",
|
|
1793
|
+
publisher: "Etna Supply Company",
|
|
1794
|
+
description: "Break down silos by developing skills for effective collaboration across departments, functions, and organizational levels.",
|
|
1795
|
+
durationMinutes: 90,
|
|
1796
|
+
lastUpdatedDate: "2024-03-20",
|
|
1797
|
+
downloaded: false,
|
|
1798
|
+
industries: ["consult", "eng"],
|
|
1799
|
+
language: "en"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
id: "138",
|
|
1803
|
+
type: "Soft Skills",
|
|
1804
|
+
title: "Giving & Receiving Feedback",
|
|
1805
|
+
publisher: "Milwaukee Electric Tool",
|
|
1806
|
+
description: "Master the art of delivering constructive feedback and receiving it with openness to accelerate personal and team growth.",
|
|
1807
|
+
durationMinutes: 60,
|
|
1808
|
+
lastUpdatedDate: "2024-04-15",
|
|
1809
|
+
downloaded: false,
|
|
1810
|
+
industries: ["consult", "edu"],
|
|
1811
|
+
language: "en"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
id: "139",
|
|
1815
|
+
type: "Soft Skills",
|
|
1816
|
+
title: "Goal Setting & OKRs",
|
|
1817
|
+
publisher: "Ace Hardware",
|
|
1818
|
+
description: "Align individual and team objectives using SMART goals and the OKR framework to drive measurable business outcomes.",
|
|
1819
|
+
durationMinutes: 75,
|
|
1820
|
+
lastUpdatedDate: "2024-01-25",
|
|
1821
|
+
downloaded: false,
|
|
1822
|
+
industries: ["consult", "fin"],
|
|
1823
|
+
language: "en"
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
id: "140",
|
|
1827
|
+
type: "Soft Skills",
|
|
1828
|
+
title: "Influencing Without Authority",
|
|
1829
|
+
publisher: "BlueVolt VoltLand",
|
|
1830
|
+
description: "Build credibility, leverage relationships, and use persuasion techniques to drive results without formal authority.",
|
|
1831
|
+
durationMinutes: 90,
|
|
1832
|
+
lastUpdatedDate: "2024-02-25",
|
|
1833
|
+
downloaded: false,
|
|
1834
|
+
industries: ["consult", "comms"],
|
|
1835
|
+
language: "en"
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
id: "141",
|
|
1839
|
+
type: "Soft Skills",
|
|
1840
|
+
title: "Meeting Facilitation Skills",
|
|
1841
|
+
publisher: "Elm City Flexity",
|
|
1842
|
+
description: "Plan and facilitate productive meetings with clear agendas, inclusive participation, and actionable follow-through.",
|
|
1843
|
+
durationMinutes: 60,
|
|
1844
|
+
lastUpdatedDate: "2024-03-30",
|
|
1845
|
+
downloaded: false,
|
|
1846
|
+
industries: ["consult", "comms"],
|
|
1847
|
+
language: "en"
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
id: "142",
|
|
1851
|
+
type: "Soft Skills",
|
|
1852
|
+
title: "Mindfulness & Stress Management",
|
|
1853
|
+
publisher: "BlueVolt Course Library",
|
|
1854
|
+
description: "Apply mindfulness practices and evidence-based stress management techniques to improve well-being and workplace performance.",
|
|
1855
|
+
durationMinutes: 75,
|
|
1856
|
+
lastUpdatedDate: "2024-04-20",
|
|
1857
|
+
downloaded: false,
|
|
1858
|
+
industries: ["edu", "consult"],
|
|
1859
|
+
language: "en"
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
id: "143",
|
|
1863
|
+
type: "Soft Skills",
|
|
1864
|
+
title: "Networking & Relationship Building",
|
|
1865
|
+
publisher: "A.Y. McDonald",
|
|
1866
|
+
description: "Develop a strategic professional network and cultivate authentic long-term relationships that open doors and accelerate career growth.",
|
|
1867
|
+
durationMinutes: 90,
|
|
1868
|
+
lastUpdatedDate: "2024-01-10",
|
|
1869
|
+
downloaded: false,
|
|
1870
|
+
industries: ["comms", "consult"],
|
|
1871
|
+
language: "en"
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
id: "144",
|
|
1875
|
+
type: "Soft Skills",
|
|
1876
|
+
title: "Personal Branding at Work",
|
|
1877
|
+
publisher: "Etna Supply Company",
|
|
1878
|
+
description: "Define and communicate your unique professional identity to build visibility, credibility, and career momentum.",
|
|
1879
|
+
durationMinutes: 60,
|
|
1880
|
+
lastUpdatedDate: "2024-05-10",
|
|
1881
|
+
downloaded: false,
|
|
1882
|
+
industries: ["comms", "ent"],
|
|
1883
|
+
language: "en"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
id: "145",
|
|
1887
|
+
type: "Soft Skills",
|
|
1888
|
+
title: "Project Coordination Basics",
|
|
1889
|
+
publisher: "Milwaukee Electric Tool",
|
|
1890
|
+
description: "Learn essential project coordination skills including scheduling, stakeholder communication, and progress tracking.",
|
|
1891
|
+
durationMinutes: 120,
|
|
1892
|
+
lastUpdatedDate: "2024-02-05",
|
|
1893
|
+
downloaded: true,
|
|
1894
|
+
industries: ["consult", "eng"],
|
|
1895
|
+
language: "en"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
id: "146",
|
|
1899
|
+
type: "Soft Skills",
|
|
1900
|
+
title: "Remote Team Communication",
|
|
1901
|
+
publisher: "Ace Hardware",
|
|
1902
|
+
description: "Overcome distance and time zone barriers with effective async communication, virtual check-ins, and remote culture best practices.",
|
|
1903
|
+
durationMinutes: 75,
|
|
1904
|
+
lastUpdatedDate: "2024-03-15",
|
|
1905
|
+
downloaded: false,
|
|
1906
|
+
industries: ["comms", "consult"],
|
|
1907
|
+
language: "en"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
id: "147",
|
|
1911
|
+
type: "Soft Skills",
|
|
1912
|
+
title: "Sales Communication Fundamentals",
|
|
1913
|
+
publisher: "BlueVolt VoltLand",
|
|
1914
|
+
description: "Build persuasive communication skills for discovery conversations, objection handling, and closing techniques in B2B contexts.",
|
|
1915
|
+
durationMinutes: 120,
|
|
1916
|
+
lastUpdatedDate: "2024-04-05",
|
|
1917
|
+
downloaded: false,
|
|
1918
|
+
industries: ["comms", "consult"],
|
|
1919
|
+
language: "es"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
id: "148",
|
|
1923
|
+
type: "Soft Skills",
|
|
1924
|
+
title: "Strategic Thinking for Professionals",
|
|
1925
|
+
publisher: "Elm City Flexity",
|
|
1926
|
+
description: "Develop big-picture thinking, competitive analysis skills, and strategic planning capabilities for mid-career professionals.",
|
|
1927
|
+
durationMinutes: 105,
|
|
1928
|
+
lastUpdatedDate: "2024-01-30",
|
|
1929
|
+
downloaded: false,
|
|
1930
|
+
industries: ["consult", "fin"],
|
|
1931
|
+
language: "en"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
id: "149",
|
|
1935
|
+
type: "Soft Skills",
|
|
1936
|
+
title: "Virtual Presentation Skills",
|
|
1937
|
+
publisher: "BlueVolt Course Library",
|
|
1938
|
+
description: "Deliver engaging online presentations with strong slide design, camera presence, and virtual audience engagement techniques.",
|
|
1939
|
+
durationMinutes: 90,
|
|
1940
|
+
lastUpdatedDate: "2024-03-25",
|
|
1941
|
+
downloaded: false,
|
|
1942
|
+
industries: ["comms", "ent"],
|
|
1943
|
+
language: "en"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
id: "150",
|
|
1947
|
+
type: "Soft Skills",
|
|
1948
|
+
title: "Workplace Professionalism",
|
|
1949
|
+
publisher: "A.Y. McDonald",
|
|
1950
|
+
description: "Establish professional standards for workplace behavior, appearance, communication, and accountability in any organizational setting.",
|
|
1951
|
+
durationMinutes: 60,
|
|
1952
|
+
lastUpdatedDate: "2024-02-15",
|
|
1953
|
+
downloaded: false,
|
|
1954
|
+
industries: ["edu", "consult"],
|
|
1955
|
+
language: "en"
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
id: "151",
|
|
1959
|
+
type: "Soft Skills",
|
|
1960
|
+
title: "Written Communication for Teams",
|
|
1961
|
+
publisher: "Etna Supply Company",
|
|
1962
|
+
description: "Write clear, concise, and professional emails, memos, and reports that inform and align distributed teams.",
|
|
1963
|
+
durationMinutes: 75,
|
|
1964
|
+
lastUpdatedDate: "2024-04-30",
|
|
1965
|
+
downloaded: false,
|
|
1966
|
+
industries: ["comms", "consult"],
|
|
1967
|
+
language: "en"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
id: "152",
|
|
1971
|
+
type: "Soft Skills",
|
|
1972
|
+
title: "Innovation & Creative Thinking",
|
|
1973
|
+
publisher: "Milwaukee Electric Tool",
|
|
1974
|
+
description: "Apply design thinking, brainstorming techniques, and creative problem-solving frameworks to generate breakthrough ideas at work.",
|
|
1975
|
+
durationMinutes: 90,
|
|
1976
|
+
lastUpdatedDate: "2024-05-08",
|
|
1977
|
+
downloaded: false,
|
|
1978
|
+
industries: ["consult", "eng"],
|
|
1979
|
+
language: "en"
|
|
1980
|
+
}
|
|
292
1981
|
];
|
|
293
1982
|
export {
|
|
294
1983
|
ALL_COURSES,
|