You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/tools/zendesk.mdx
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ With Zendesk in Sim, you can:
42
42
By leveraging Zendesk’s Sim integration, your automated workflows can seamlessly handle support ticket triage, user onboarding/offboarding, company management, and keep your support operations running smoothly. Whether you’re integrating support with product, CRM, or automation systems, Zendesk tools in Sim provide robust, programmatic control to power best-in-class support at scale.
43
43
{/* MANUAL-CONTENT-END */}
44
44
45
+
45
46
## Usage Instructions
46
47
47
48
Integrate Zendesk into the workflow. Can get tickets, get ticket, create ticket, create tickets bulk, update ticket, update tickets bulk, delete ticket, merge tickets, get users, get user, get current user, search users, create user, create users bulk, update user, update users bulk, delete user, get organizations, get organization, autocomplete organizations, create organization, create organizations bulk, update organization, delete organization, search, search count.
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/code-editor/code-editor.tsx
+20-69Lines changed: 20 additions & 69 deletions
Original file line number
Diff line number
Diff line change
@@ -97,11 +97,9 @@ export function CodeEditor({
97
97
return()=>resizeObserver.disconnect()
98
98
},[code])
99
99
100
-
// Calculate the number of lines to determine gutter width
101
100
constlineCount=code.split('\n').length
102
101
constgutterWidth=calculateGutterWidth(lineCount)
103
102
104
-
// Render helpers
105
103
constrenderLineNumbers=()=>{
106
104
constnumbers: ReactElement[]=[]
107
105
letlineNumber=1
@@ -127,88 +125,41 @@ export function CodeEditor({
127
125
returnnumbers
128
126
}
129
127
130
-
// Custom highlighter that highlights environment variables and tags
131
128
constcustomHighlight=(code: string)=>{
132
129
if(!highlightVariables||language!=='javascript'){
133
-
// Use default Prism highlighting for non-JS or when variable highlighting is off
0 commit comments