We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3a977 commit b1718ffCopy full SHA for b1718ff
1 file changed
services/apps/snowflake_connectors/src/integrations/tnc/courses/transformer.ts
@@ -103,10 +103,10 @@ export class TncCoursesTransformer extends TncTransformerBase {
103
},
104
105
attributes: {
106
- productName: (row.COURSE_NAME as string | null) || null,
+ productName: (row.TITLE as string | null) || null,
107
productType: (row.PRODUCT_TYPE as string | null) || null,
108
parentProduct: (row.COURSE_GROUP_ID as string | null) || null,
109
- courseSlug: (row.COURSE_SLUG as string | null) || null,
+ courseSlug: (row.SLUG as string | null) || null,
110
instructionType: (row.INSTRUCTION_TYPE as string | null) || null,
111
isCertification: Boolean(row.IS_CERTIFICATION),
112
isTraining: Boolean(row.IS_TRAINING),
0 commit comments