We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f4e8c commit dce716bCopy full SHA for dce716b
1 file changed
services/apps/snowflake_connectors/src/integrations/meetings/meeting-attendance/transformer.ts
@@ -61,10 +61,10 @@ export class MeetingAttendanceTransformer extends TransformerBase {
61
const primaryKey = (row.PRIMARY_KEY as string)?.trim()
62
63
const attributes = {
64
- meetingID: row.MEETING_ID,
+ meetingId: row.MEETING_ID,
65
scheduledTime: timestamp,
66
topic: (row.MEETING_NAME as string | null) || null,
67
- projectID: (row.PROJECT_ID as string | null) || null,
+ projectId: (row.PROJECT_ID as string | null) || null,
68
projectName: (row.PROJECT_NAME as string | null) || null,
69
organizationId: (row.ACCOUNT_ID as string | null) || null,
70
organizationName: (row.ACCOUNT_NAME as string | null) || null,
0 commit comments