@devrev-computer/skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/README.md +37 -0
  2. package/bin/install.mjs +158 -0
  3. package/package.json +33 -0
  4. package/skills/account-evaluation/account-evaluation.md +64 -0
  5. package/skills/account-research/account-research.md +323 -0
  6. package/skills/account-research/references/signals-guide.md +52 -0
  7. package/skills/create-workflow-template/create-workflow-template.md +1091 -0
  8. package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
  9. package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
  10. package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
  11. package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
  12. package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
  13. package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
  14. package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
  15. package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
  16. package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
  17. package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
  18. package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
  19. package/skills/create-workflow-template/operations/actions.md +2919 -0
  20. package/skills/create-workflow-template/operations/blockings.md +38 -0
  21. package/skills/create-workflow-template/operations/controls.md +108 -0
  22. package/skills/create-workflow-template/operations/schema-index.md +166 -0
  23. package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
  24. package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
  25. package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
  26. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
  27. package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
  28. package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
  29. package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
  30. package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
  31. package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
  32. package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
  33. package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
  34. package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
  35. package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
  36. package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
  37. package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
  38. package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
  39. package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
  40. package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
  41. package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
  42. package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
  43. package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
  44. package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
  45. package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
  46. package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
  47. package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
  48. package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
  49. package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
  50. package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
  51. package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
  52. package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
  53. package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
  54. package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
  55. package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
  56. package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
  57. package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
  58. package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
  59. package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
  60. package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
  61. package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
  62. package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
  63. package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
  64. package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
  65. package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
  66. package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
  67. package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
  68. package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
  69. package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
  70. package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
  71. package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
  72. package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
  73. package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
  74. package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
  75. package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
  76. package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
  77. package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
  78. package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
  79. package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
  80. package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
  81. package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
  82. package/skills/create-workflow-template/operations/schemas/http.md +38 -0
  83. package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
  84. package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
  85. package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
  86. package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
  87. package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
  88. package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
  89. package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
  90. package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
  91. package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
  92. package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
  93. package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
  94. package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
  95. package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
  96. package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
  97. package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
  98. package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
  99. package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
  100. package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
  101. package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
  102. package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
  103. package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
  104. package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
  105. package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
  106. package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
  107. package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
  108. package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
  109. package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
  110. package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
  111. package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
  112. package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
  113. package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
  114. package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
  115. package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
  116. package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
  117. package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
  118. package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
  119. package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
  120. package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
  121. package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
  122. package/skills/create-workflow-template/operations/schemas/router.md +15 -0
  123. package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
  124. package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
  125. package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
  126. package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
  127. package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
  128. package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
  129. package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
  130. package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
  131. package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
  132. package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
  133. package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
  134. package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
  135. package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
  136. package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
  137. package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
  138. package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
  139. package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
  140. package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
  141. package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
  142. package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
  143. package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
  144. package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
  145. package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
  146. package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
  147. package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
  148. package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
  149. package/skills/create-workflow-template/operations/schemas/while.md +24 -0
  150. package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
  151. package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
  152. package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
  153. package/skills/create-workflow-template/operations/triggers.md +1583 -0
  154. package/skills/customer-brief/customer-brief.md +66 -0
  155. package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
  156. package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
  157. package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
  158. package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
  159. package/skills/sales-context/sales-context.md +44 -0
  160. package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
  161. package/skills/skill-creator/SKILL.md +570 -0
  162. package/skills/skill-creator/agents/analyzer.md +274 -0
  163. package/skills/skill-creator/agents/comparator.md +202 -0
  164. package/skills/skill-creator/agents/grader.md +223 -0
  165. package/skills/skill-creator/assets/eval_review.html +146 -0
  166. package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  167. package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  168. package/skills/skill-creator/references/schemas.md +430 -0
  169. package/skills/skill-creator/references/tool-patterns.md +290 -0
  170. package/skills/skill-creator/scripts/__init__.py +0 -0
  171. package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  172. package/skills/skill-creator/scripts/generate_report.py +326 -0
  173. package/skills/skill-creator/scripts/improve_description.py +247 -0
  174. package/skills/skill-creator/scripts/package_skill.py +136 -0
  175. package/skills/skill-creator/scripts/quick_validate.py +103 -0
  176. package/skills/skill-creator/scripts/run_eval.py +310 -0
  177. package/skills/skill-creator/scripts/run_loop.py +328 -0
  178. package/skills/skill-creator/scripts/utils.py +47 -0
  179. package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
@@ -0,0 +1,1583 @@
1
+ # Trigger Operations (145)
2
+
3
+ > Event-based entry points that start a workflow when a specific event occurs.
4
+
5
+
6
+ ## 1. AAI Project Created
7
+
8
+ - **Slug:** `aai_proj_created`
9
+ - **Namespace:** `custom_object`
10
+ - **ID:** `operation-custom_object.aai_proj_created`
11
+
12
+ Triggered when AAI Project is created
13
+
14
+ ---
15
+
16
+ ## 2. AAI Project Updated
17
+
18
+ - **Slug:** `aai_proj_updated`
19
+ - **Namespace:** `custom_object`
20
+ - **ID:** `operation-custom_object.aai_proj_updated`
21
+
22
+ Triggered when AAI Project is updated
23
+
24
+ ---
25
+
26
+ ## 3. Abc Created
27
+
28
+ - **Slug:** `abc_created`
29
+ - **Namespace:** `custom_object`
30
+ - **ID:** `operation-custom_object.abc_created`
31
+ - **Tags:** HIPAA, ALPHA
32
+
33
+ Triggered when Abc is created
34
+
35
+ ---
36
+
37
+ ## 4. Abc Updated
38
+
39
+ - **Slug:** `abc_updated`
40
+ - **Namespace:** `custom_object`
41
+ - **ID:** `operation-custom_object.abc_updated`
42
+ - **Tags:** ALPHA
43
+
44
+ Triggered when Abc is updated
45
+
46
+ ---
47
+
48
+ ## 5. Account Created
49
+
50
+ - **Slug:** `account_created`
51
+ - **Namespace:** `devrev`
52
+ - **ID:** `operation-devrev.account_created`
53
+ - **Tags:** HIPAA
54
+ - **Scopes:** `account:read`
55
+
56
+ Triggers when an account is created
57
+
58
+ ---
59
+
60
+ ## 6. Account Updated
61
+
62
+ - **Slug:** `account_updated`
63
+ - **Namespace:** `devrev`
64
+ - **ID:** `operation-devrev.account_updated`
65
+ - **Tags:** HIPAA
66
+ - **Scopes:** `account:read`
67
+
68
+ Triggers when an account is updated
69
+
70
+ ---
71
+
72
+ ## 7. Ai Agent Session Metrics Created
73
+
74
+ - **Slug:** `ai_agent_session_metrics_created`
75
+ - **Namespace:** `custom_object`
76
+ - **ID:** `operation-custom_object.ai_agent_session_metrics_created`
77
+
78
+ Triggered when Ai Agent Session Metrics is created
79
+
80
+ ---
81
+
82
+ ## 8. Ai Agent Session Metrics Updated
83
+
84
+ - **Slug:** `ai_agent_session_metrics_updated`
85
+ - **Namespace:** `custom_object`
86
+ - **ID:** `operation-custom_object.ai_agent_session_metrics_updated`
87
+
88
+ Triggered when Ai Agent Session Metrics is updated
89
+
90
+ ---
91
+
92
+ ## 9. AI Agent Skill Trigger
93
+
94
+ - **Slug:** `ai_agent_skill_trigger`
95
+ - **Namespace:** `devrev`
96
+ - **ID:** `operation-devrev.ai_agent_skill_trigger`
97
+ - **Tags:** HIPAA
98
+
99
+ Trigger for an AI Agent skill. Used to implement Agent skills.
100
+
101
+ ---
102
+
103
+ ## 10. AirSync Sync Run Started
104
+
105
+ - **Slug:** `airdrop_sync_run_started`
106
+ - **Namespace:** `devrev`
107
+ - **ID:** `operation-devrev.airdrop_sync_run_started`
108
+ - **Tags:** HIPAA
109
+ - **Scopes:** `sync_unit:read`
110
+
111
+ Triggers when an AirSync Sync Run is started
112
+
113
+ ---
114
+
115
+ ## 11. AirSync Sync Run Status Updated
116
+
117
+ - **Slug:** `airdrop_sync_run_status_updated`
118
+ - **Namespace:** `devrev`
119
+ - **ID:** `operation-devrev.airdrop_sync_run_status_updated`
120
+ - **Tags:** HIPAA
121
+ - **Scopes:** `sync_unit:read`
122
+
123
+ Triggers when an AirSync Sync Run Status is updated
124
+
125
+ ---
126
+
127
+ ## 12. Alert Created
128
+
129
+ - **Slug:** `alert_created`
130
+ - **Namespace:** `custom_object`
131
+ - **ID:** `operation-custom_object.alert_created`
132
+
133
+ Triggered when Alert is created
134
+
135
+ ---
136
+
137
+ ## 13. Alert Updated
138
+
139
+ - **Slug:** `alert_updated`
140
+ - **Namespace:** `custom_object`
141
+ - **ID:** `operation-custom_object.alert_updated`
142
+
143
+ Triggered when Alert is updated
144
+
145
+ ---
146
+
147
+ ## 14. Article Created
148
+
149
+ - **Slug:** `article_created`
150
+ - **Namespace:** `devrev`
151
+ - **ID:** `operation-devrev.article_created`
152
+ - **Tags:** HIPAA
153
+ - **Scopes:** `article:read`
154
+
155
+ Triggers when an article is created
156
+
157
+ ---
158
+
159
+ ## 15. Article Updated
160
+
161
+ - **Slug:** `article_updated`
162
+ - **Namespace:** `devrev`
163
+ - **ID:** `operation-devrev.article_updated`
164
+ - **Tags:** HIPAA
165
+
166
+ Triggers when an article is updated
167
+
168
+ ---
169
+
170
+ ## 16. Pending Record Created
171
+
172
+ - **Slug:** `as_pend_created`
173
+ - **Namespace:** `custom_object`
174
+ - **ID:** `operation-custom_object.as_pend_created`
175
+
176
+ Triggered when Pending Record is created
177
+
178
+ ---
179
+
180
+ ## 17. Pending Record Updated
181
+
182
+ - **Slug:** `as_pend_updated`
183
+ - **Namespace:** `custom_object`
184
+ - **ID:** `operation-custom_object.as_pend_updated`
185
+
186
+ Triggered when Pending Record is updated
187
+
188
+ ---
189
+
190
+ ## 18. Asagentlog Created
191
+
192
+ - **Slug:** `asagentlog_created`
193
+ - **Namespace:** `custom_object`
194
+ - **ID:** `operation-custom_object.asagentlog_created`
195
+
196
+ Triggered when Asagentlog is created
197
+
198
+ ---
199
+
200
+ ## 19. Asagentlog Updated
201
+
202
+ - **Slug:** `asagentlog_updated`
203
+ - **Namespace:** `custom_object`
204
+ - **ID:** `operation-custom_object.asagentlog_updated`
205
+
206
+ Triggered when Asagentlog is updated
207
+
208
+ ---
209
+
210
+ ## 20. Asownerlog Created
211
+
212
+ - **Slug:** `asownerlog_created`
213
+ - **Namespace:** `custom_object`
214
+ - **ID:** `operation-custom_object.asownerlog_created`
215
+ - **Tags:** HIPAA, ALPHA
216
+
217
+ Triggered when Asownerlog is created
218
+
219
+ ---
220
+
221
+ ## 21. Asownerlog Updated
222
+
223
+ - **Slug:** `asownerlog_updated`
224
+ - **Namespace:** `custom_object`
225
+ - **ID:** `operation-custom_object.asownerlog_updated`
226
+ - **Tags:** ALPHA
227
+
228
+ Triggered when Asownerlog is updated
229
+
230
+ ---
231
+
232
+ ## 22. Asreport Created
233
+
234
+ - **Slug:** `asreport_created`
235
+ - **Namespace:** `custom_object`
236
+ - **ID:** `operation-custom_object.asreport_created`
237
+
238
+ Triggered when Asreport is created
239
+
240
+ ---
241
+
242
+ ## 23. Asreport Updated
243
+
244
+ - **Slug:** `asreport_updated`
245
+ - **Namespace:** `custom_object`
246
+ - **ID:** `operation-custom_object.asreport_updated`
247
+
248
+ Triggered when Asreport is updated
249
+
250
+ ---
251
+
252
+ ## 24. Asset Created
253
+
254
+ - **Slug:** `asset_created`
255
+ - **Namespace:** `custom_object`
256
+ - **ID:** `operation-custom_object.asset_created`
257
+
258
+ Triggered when Asset is created
259
+
260
+ ---
261
+
262
+ ## 25. Asset Updated
263
+
264
+ - **Slug:** `asset_updated`
265
+ - **Namespace:** `custom_object`
266
+ - **ID:** `operation-custom_object.asset_updated`
267
+
268
+ Triggered when Asset is updated
269
+
270
+ ---
271
+
272
+ ## 26. Campaigned Created
273
+
274
+ - **Slug:** `campaigned_created`
275
+ - **Namespace:** `custom_object`
276
+ - **ID:** `operation-custom_object.campaigned_created`
277
+
278
+ Triggered when Campaigned is created
279
+
280
+ ---
281
+
282
+ ## 27. Campaigned Updated
283
+
284
+ - **Slug:** `campaigned_updated`
285
+ - **Namespace:** `custom_object`
286
+ - **ID:** `operation-custom_object.campaigned_updated`
287
+
288
+ Triggered when Campaigned is updated
289
+
290
+ ---
291
+
292
+ ## 28. Chameleon Survey Created
293
+
294
+ - **Slug:** `chameleon_survey_created`
295
+ - **Namespace:** `custom_object`
296
+ - **ID:** `operation-custom_object.chameleon_survey_created`
297
+
298
+ Triggered when Chameleon Survey is created
299
+
300
+ ---
301
+
302
+ ## 29. Chameleon Survey Updated
303
+
304
+ - **Slug:** `chameleon_survey_updated`
305
+ - **Namespace:** `custom_object`
306
+ - **ID:** `operation-custom_object.chameleon_survey_updated`
307
+
308
+ Triggered when Chameleon Survey is updated
309
+
310
+ ---
311
+
312
+ ## 30. Change Created
313
+
314
+ - **Slug:** `change_created`
315
+ - **Namespace:** `custom_object`
316
+ - **ID:** `operation-custom_object.change_created`
317
+
318
+ Triggered when Change is created
319
+
320
+ ---
321
+
322
+ ## 31. Change Updated
323
+
324
+ - **Slug:** `change_updated`
325
+ - **Namespace:** `custom_object`
326
+ - **ID:** `operation-custom_object.change_updated`
327
+
328
+ Triggered when Change is updated
329
+
330
+ ---
331
+
332
+ ## 32. Chat Created
333
+
334
+ - **Slug:** `chat_created`
335
+ - **Namespace:** `custom_object`
336
+ - **ID:** `operation-custom_object.chat_created`
337
+
338
+ Triggered when Chat is created
339
+
340
+ ---
341
+
342
+ ## 33. Chat Updated
343
+
344
+ - **Slug:** `chat_updated`
345
+ - **Namespace:** `custom_object`
346
+ - **ID:** `operation-custom_object.chat_updated`
347
+
348
+ Triggered when Chat is updated
349
+
350
+ ---
351
+
352
+ ## 34. Code Change Created
353
+
354
+ - **Slug:** `code_change_created`
355
+ - **Namespace:** `custom_object`
356
+ - **ID:** `operation-custom_object.code_change_created`
357
+ - **Tags:** HIPAA
358
+
359
+ Triggered when Code Change is created
360
+
361
+ ---
362
+
363
+ ## 35. Code Change Updated
364
+
365
+ - **Slug:** `code_change_updated`
366
+ - **Namespace:** `custom_object`
367
+ - **ID:** `operation-custom_object.code_change_updated`
368
+
369
+ Triggered when Code Change is updated
370
+
371
+ ---
372
+
373
+ ## 36. Contact created
374
+
375
+ - **Slug:** `contact_created`
376
+ - **Namespace:** `devrev`
377
+ - **ID:** `operation-devrev.contact_created`
378
+ - **Tags:** HIPAA
379
+ - **Scopes:** `rev_user:read`
380
+
381
+ Triggers when a contact is created
382
+
383
+ ---
384
+
385
+ ## 37. Contact updated
386
+
387
+ - **Slug:** `contact_updated`
388
+ - **Namespace:** `devrev`
389
+ - **ID:** `operation-devrev.contact_updated`
390
+ - **Tags:** HIPAA
391
+ - **Scopes:** `rev_user:read`
392
+
393
+ Triggers when a contact is updated
394
+
395
+ ---
396
+
397
+ ## 38. Conversation Created
398
+
399
+ - **Slug:** `conversation_created`
400
+ - **Namespace:** `devrev`
401
+ - **ID:** `operation-devrev.conversation_created`
402
+ - **Tags:** HIPAA
403
+ - **Scopes:** `conversation:read`
404
+
405
+ Triggers when an conversation is created
406
+
407
+ ---
408
+
409
+ ## 39. Conversation SLA Tracker Updated
410
+
411
+ - **Slug:** `conversation_sla_tracker_updated`
412
+ - **Namespace:** `devrev`
413
+ - **ID:** `operation-devrev.conversation_sla_tracker_updated`
414
+ - **Tags:** HIPAA
415
+ - **Scopes:** `conversation:read`, `sla_tracker:read`
416
+
417
+ Triggers when an SLA tracker's stage is updated for a conversation
418
+
419
+ ---
420
+
421
+ ## 40. Conversation Updated
422
+
423
+ - **Slug:** `conversation_updated`
424
+ - **Namespace:** `devrev`
425
+ - **ID:** `operation-devrev.conversation_updated`
426
+ - **Tags:** HIPAA
427
+ - **Scopes:** `conversation:read`
428
+
429
+ Triggers when an conversation is updated
430
+
431
+ ---
432
+
433
+ ## 41. Cost Created
434
+
435
+ - **Slug:** `cost_created`
436
+ - **Namespace:** `custom_object`
437
+ - **ID:** `operation-custom_object.cost_created`
438
+
439
+ Triggered when Cost is created
440
+
441
+ ---
442
+
443
+ ## 42. Cost Updated
444
+
445
+ - **Slug:** `cost_updated`
446
+ - **Namespace:** `custom_object`
447
+ - **ID:** `operation-custom_object.cost_updated`
448
+
449
+ Triggered when Cost is updated
450
+
451
+ ---
452
+
453
+ ## 43. CSAT Response Received
454
+
455
+ - **Slug:** `csat_response_received`
456
+ - **Namespace:** `devrev`
457
+ - **ID:** `operation-devrev.csat_response_received`
458
+ - **Tags:** HIPAA
459
+
460
+ Triggers when a CSAT response is received
461
+
462
+ ---
463
+
464
+ ## 44. DevUser Created
465
+
466
+ - **Slug:** `dev_user_created`
467
+ - **Namespace:** `devrev`
468
+ - **ID:** `operation-devrev.dev_user_created`
469
+ - **Tags:** HIPAA
470
+ - **Scopes:** `dev_user:read`
471
+
472
+ Triggers when a devuser is created
473
+
474
+ ---
475
+
476
+ ## 45. DevUser Updated
477
+
478
+ - **Slug:** `dev_user_updated`
479
+ - **Namespace:** `devrev`
480
+ - **ID:** `operation-devrev.dev_user_updated`
481
+ - **Tags:** HIPAA
482
+ - **Scopes:** `dev_user:read`
483
+
484
+ Triggers when a devuser is updated
485
+
486
+ ---
487
+
488
+ ## 46. Devrev Api Created
489
+
490
+ - **Slug:** `devrev__api_created`
491
+ - **Namespace:** `custom_object`
492
+ - **ID:** `operation-custom_object.devrev__api_created`
493
+
494
+ Triggered when Devrev Api is created
495
+
496
+ ---
497
+
498
+ ## 47. Devrev Api Updated
499
+
500
+ - **Slug:** `devrev__api_updated`
501
+ - **Namespace:** `custom_object`
502
+ - **ID:** `operation-custom_object.devrev__api_updated`
503
+
504
+ Triggered when Devrev Api is updated
505
+
506
+ ---
507
+
508
+ ## 48. DM Created/Updated Trigger
509
+
510
+ - **Slug:** `dm_created_or_updated`
511
+ - **Namespace:** `devrev`
512
+ - **ID:** `operation-devrev.dm_created_or_updated`
513
+ - **Tags:** HIPAA
514
+ - **Scopes:** `dm:read`
515
+
516
+ Triggers when a DM is created or updated. Note that this only triggers for DMs which the Workflow's service account has access to. i.e. the DMs which include the workflow's service account as one of the users.
517
+
518
+ ### Input (`input`)
519
+
520
+ - `fields_to_watch` (array) — Fields to watch for changes. The trigger will only be fired if any of these fields are updated. Only applicable in case of update events.
521
+
522
+ ### Output (`output`)
523
+
524
+ - `users` (array) **(required)** — The participants in the DM
525
+ - `id` (id) **(required)** — ID of the user
526
+ - ID types: `devu`, `sysu`, `svcacc`
527
+ - `type` (enum) **(required)** — Type of the user
528
+ - Allowed: `dev_user`, `sys_user`, `service_account`
529
+ - `old_dm` (composite) — The old DM doc
530
+ - `id` (id) **(required)** — ID of the DM
531
+ - ID types: `dm`
532
+ - `users` (array) **(required)** — The participants in the DM
533
+ - `id` (id) **(required)** — ID of the DM
534
+ - ID types: `dm`
535
+ - `is_update_event` (bool) **(required)** — Indicates if this is an update event. If false, the event is a create event.
536
+
537
+ ---
538
+
539
+ ## 49. Articulate(reach360-o):Courses-fea0ea393c Created
540
+
541
+ - **Slug:** `drad_cour_created`
542
+ - **Namespace:** `custom_object`
543
+ - **ID:** `operation-custom_object.drad_cour_created`
544
+
545
+ Triggered when Articulate(reach360-o):Courses-fea0ea393c is created
546
+
547
+ ---
548
+
549
+ ## 50. Articulate(reach360-o):Courses-fea0ea393c Updated
550
+
551
+ - **Slug:** `drad_cour_updated`
552
+ - **Namespace:** `custom_object`
553
+ - **ID:** `operation-custom_object.drad_cour_updated`
554
+
555
+ Triggered when Articulate(reach360-o):Courses-fea0ea393c is updated
556
+
557
+ ---
558
+
559
+ ## 51. Google_Cal(devrev.ai):Invitee-8fc70d7ea5 Created
560
+
561
+ - **Slug:** `drad_invi_created`
562
+ - **Namespace:** `custom_object`
563
+ - **ID:** `operation-custom_object.drad_invi_created`
564
+
565
+ Triggered when Google_Cal(devrev.ai):Invitee-8fc70d7ea5 is created
566
+
567
+ ---
568
+
569
+ ## 52. Google_Cal(devrev.ai):Invitee-8fc70d7ea5 Updated
570
+
571
+ - **Slug:** `drad_invi_updated`
572
+ - **Namespace:** `custom_object`
573
+ - **ID:** `operation-custom_object.drad_invi_updated`
574
+
575
+ Triggered when Google_Cal(devrev.ai):Invitee-8fc70d7ea5 is updated
576
+
577
+ ---
578
+
579
+ ## 53. Articulate(reach360-o):Learners-63b4ae28b4 Created
580
+
581
+ - **Slug:** `drad_lear_created`
582
+ - **Namespace:** `custom_object`
583
+ - **ID:** `operation-custom_object.drad_lear_created`
584
+
585
+ Triggered when Articulate(reach360-o):Learners-63b4ae28b4 is created
586
+
587
+ ---
588
+
589
+ ## 54. Articulate(reach360-o):Learners-63b4ae28b4 Updated
590
+
591
+ - **Slug:** `drad_lear_updated`
592
+ - **Namespace:** `custom_object`
593
+ - **ID:** `operation-custom_object.drad_lear_updated`
594
+
595
+ Triggered when Articulate(reach360-o):Learners-63b4ae28b4 is updated
596
+
597
+ ---
598
+
599
+ ## 55. EastWest Created
600
+
601
+ - **Slug:** `eastwest_created`
602
+ - **Namespace:** `custom_object`
603
+ - **ID:** `operation-custom_object.eastwest_created`
604
+
605
+ Triggered when EastWest is created
606
+
607
+ ---
608
+
609
+ ## 56. EastWest Updated
610
+
611
+ - **Slug:** `eastwest_updated`
612
+ - **Namespace:** `custom_object`
613
+ - **ID:** `operation-custom_object.eastwest_updated`
614
+
615
+ Triggered when EastWest is updated
616
+
617
+ ---
618
+
619
+ ## 57. Enhancement Created
620
+
621
+ - **Slug:** `enhancement_created`
622
+ - **Namespace:** `devrev`
623
+ - **ID:** `operation-devrev.enhancement_created`
624
+ - **Tags:** HIPAA
625
+ - **Scopes:** `enhancement:read`
626
+
627
+ Triggers when an enhancement is created
628
+
629
+ ---
630
+
631
+ ## 58. Enhancement Updated
632
+
633
+ - **Slug:** `enhancement_updated`
634
+ - **Namespace:** `devrev`
635
+ - **ID:** `operation-devrev.enhancement_updated`
636
+ - **Tags:** HIPAA
637
+ - **Scopes:** `enhancement:read`
638
+
639
+ Triggered when an enhancement is updated
640
+
641
+ ---
642
+
643
+ ## 59. Entity Created
644
+
645
+ - **Slug:** `entity_created`
646
+ - **Namespace:** `custom_object`
647
+ - **ID:** `operation-custom_object.entity_created`
648
+
649
+ Triggered when Entity is created
650
+
651
+ ---
652
+
653
+ ## 60. Entity Updated
654
+
655
+ - **Slug:** `entity_updated`
656
+ - **Namespace:** `custom_object`
657
+ - **ID:** `operation-custom_object.entity_updated`
658
+
659
+ Triggered when Entity is updated
660
+
661
+ ---
662
+
663
+ ## 61. Event Created
664
+
665
+ - **Slug:** `event_created`
666
+ - **Namespace:** `custom_object`
667
+ - **ID:** `operation-custom_object.event_created`
668
+
669
+ Triggered when Event is created
670
+
671
+ ---
672
+
673
+ ## 62. Event Updated
674
+
675
+ - **Slug:** `event_updated`
676
+ - **Namespace:** `custom_object`
677
+ - **ID:** `operation-custom_object.event_updated`
678
+
679
+ Triggered when Event is updated
680
+
681
+ ---
682
+
683
+ ## 63. Expense Created
684
+
685
+ - **Slug:** `expense_created`
686
+ - **Namespace:** `custom_object`
687
+ - **ID:** `operation-custom_object.expense_created`
688
+
689
+ Triggered when Expense is created
690
+
691
+ ---
692
+
693
+ ## 64. Expense Updated
694
+
695
+ - **Slug:** `expense_updated`
696
+ - **Namespace:** `custom_object`
697
+ - **ID:** `operation-custom_object.expense_updated`
698
+
699
+ Triggered when Expense is updated
700
+
701
+ ---
702
+
703
+ ## 65. Feature Created
704
+
705
+ - **Slug:** `feature_created`
706
+ - **Namespace:** `devrev`
707
+ - **ID:** `operation-devrev.feature_created`
708
+ - **Tags:** HIPAA
709
+ - **Scopes:** `feature:read`
710
+
711
+ Triggers when a feature is created
712
+
713
+ ---
714
+
715
+ ## 66. Form Created
716
+
717
+ - **Slug:** `form_created`
718
+ - **Namespace:** `custom_object`
719
+ - **ID:** `operation-custom_object.form_created`
720
+
721
+ Triggered when Form is created
722
+
723
+ ---
724
+
725
+ ## 67. Form Updated
726
+
727
+ - **Slug:** `form_updated`
728
+ - **Namespace:** `custom_object`
729
+ - **ID:** `operation-custom_object.form_updated`
730
+
731
+ Triggered when Form is updated
732
+
733
+ ---
734
+
735
+ ## 68. Implementation Created
736
+
737
+ - **Slug:** `implementation_created`
738
+ - **Namespace:** `custom_object`
739
+ - **ID:** `operation-custom_object.implementation_created`
740
+
741
+ Triggered when Implementation is created
742
+
743
+ ---
744
+
745
+ ## 69. Implementation Updated
746
+
747
+ - **Slug:** `implementation_updated`
748
+ - **Namespace:** `custom_object`
749
+ - **ID:** `operation-custom_object.implementation_updated`
750
+
751
+ Triggered when Implementation is updated
752
+
753
+ ---
754
+
755
+ ## 70. Incident Created
756
+
757
+ - **Slug:** `incident_created`
758
+ - **Namespace:** `devrev`
759
+ - **ID:** `operation-devrev.incident_created`
760
+ - **Tags:** HIPAA
761
+ - **Scopes:** `incident:read`
762
+
763
+ Triggers when an incident is created
764
+
765
+ ---
766
+
767
+ ## 71. Incident Updated
768
+
769
+ - **Slug:** `incident_updated`
770
+ - **Namespace:** `devrev`
771
+ - **ID:** `operation-devrev.incident_updated`
772
+ - **Tags:** HIPAA
773
+ - **Scopes:** `incident:read`
774
+
775
+ Triggers when an incident is updated
776
+
777
+ ---
778
+
779
+ ## 72. Issue Created
780
+
781
+ - **Slug:** `issue_created`
782
+ - **Namespace:** `devrev`
783
+ - **ID:** `operation-devrev.issue_created`
784
+ - **Tags:** HIPAA
785
+ - **Scopes:** `issue:read`
786
+
787
+ Triggers when an issue is created
788
+
789
+ ---
790
+
791
+ ## 73. Issue Linked with Object
792
+
793
+ - **Slug:** `issue_linked_with_object`
794
+ - **Namespace:** `devrev`
795
+ - **ID:** `operation-devrev.issue_linked_with_object`
796
+ - **Tags:** HIPAA
797
+ - **Scopes:** `issue:read`
798
+
799
+ Triggers when an issue is linked with an object
800
+
801
+ ---
802
+
803
+ ## 74. Issue SLA Tracker Updated
804
+
805
+ - **Slug:** `issue_sla_tracker_updated`
806
+ - **Namespace:** `devrev`
807
+ - **ID:** `operation-devrev.issue_sla_tracker_updated`
808
+ - **Tags:** HIPAA
809
+ - **Scopes:** `sla_tracker:read`, `issue:read`
810
+
811
+ Triggers when an SLA tracker's stage is updated for an issue
812
+
813
+ ---
814
+
815
+ ## 75. Issue Updated
816
+
817
+ - **Slug:** `issue_updated`
818
+ - **Namespace:** `devrev`
819
+ - **ID:** `operation-devrev.issue_updated`
820
+ - **Tags:** HIPAA
821
+ - **Scopes:** `issue:read`
822
+
823
+ Triggered when an issue is updated
824
+
825
+ ---
826
+
827
+ ## 76. Link Deleted
828
+
829
+ - **Slug:** `link_deleted`
830
+ - **Namespace:** `devrev`
831
+ - **ID:** `operation-devrev.link_deleted`
832
+ - **Tags:** HIPAA
833
+
834
+ Triggers when a link between objects is deleted
835
+
836
+ ---
837
+
838
+ ## 77. Log Pattern Created
839
+
840
+ - **Slug:** `log_pattern_created`
841
+ - **Namespace:** `custom_object`
842
+ - **ID:** `operation-custom_object.log_pattern_created`
843
+
844
+ Triggered when Log Pattern is created
845
+
846
+ ---
847
+
848
+ ## 78. Log Pattern Updated
849
+
850
+ - **Slug:** `log_pattern_updated`
851
+ - **Namespace:** `custom_object`
852
+ - **ID:** `operation-custom_object.log_pattern_updated`
853
+
854
+ Triggered when Log Pattern is updated
855
+
856
+ ---
857
+
858
+ ## 79. Manual Trigger
859
+
860
+ - **Slug:** `manual_trigger`
861
+ - **Namespace:** `devrev`
862
+ - **ID:** `operation-devrev.manual_trigger`
863
+ - **Tags:** HIPAA
864
+
865
+ Manually triggers the workflow
866
+
867
+ ---
868
+
869
+ ## 80. Meeting Created
870
+
871
+ - **Slug:** `meeting_created`
872
+ - **Namespace:** `devrev`
873
+ - **ID:** `operation-devrev.meeting_created`
874
+ - **Tags:** HIPAA
875
+ - **Scopes:** `meeting:read`
876
+
877
+ Triggers when a meeting is created.
878
+
879
+ ---
880
+
881
+ ## 81. Meeting Updated
882
+
883
+ - **Slug:** `meeting_updated`
884
+ - **Namespace:** `devrev`
885
+ - **ID:** `operation-devrev.meeting_updated`
886
+ - **Tags:** HIPAA
887
+ - **Scopes:** `meeting:read`
888
+
889
+ Triggers when a meeting is updated.
890
+
891
+ ---
892
+
893
+ ## 82. Mypod Created
894
+
895
+ - **Slug:** `mypod_created`
896
+ - **Namespace:** `custom_object`
897
+ - **ID:** `operation-custom_object.mypod_created`
898
+ - **Tags:** HIPAA, ALPHA
899
+
900
+ Triggered when Mypod is created
901
+
902
+ ---
903
+
904
+ ## 83. Mypod Updated
905
+
906
+ - **Slug:** `mypod_updated`
907
+ - **Namespace:** `custom_object`
908
+ - **ID:** `operation-custom_object.mypod_updated`
909
+ - **Tags:** ALPHA
910
+
911
+ Triggered when Mypod is updated
912
+
913
+ ---
914
+
915
+ ## 84. Nudge buttons clicked
916
+
917
+ - **Slug:** `nudge_buttons_clicked`
918
+ - **Namespace:** `devrev`
919
+ - **ID:** `operation-devrev.nudge_buttons_clicked`
920
+ - **Tags:** HIPAA
921
+
922
+ Triggers when a user clicks any of the buttons that you define
923
+
924
+ ---
925
+
926
+ ## 85. On Call Group Created
927
+
928
+ - **Slug:** `on_call_group_created`
929
+ - **Namespace:** `custom_object`
930
+ - **ID:** `operation-custom_object.on_call_group_created`
931
+
932
+ Triggered when On Call Group is created
933
+
934
+ ---
935
+
936
+ ## 86. On Call Group Updated
937
+
938
+ - **Slug:** `on_call_group_updated`
939
+ - **Namespace:** `custom_object`
940
+ - **ID:** `operation-custom_object.on_call_group_updated`
941
+
942
+ Triggered when On Call Group is updated
943
+
944
+ ---
945
+
946
+ ## 87. On Call Schedule Created
947
+
948
+ - **Slug:** `on_call_schedule_created`
949
+ - **Namespace:** `custom_object`
950
+ - **ID:** `operation-custom_object.on_call_schedule_created`
951
+
952
+ Triggered when On Call Schedule is created
953
+
954
+ ---
955
+
956
+ ## 88. On Call Schedule Updated
957
+
958
+ - **Slug:** `on_call_schedule_updated`
959
+ - **Namespace:** `custom_object`
960
+ - **ID:** `operation-custom_object.on_call_schedule_updated`
961
+
962
+ Triggered when On Call Schedule is updated
963
+
964
+ ---
965
+
966
+ ## 89. Oncall Created
967
+
968
+ - **Slug:** `oncall_created`
969
+ - **Namespace:** `custom_object`
970
+ - **ID:** `operation-custom_object.oncall_created`
971
+
972
+ Triggered when Oncall is created
973
+
974
+ ---
975
+
976
+ ## 90. Oncall Updated
977
+
978
+ - **Slug:** `oncall_updated`
979
+ - **Namespace:** `custom_object`
980
+ - **ID:** `operation-custom_object.oncall_updated`
981
+
982
+ Triggered when Oncall is updated
983
+
984
+ ---
985
+
986
+ ## 91. Oncallsup Created
987
+
988
+ - **Slug:** `oncallsup_created`
989
+ - **Namespace:** `custom_object`
990
+ - **ID:** `operation-custom_object.oncallsup_created`
991
+
992
+ Triggered when Oncallsup is created
993
+
994
+ ---
995
+
996
+ ## 92. Oncallsup Updated
997
+
998
+ - **Slug:** `oncallsup_updated`
999
+ - **Namespace:** `custom_object`
1000
+ - **ID:** `operation-custom_object.oncallsup_updated`
1001
+
1002
+ Triggered when Oncallsup is updated
1003
+
1004
+ ---
1005
+
1006
+ ## 93. Opportunity Created
1007
+
1008
+ - **Slug:** `opportunity_created`
1009
+ - **Namespace:** `devrev`
1010
+ - **ID:** `operation-devrev.opportunity_created`
1011
+ - **Tags:** HIPAA
1012
+ - **Scopes:** `opportunity:read`
1013
+
1014
+ Triggers when an opportunity is created
1015
+
1016
+ ---
1017
+
1018
+ ## 94. Opportunity Updated
1019
+
1020
+ - **Slug:** `opportunity_updated`
1021
+ - **Namespace:** `devrev`
1022
+ - **ID:** `operation-devrev.opportunity_updated`
1023
+ - **Tags:** HIPAA
1024
+ - **Scopes:** `opportunity:read`
1025
+
1026
+ Triggers when an opportunity is updated
1027
+
1028
+ ---
1029
+
1030
+ ## 95. Part Recommendation Created
1031
+
1032
+ - **Slug:** `part_recommendation_created`
1033
+ - **Namespace:** `custom_object`
1034
+ - **ID:** `operation-custom_object.part_recommendation_created`
1035
+
1036
+ Triggered when Part Recommendation is created
1037
+
1038
+ ---
1039
+
1040
+ ## 96. Part Recommendation Updated
1041
+
1042
+ - **Slug:** `part_recommendation_updated`
1043
+ - **Namespace:** `custom_object`
1044
+ - **ID:** `operation-custom_object.part_recommendation_updated`
1045
+
1046
+ Triggered when Part Recommendation is updated
1047
+
1048
+ ---
1049
+
1050
+ ## 97. Problem Created
1051
+
1052
+ - **Slug:** `problem_created`
1053
+ - **Namespace:** `custom_object`
1054
+ - **ID:** `operation-custom_object.problem_created`
1055
+
1056
+ Triggered when Problem is created
1057
+
1058
+ ---
1059
+
1060
+ ## 98. Problem Updated
1061
+
1062
+ - **Slug:** `problem_updated`
1063
+ - **Namespace:** `custom_object`
1064
+ - **ID:** `operation-custom_object.problem_updated`
1065
+
1066
+ Triggered when Problem is updated
1067
+
1068
+ ---
1069
+
1070
+ ## 99. Project Created
1071
+
1072
+ - **Slug:** `project_created`
1073
+ - **Namespace:** `custom_object`
1074
+ - **ID:** `operation-custom_object.project_created`
1075
+
1076
+ Triggered when Project is created
1077
+
1078
+ ---
1079
+
1080
+ ## 100. Project Updated
1081
+
1082
+ - **Slug:** `project_updated`
1083
+ - **Namespace:** `custom_object`
1084
+ - **ID:** `operation-custom_object.project_updated`
1085
+
1086
+ Triggered when Project is updated
1087
+
1088
+ ---
1089
+
1090
+ ## 101. Question Answer Created
1091
+
1092
+ - **Slug:** `question_answer_created`
1093
+ - **Namespace:** `devrev`
1094
+ - **ID:** `operation-devrev.question_answer_created`
1095
+ - **Tags:** HIPAA
1096
+ - **Scopes:** `question_answer:read`
1097
+
1098
+ Triggered when a question answer is created
1099
+
1100
+ ---
1101
+
1102
+ ## 102. Question Answer updated
1103
+
1104
+ - **Slug:** `question_answer_updated`
1105
+ - **Namespace:** `devrev`
1106
+ - **ID:** `operation-devrev.question_answer_updated`
1107
+ - **Tags:** HIPAA
1108
+ - **Scopes:** `question_answer:read`
1109
+
1110
+ Triggered when an question-answer is updated
1111
+
1112
+ ---
1113
+
1114
+ ## 103. Reco Created
1115
+
1116
+ - **Slug:** `reco_created`
1117
+ - **Namespace:** `custom_object`
1118
+ - **ID:** `operation-custom_object.reco_created`
1119
+
1120
+ Triggered when Reco is created
1121
+
1122
+ ---
1123
+
1124
+ ## 104. Reco Updated
1125
+
1126
+ - **Slug:** `reco_updated`
1127
+ - **Namespace:** `custom_object`
1128
+ - **ID:** `operation-custom_object.reco_updated`
1129
+
1130
+ Triggered when Reco is updated
1131
+
1132
+ ---
1133
+
1134
+ ## 105. Relationsh Created
1135
+
1136
+ - **Slug:** `relationsh_created`
1137
+ - **Namespace:** `custom_object`
1138
+ - **ID:** `operation-custom_object.relationsh_created`
1139
+
1140
+ Triggered when Relationsh is created
1141
+
1142
+ ---
1143
+
1144
+ ## 106. Relationsh Updated
1145
+
1146
+ - **Slug:** `relationsh_updated`
1147
+ - **Namespace:** `custom_object`
1148
+ - **ID:** `operation-custom_object.relationsh_updated`
1149
+
1150
+ Triggered when Relationsh is updated
1151
+
1152
+ ---
1153
+
1154
+ ## 107. Release Created
1155
+
1156
+ - **Slug:** `release_created`
1157
+ - **Namespace:** `custom_object`
1158
+ - **ID:** `operation-custom_object.release_created`
1159
+
1160
+ Triggered when Release is created
1161
+
1162
+ ---
1163
+
1164
+ ## 108. Release Updated
1165
+
1166
+ - **Slug:** `release_updated`
1167
+ - **Namespace:** `custom_object`
1168
+ - **ID:** `operation-custom_object.release_updated`
1169
+
1170
+ Triggered when Release is updated
1171
+
1172
+ ---
1173
+
1174
+ ## 109. Reviews Created
1175
+
1176
+ - **Slug:** `reviews_created`
1177
+ - **Namespace:** `custom_object`
1178
+ - **ID:** `operation-custom_object.reviews_created`
1179
+
1180
+ Triggered when Reviews is created
1181
+
1182
+ ---
1183
+
1184
+ ## 110. Reviews Updated
1185
+
1186
+ - **Slug:** `reviews_updated`
1187
+ - **Namespace:** `custom_object`
1188
+ - **ID:** `operation-custom_object.reviews_updated`
1189
+
1190
+ Triggered when Reviews is updated
1191
+
1192
+ ---
1193
+
1194
+ ## 111. Round Robin State Created
1195
+
1196
+ - **Slug:** `round_robin_state_created`
1197
+ - **Namespace:** `custom_object`
1198
+ - **ID:** `operation-custom_object.round_robin_state_created`
1199
+
1200
+ Triggered when Round Robin State is created
1201
+
1202
+ ---
1203
+
1204
+ ## 112. Round Robin State Updated
1205
+
1206
+ - **Slug:** `round_robin_state_updated`
1207
+ - **Namespace:** `custom_object`
1208
+ - **ID:** `operation-custom_object.round_robin_state_updated`
1209
+
1210
+ Triggered when Round Robin State is updated
1211
+
1212
+ ---
1213
+
1214
+ ## 113. Sales Pod Created
1215
+
1216
+ - **Slug:** `sales_pod_created`
1217
+ - **Namespace:** `custom_object`
1218
+ - **ID:** `operation-custom_object.sales_pod_created`
1219
+ - **Tags:** HIPAA, ALPHA
1220
+
1221
+ Triggered when Sales Pod is created
1222
+
1223
+ ---
1224
+
1225
+ ## 114. Sales Pod Updated
1226
+
1227
+ - **Slug:** `sales_pod_updated`
1228
+ - **Namespace:** `custom_object`
1229
+ - **ID:** `operation-custom_object.sales_pod_updated`
1230
+ - **Tags:** ALPHA
1231
+
1232
+ Triggered when Sales Pod is updated
1233
+
1234
+ ---
1235
+
1236
+ ## 115. SDR Created
1237
+
1238
+ - **Slug:** `sdr_alias_created`
1239
+ - **Namespace:** `custom_object`
1240
+ - **ID:** `operation-custom_object.sdr_alias_created`
1241
+ - **Tags:** HIPAA, ALPHA
1242
+
1243
+ Triggered when SDR is created
1244
+
1245
+ ---
1246
+
1247
+ ## 116. SDR Updated
1248
+
1249
+ - **Slug:** `sdr_alias_updated`
1250
+ - **Namespace:** `custom_object`
1251
+ - **ID:** `operation-custom_object.sdr_alias_updated`
1252
+ - **Tags:** ALPHA
1253
+
1254
+ Triggered when SDR is updated
1255
+
1256
+ ---
1257
+
1258
+ ## 117. Sdr Pod Created
1259
+
1260
+ - **Slug:** `sdr_pod_created`
1261
+ - **Namespace:** `custom_object`
1262
+ - **ID:** `operation-custom_object.sdr_pod_created`
1263
+ - **Tags:** HIPAA, ALPHA
1264
+
1265
+ Triggered when Sdr Pod is created
1266
+
1267
+ ---
1268
+
1269
+ ## 118. Sdr Pod Updated
1270
+
1271
+ - **Slug:** `sdr_pod_updated`
1272
+ - **Namespace:** `custom_object`
1273
+ - **ID:** `operation-custom_object.sdr_pod_updated`
1274
+ - **Tags:** ALPHA
1275
+
1276
+ Triggered when Sdr Pod is updated
1277
+
1278
+ ---
1279
+
1280
+ ## 119. Se Created
1281
+
1282
+ - **Slug:** `se_created`
1283
+ - **Namespace:** `custom_object`
1284
+ - **ID:** `operation-custom_object.se_created`
1285
+ - **Tags:** HIPAA, ALPHA
1286
+
1287
+ Triggered when Se is created
1288
+
1289
+ ---
1290
+
1291
+ ## 120. Se Updated
1292
+
1293
+ - **Slug:** `se_updated`
1294
+ - **Namespace:** `custom_object`
1295
+ - **ID:** `operation-custom_object.se_updated`
1296
+ - **Tags:** ALPHA
1297
+
1298
+ Triggered when Se is updated
1299
+
1300
+ ---
1301
+
1302
+ ## 121. Stream Created
1303
+
1304
+ - **Slug:** `stream_created`
1305
+ - **Namespace:** `custom_object`
1306
+ - **ID:** `operation-custom_object.stream_created`
1307
+
1308
+ Triggered when Stream is created
1309
+
1310
+ ---
1311
+
1312
+ ## 122. Stream Updated
1313
+
1314
+ - **Slug:** `stream_updated`
1315
+ - **Namespace:** `custom_object`
1316
+ - **ID:** `operation-custom_object.stream_updated`
1317
+
1318
+ Triggered when Stream is updated
1319
+
1320
+ ---
1321
+
1322
+ ## 123. Syncerrors Created
1323
+
1324
+ - **Slug:** `syncerrors_created`
1325
+ - **Namespace:** `custom_object`
1326
+ - **ID:** `operation-custom_object.syncerrors_created`
1327
+
1328
+ Triggered when Syncerrors is created
1329
+
1330
+ ---
1331
+
1332
+ ## 124. Syncerrors Updated
1333
+
1334
+ - **Slug:** `syncerrors_updated`
1335
+ - **Namespace:** `custom_object`
1336
+ - **ID:** `operation-custom_object.syncerrors_updated`
1337
+
1338
+ Triggered when Syncerrors is updated
1339
+
1340
+ ---
1341
+
1342
+ ## 125. Team Created
1343
+
1344
+ - **Slug:** `team_created`
1345
+ - **Namespace:** `custom_object`
1346
+ - **ID:** `operation-custom_object.team_created`
1347
+
1348
+ Triggered when Team is created
1349
+
1350
+ ---
1351
+
1352
+ ## 126. Team Updated
1353
+
1354
+ - **Slug:** `team_updated`
1355
+ - **Namespace:** `custom_object`
1356
+ - **ID:** `operation-custom_object.team_updated`
1357
+
1358
+ Triggered when Team is updated
1359
+
1360
+ ---
1361
+
1362
+ ## 127. Testresult Created
1363
+
1364
+ - **Slug:** `testresult_created`
1365
+ - **Namespace:** `custom_object`
1366
+ - **ID:** `operation-custom_object.testresult_created`
1367
+
1368
+ Triggered when Testresult is created
1369
+
1370
+ ---
1371
+
1372
+ ## 128. Testresult Updated
1373
+
1374
+ - **Slug:** `testresult_updated`
1375
+ - **Namespace:** `custom_object`
1376
+ - **ID:** `operation-custom_object.testresult_updated`
1377
+
1378
+ Triggered when Testresult is updated
1379
+
1380
+ ---
1381
+
1382
+ ## 129. Theme Created
1383
+
1384
+ - **Slug:** `theme_created`
1385
+ - **Namespace:** `custom_object`
1386
+ - **ID:** `operation-custom_object.theme_created`
1387
+
1388
+ Triggered when Theme is created
1389
+
1390
+ ---
1391
+
1392
+ ## 130. Theme Updated
1393
+
1394
+ - **Slug:** `theme_updated`
1395
+ - **Namespace:** `custom_object`
1396
+ - **ID:** `operation-custom_object.theme_updated`
1397
+
1398
+ Triggered when Theme is updated
1399
+
1400
+ ---
1401
+
1402
+ ## 131. Ticket Created
1403
+
1404
+ - **Slug:** `ticket_created`
1405
+ - **Namespace:** `devrev`
1406
+ - **ID:** `operation-devrev.ticket_created`
1407
+ - **Tags:** HIPAA
1408
+ - **Scopes:** `ticket:read`
1409
+
1410
+ Triggers when a ticket is created
1411
+
1412
+ ---
1413
+
1414
+ ## 132. Ticket Linked with Object
1415
+
1416
+ - **Slug:** `ticket_linked_with_object`
1417
+ - **Namespace:** `devrev`
1418
+ - **ID:** `operation-devrev.ticket_linked_with_object`
1419
+ - **Tags:** HIPAA
1420
+ - **Scopes:** `ticket:read`
1421
+
1422
+ Triggers when a ticket is linked with an object
1423
+
1424
+ ---
1425
+
1426
+ ## 133. Ticket SLA Tracker Updated
1427
+
1428
+ - **Slug:** `ticket_sla_tracker_updated`
1429
+ - **Namespace:** `devrev`
1430
+ - **ID:** `operation-devrev.ticket_sla_tracker_updated`
1431
+ - **Tags:** HIPAA
1432
+ - **Scopes:** `sla_tracker:read`, `ticket:read`
1433
+
1434
+ Triggers when an SLA tracker's stage is updated for a ticket
1435
+
1436
+ ---
1437
+
1438
+ ## 134. Ticket Updated
1439
+
1440
+ - **Slug:** `ticket_updated`
1441
+ - **Namespace:** `devrev`
1442
+ - **ID:** `operation-devrev.ticket_updated`
1443
+ - **Tags:** HIPAA
1444
+ - **Scopes:** `ticket:read`
1445
+
1446
+ Triggered when a ticket is updated
1447
+
1448
+ ---
1449
+
1450
+ ## 135. Timeline Comment Created
1451
+
1452
+ - **Slug:** `timeline_comment_created`
1453
+ - **Namespace:** `devrev`
1454
+ - **ID:** `operation-devrev.timeline_comment_created`
1455
+ - **Tags:** HIPAA
1456
+
1457
+ Triggers when a timeline comment is created in the system.
1458
+
1459
+ ---
1460
+
1461
+ ## 136. Timer Trigger
1462
+
1463
+ - **Slug:** `timer_trigger`
1464
+ - **Namespace:** `devrev`
1465
+ - **ID:** `operation-devrev.timer_trigger`
1466
+ - **Tags:** HIPAA
1467
+
1468
+ Triggers the workflow at regular intervals
1469
+
1470
+ ### Input (`input`)
1471
+
1472
+ - `type` (uenum) — The type of timer trigger
1473
+ - Default: `1`
1474
+ - `interval` (composite) — The interval at which the workflow should trigger. The interval should be less than 31 days.
1475
+ - `unit` (enum) **(required)** — Unit of time for the interval
1476
+ - Allowed: `days`, `hours`
1477
+ - Default: `days`
1478
+ - `number_of_units` (int) **(required)** — Number of Units
1479
+ - Default: `1`
1480
+ - `cron` (composite) — The cron configuration for the timer trigger.
1481
+ - `schedule` (tokens) **(required)** — The cron expression for the timer trigger. Only minute granularity is supported. Example: "0 0 * * *" for daily at midnight. Schedules with frequency less than 10 minutes are not supported.
1482
+
1483
+ ### Output (`output`)
1484
+
1485
+ - `scheduled_time` (timestamp) **(required)** — The time when the workflow was scheduled to trigger
1486
+
1487
+ ---
1488
+
1489
+ ## 137. Todo Created
1490
+
1491
+ - **Slug:** `todo_created`
1492
+ - **Namespace:** `custom_object`
1493
+ - **ID:** `operation-custom_object.todo_created`
1494
+
1495
+ Triggered when Todo is created
1496
+
1497
+ ---
1498
+
1499
+ ## 138. Todo Updated
1500
+
1501
+ - **Slug:** `todo_updated`
1502
+ - **Namespace:** `custom_object`
1503
+ - **ID:** `operation-custom_object.todo_updated`
1504
+
1505
+ Triggered when Todo is updated
1506
+
1507
+ ---
1508
+
1509
+ ## 139. Vendor Created
1510
+
1511
+ - **Slug:** `vendor_created`
1512
+ - **Namespace:** `custom_object`
1513
+ - **ID:** `operation-custom_object.vendor_created`
1514
+
1515
+ Triggered when Vendor is created
1516
+
1517
+ ---
1518
+
1519
+ ## 140. Vendor Updated
1520
+
1521
+ - **Slug:** `vendor_updated`
1522
+ - **Namespace:** `custom_object`
1523
+ - **ID:** `operation-custom_object.vendor_updated`
1524
+
1525
+ Triggered when Vendor is updated
1526
+
1527
+ ---
1528
+
1529
+ ## 141. Webinar Created
1530
+
1531
+ - **Slug:** `webinar_created`
1532
+ - **Namespace:** `custom_object`
1533
+ - **ID:** `operation-custom_object.webinar_created`
1534
+
1535
+ Triggered when Webinar is created
1536
+
1537
+ ---
1538
+
1539
+ ## 142. Webinar Updated
1540
+
1541
+ - **Slug:** `webinar_updated`
1542
+ - **Namespace:** `custom_object`
1543
+ - **ID:** `operation-custom_object.webinar_updated`
1544
+
1545
+ Triggered when Webinar is updated
1546
+
1547
+ ---
1548
+
1549
+ ## 143. Widget Created
1550
+
1551
+ - **Slug:** `widget_created`
1552
+ - **Namespace:** `devrev`
1553
+ - **ID:** `operation-devrev.widget_created`
1554
+ - **Tags:** HIPAA
1555
+ - **Scopes:** `widget:read`
1556
+
1557
+ Triggers when a widget is created
1558
+
1559
+ ---
1560
+
1561
+ ## 144. Widget Updated
1562
+
1563
+ - **Slug:** `widget_updated`
1564
+ - **Namespace:** `devrev`
1565
+ - **ID:** `operation-devrev.widget_updated`
1566
+ - **Tags:** HIPAA
1567
+ - **Scopes:** `widget:read`
1568
+
1569
+ Triggers when a widget is updated
1570
+
1571
+ ---
1572
+
1573
+ ## 145. Workspace Created
1574
+
1575
+ - **Slug:** `workspace_created`
1576
+ - **Namespace:** `devrev`
1577
+ - **ID:** `operation-devrev.workspace_created`
1578
+ - **Tags:** HIPAA
1579
+ - **Scopes:** `workspace:read`
1580
+
1581
+ Triggers when a workspace is created
1582
+
1583
+ ---