Skip to content

Commit 3e24a9e

Browse files
Afstklaclaude
andcommitted
Fix lint errors and update pnpm lockfile
- Fix all ESLint errors in freshservice component (newlines, trailing spaces, formatting) - Remove unused removeNullEntries import from freshservice.app.mjs - Update pnpm-lock.yaml to match package.json dependencies All CI checks should now pass. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent dede90c commit 3e24a9e

File tree

17 files changed

+50
-44
lines changed

17 files changed

+50
-44
lines changed

components/freshservice/actions/assign-ticket-to-agent/assign-ticket-to-agent.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ export default {
3838
}
3939
return response;
4040
},
41-
};
41+
};

components/freshservice/actions/assign-ticket-to-group/assign-ticket-to-group.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ export default {
3838
}
3939
return response;
4040
},
41-
};
41+
};

components/freshservice/actions/close-ticket/close-ticket.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ export default {
3232
}
3333
return response;
3434
},
35-
};
35+
};

components/freshservice/actions/create-company/create-company.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default {
8989
} = this;
9090

9191
const data = removeNullEntries(otherProps);
92-
92+
9393
if (custom_fields) {
9494
data.custom_fields = this.freshservice.parseIfJSONString(custom_fields);
9595
}
@@ -106,4 +106,4 @@ export default {
106106
$.export("$summary", `Successfully created company: ${response.company?.name}`);
107107
return response;
108108
},
109-
};
109+
};

components/freshservice/actions/create-contact/create-contact.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default {
9494
}
9595

9696
const data = removeNullEntries(otherProps);
97-
97+
9898
if (secondary_emails && secondary_emails.length > 0) {
9999
data.secondary_emails = secondary_emails;
100100
}
@@ -107,4 +107,4 @@ export default {
107107
$.export("$summary", `Successfully created contact: ${response.requester?.first_name} ${response.requester?.last_name || ""}`);
108108
return response;
109109
},
110-
};
110+
};

components/freshservice/actions/create-ticket/create-ticket.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default {
126126
} = this;
127127

128128
const data = removeNullEntries(otherProps);
129-
129+
130130
if (custom_fields) {
131131
data.custom_fields = this.freshservice.parseIfJSONString(custom_fields);
132132
}
@@ -139,4 +139,4 @@ export default {
139139
$.export("$summary", `Successfully created ticket: ${response.ticket?.subject || response.ticket?.id}`);
140140
return response;
141141
},
142-
};
142+
};

components/freshservice/actions/get-ticket/get-ticket.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ export default {
2424
$.export("$summary", `Successfully retrieved ticket: ${response.ticket?.subject || this.ticketId}`);
2525
return response;
2626
},
27-
};
27+
};

components/freshservice/actions/list-all-tickets/list-all-tickets.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ export default {
5252
$.export("$summary", `Successfully retrieved ${tickets.length} tickets`);
5353
return response;
5454
},
55-
};
55+
};

components/freshservice/actions/set-ticket-priority/set-ticket-priority.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ export default {
4141
}
4242
return response;
4343
},
44-
};
44+
};

components/freshservice/actions/set-ticket-status/set-ticket-status.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ export default {
4141
}
4242
return response;
4343
},
44-
};
44+
};

0 commit comments

Comments
 (0)