Skip to content

Commit dce716b

Browse files
committed
chore: standardize attributes key casing
Signed-off-by: Mouad BANI <mouad-mb@outlook.com>
1 parent d7f4e8c commit dce716b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • services/apps/snowflake_connectors/src/integrations/meetings/meeting-attendance

services/apps/snowflake_connectors/src/integrations/meetings/meeting-attendance/transformer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ export class MeetingAttendanceTransformer extends TransformerBase {
6161
const primaryKey = (row.PRIMARY_KEY as string)?.trim()
6262

6363
const attributes = {
64-
meetingID: row.MEETING_ID,
64+
meetingId: row.MEETING_ID,
6565
scheduledTime: timestamp,
6666
topic: (row.MEETING_NAME as string | null) || null,
67-
projectID: (row.PROJECT_ID as string | null) || null,
67+
projectId: (row.PROJECT_ID as string | null) || null,
6868
projectName: (row.PROJECT_NAME as string | null) || null,
6969
organizationId: (row.ACCOUNT_ID as string | null) || null,
7070
organizationName: (row.ACCOUNT_NAME as string | null) || null,

0 commit comments

Comments
 (0)