Skip to content

Commit 870db96

Browse files
committed
ack comemnts
1 parent 84f5b11 commit 870db96

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

apps/docs/content/docs/en/tools/pagerduty.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ Update an incident in PagerDuty (acknowledge, resolve, change urgency, etc.).
119119
| `title` | string | No | New incident title |
120120
| `urgency` | string | No | New urgency \(high or low\) |
121121
| `escalationLevel` | string | No | Escalation level to escalate to |
122-
| `resolution` | string | No | Resolution note \(when resolving\) |
123122

124123
#### Output
125124

apps/sim/blocks/blocks/pagerduty.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,6 @@ export const PagerDutyBlock: BlockConfig = {
226226
condition: { field: 'operation', value: 'update_incident' },
227227
mode: 'advanced',
228228
},
229-
{
230-
id: 'resolution',
231-
title: 'Resolution Note',
232-
type: 'long-input',
233-
placeholder: 'Resolution note (when resolving)',
234-
condition: { field: 'operation', value: 'update_incident' },
235-
mode: 'advanced',
236-
},
237-
238229
// --- Add Note fields ---
239230
{
240231
id: 'noteIncidentId',
@@ -407,7 +398,6 @@ export const PagerDutyBlock: BlockConfig = {
407398
updateTitle: { type: 'string', description: 'New incident title' },
408399
updateUrgency: { type: 'string', description: 'New urgency level' },
409400
updateEscalationLevel: { type: 'string', description: 'Escalation level number' },
410-
resolution: { type: 'string', description: 'Resolution note' },
411401
listSortBy: { type: 'string', description: 'Sort field' },
412402
listLimit: { type: 'string', description: 'Max results for incidents' },
413403
serviceQuery: { type: 'string', description: 'Service name filter' },

apps/sim/tools/pagerduty/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ export interface PagerDutyUpdateIncidentParams extends PagerDutyWriteParams {
8383
title?: string
8484
urgency?: string
8585
escalationLevel?: string
86-
resolution?: string
8786
}
8887

8988
export interface PagerDutyUpdateIncidentResponse extends ToolResponse {

apps/sim/tools/pagerduty/update_incident.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ export const updateIncidentTool: ToolConfig<
5656
visibility: 'user-or-llm',
5757
description: 'Escalation level to escalate to',
5858
},
59-
resolution: {
60-
type: 'string',
61-
required: false,
62-
visibility: 'user-or-llm',
63-
description: 'Resolution note (when resolving)',
64-
},
6559
},
6660

6761
request: {
@@ -85,8 +79,6 @@ export const updateIncidentTool: ToolConfig<
8579
if (params.escalationLevel) {
8680
incident.escalation_level = Number(params.escalationLevel)
8781
}
88-
if (params.resolution) incident.resolution = params.resolution
89-
9082
return { incident }
9183
},
9284
},

0 commit comments

Comments
 (0)