Skip to content

Commit beb2118

Browse files
committed
TCA-870 update TCA certs model to latest per API
1 parent 9df003a commit beb2118

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export interface TCACertificationCategory {
2+
id: number
3+
category: string
4+
track: string
5+
createdAt: Date
6+
updatedAt: Date
7+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
import { TCACertificationLearnLevel } from './tca-certificate-level-type'
22
import { TCACertificationStatus } from './tca-certificate-status-type'
3+
import { TCACertificationCategory } from './tca-certification-category.model'
34

45
export interface TCACertification {
56
id: number
67
title: string
8+
dashedName: string
79
description: string
10+
introText: string
811
estimatedCompletionTime: number
912
status: TCACertificationStatus
1013
sequentialCourses: boolean
1114
learnerLevel: TCACertificationLearnLevel
1215
certificationCategoryId: string
16+
certificationCategory: TCACertificationCategory
1317
stripeProductId?: string
1418
skills: string[]
19+
learningOutcomes: string[]
20+
prerequisites: string[]
21+
createdAt: Date
22+
updatedAt: Date
1523
}

0 commit comments

Comments
 (0)