@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,135 @@
1
+ # `article_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`fields_to_watch`** (`[]uenum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`applies_to_parts`** (`[]composite`)
10
+ - Composite: `_gen:part-summary`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
13
+ - **`type`** (`enum`) **REQUIRED**
14
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
15
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
16
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
17
+ - **`article_type`** (`enum`) — Type of the article.
18
+ - Allowed: `article`, `content_block`, `page`
19
+ - **`authored_by`** (`[]composite`)
20
+ - Composite: `_gen:user-summary`
21
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
22
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
23
+ - **`display_picture`** (`composite`)
24
+ - Composite: `_gen:display_picture`
25
+ - **`email`** (`text`) — Email address of the user.
26
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
27
+ - **`full_name`** (`text`) — Full name of the user.
28
+ - **`state`** (`enum`) — State of the user.
29
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
30
+ - **`type`** (`enum`) **REQUIRED**
31
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
32
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
33
+ - ID type: `devu`, `sysu`, `svcacc`
34
+ - **`created_by`** (`composite`)
35
+ - Composite: `_gen:created_by`
36
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
37
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
38
+ - **`email`** (`text`) — Email address of the user.
39
+ - **`full_name`** (`text`) — Full name of the user.
40
+ - **`state`** (`enum`) — State of the user.
41
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
42
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
43
+ - ID type: `devu`, `sysu`, `svcacc`
44
+ - **`type`** (`enum`) **REQUIRED** — Type of the user.
45
+ - Allowed: `dev_user`, `service_account`, `sys_user`
46
+ - **`created_date`** (`timestamp`) — Timestamp when the article was created.
47
+ - **`description`** (`text`) — The description of the article.
48
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
49
+ - **`extracted_content`** (`[]composite`)
50
+ - Composite: `_gen:artifact-summary`
51
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
52
+ - **`file`** (`composite`) — Defines a file object.
53
+ - Composite: `_gen:file`
54
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
55
+ - ID type: `artifact`
56
+ - **`owned_by`** (`[]composite`) **REQUIRED**
57
+ - Composite: `_gen:user-summary`
58
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
59
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
60
+ - **`display_picture`** (`composite`)
61
+ - Composite: `_gen:display_picture`
62
+ - **`email`** (`text`) — Email address of the user.
63
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
64
+ - **`full_name`** (`text`) — Full name of the user.
65
+ - **`state`** (`enum`) — State of the user.
66
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
67
+ - **`type`** (`enum`) **REQUIRED**
68
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
69
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
70
+ - ID type: `devu`, `sysu`, `svcacc`
71
+ - **`parent`** (`composite`)
72
+ - Composite: `_gen:parent`
73
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
74
+ - **`title`** (`text`) — Title of the directory.
75
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
76
+ - ID type: `directory`
77
+ - **`rank`** (`text`) — Rank of the article.
78
+ - **`resource`** (`composite`) — Resource details.
79
+ - Composite: `_gen:resource`
80
+ - **`artifacts`** (`[]composite`)
81
+ - Composite: `_gen:artifact-summary`
82
+ - **`url`** (`text`) — URL of the resource (relevant only for type url).
83
+ - **`scope`** (`composite`) — The properties of an enum value.
84
+ - Composite: `_gen:scope`
85
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
86
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
87
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
88
+ - **`value`** (`json_value`) — The actual value of the enum value.
89
+ - **`status`** (`enum`) — Status of the article.
90
+ - Allowed: `archived`, `draft`, `published`, `review_needed`
91
+ - **`tags`** (`[]composite`) — Tags associated with the article.
92
+ - Composite: `_gen:tags`
93
+ - **`tag`** (`composite`)
94
+ - Composite: `_gen:tag`
95
+ - **`title`** (`text`) — Title of the article.
96
+ - **`old_article`** (`composite`) — Old article object
97
+ - Composite: `_gen:implicit:article`
98
+ - **`applies_to_parts`** (`[]composite`)
99
+ - Composite: `_gen:part-summary`
100
+ - **`article_type`** (`enum`) — Type of the article.
101
+ - Allowed: `article`, `content_block`, `page`
102
+ - **`authored_by`** (`[]composite`)
103
+ - Composite: `_gen:user-summary`
104
+ - **`created_by`** (`composite`)
105
+ - Composite: `_gen:created_by`
106
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
107
+ - **`description`** (`text`) — Description of the article.
108
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
109
+ - **`extracted_content`** (`[]composite`)
110
+ - Composite: `_gen:artifact-summary`
111
+ - **`modified_by`** (`composite`)
112
+ - Composite: `_gen:modified_by`
113
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
114
+ - **`num_downvotes`** (`int`) — Number of downvotes on the article.
115
+ - **`num_upvotes`** (`int`) — Number of upvotes on the article.
116
+ - **`owned_by`** (`[]composite`) **REQUIRED**
117
+ - Composite: `_gen:user-summary`
118
+ - **`parent`** (`composite`)
119
+ - Composite: `_gen:parent`
120
+ - **`rank`** (`text`) — Rank of the article.
121
+ - **`resource`** (`composite`) — Resource details.
122
+ - Composite: `_gen:resource`
123
+ - **`scope`** (`composite`) — The properties of an enum value.
124
+ - Composite: `_gen:scope`
125
+ - **`status`** (`enum`) — Status of the article.
126
+ - Allowed: `archived`, `draft`, `published`, `review_needed`
127
+ - **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
128
+ - Composite: `_gen:article-properties.sync_metadata`
129
+ - **`tags`** (`[]composite`) — Tags associated with the article.
130
+ - Composite: `_gen:tags`
131
+ - **`title`** (`text`) — Title of the article.
132
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
133
+ - ID type: `article`
134
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
135
+ - ID type: `article`
@@ -0,0 +1,11 @@
1
+ # `ask_ai` — Schema Reference
2
+
3
+ AI-powered action node for transforming, analyzing, and generating text content. Use Normal mode for everyday tasks like classification, simple decisions. Use Reasoning mode for advanced analysis.
4
+
5
+ ## Input Port: `input`
6
+
7
+ - **`ai_input`** (`text`) **REQUIRED** — The input prompt based on which the AI response is generated.
8
+
9
+ ## Output Port: `output`
10
+
11
+ - **`ai_output`** (`text`) — Output string from the AI Action node.
@@ -0,0 +1,22 @@
1
+ # `classify_object` — Schema Reference
2
+
3
+ Classifies an object into a set of customizable categories.
4
+
5
+ ## Input Port: `input`
6
+
7
+ - **`object_id`** (`id`) **REQUIRED** — ID of the object.
8
+ - ID type: `issue`, `ticket`, `conversation`, `enhancement`
9
+ - **`object_type`** (`enum`) **REQUIRED** — Type of the object.
10
+ - Allowed: `issue`, `ticket`, `conversation`, `enhancement`
11
+ - Default: `issue`
12
+ - **`categories`** (`[]composite`) **REQUIRED** — Specify the categories into which the object should be classified.
13
+ - Composite: `object_category`
14
+ - **`name`** (`tokens`) **REQUIRED** — Name of the category into which the object can be classified.
15
+ - **`description`** (`text`) — Describe which type of objects should be categorized into this category.
16
+ - **`guidelines`** (`text`) — Specify any special instructions or examples that should be used by the classifier.
17
+
18
+ ## Output Port: `output`
19
+
20
+ - **`category`** (`text`) — Output category from the object classification action node.
21
+ - **`justification`** (`text`) — Output category justification from the object classification action node.
22
+ - **`session_id`** (`tokens`) **REQUIRED** — Session ID generated for this AI operation.
@@ -0,0 +1,43 @@
1
+ # `contact_created` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`created_by`** (`composite`)
10
+ - Composite: `_gen:created_by`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
13
+ - **`email`** (`text`) — Email address of the user.
14
+ - **`full_name`** (`text`) — Full name of the user.
15
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
16
+ - ID type: `devu`, `sysu`, `svcacc`
17
+ - **`type`** (`enum`) **REQUIRED** — Type of the contact.
18
+ - Allowed: `dev_user`, `service_account`, `sys_user`
19
+ - **`created_date`** (`timestamp`) — Timestamp when the contact was created.
20
+ - **`description`** (`text`) — The description of the contact.
21
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
22
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
23
+ - **`email`** (`text`) — Email address of the user.
24
+ - **`full_name`** (`text`) — Full name of the user.
25
+ - **`is_verified`** (`bool`) — Whether the contact is verified.
26
+ - **`modified_by`** (`composite`)
27
+ - Composite: `_gen:modified_by`
28
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
29
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
30
+ - **`email`** (`text`) — Email address of the user.
31
+ - **`full_name`** (`text`) — Full name of the user.
32
+ - **`type`** (`enum`) **REQUIRED**
33
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
34
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
35
+ - ID type: `devu`, `sysu`, `svcacc`
36
+ - **`modified_date`** (`timestamp`) — Timestamp when the contact was last modified.
37
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
38
+ - **`tags`** (`[]composite`) — Tags associated with the contact.
39
+ - Composite: `_gen:tags`
40
+ - **`tag`** (`composite`)
41
+ - Composite: `_gen:tag`
42
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
43
+ - ID type: `revu`
@@ -0,0 +1,65 @@
1
+ # `contact_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
6
+ - Allowed: `description`, `display_name`, `email`, `phone_numbers`, `external_refs`, `tags`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`created_by`** (`composite`)
11
+ - Composite: `_gen:created_by`
12
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
13
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
14
+ - **`email`** (`text`) — Email address of the user.
15
+ - **`full_name`** (`text`) — Full name of the user.
16
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
17
+ - ID type: `devu`, `sysu`, `svcacc`
18
+ - **`type`** (`enum`) **REQUIRED** — User type
19
+ - Allowed: `dev_user`, `service_account`, `sys_user`
20
+ - **`created_date`** (`timestamp`) — Timestamp when the contact was created.
21
+ - **`description`** (`text`) — Description of the contact.
22
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
23
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
24
+ - **`email`** (`text`) — Email address of the user.
25
+ - **`full_name`** (`text`) — Full name of the user.
26
+ - **`is_verified`** (`bool`) — Whether the contact is verified or not.
27
+ - **`modified_by`** (`composite`)
28
+ - Composite: `_gen:modified_by`
29
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
30
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
31
+ - **`email`** (`text`) — Email address of the user.
32
+ - **`full_name`** (`text`) — Full name of the user.
33
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
34
+ - ID type: `devu`, `sysu`, `svcacc`
35
+ - **`type`** (`enum`) **REQUIRED** — User type
36
+ - Allowed: `dev_user`, `service_account`, `sys_user`
37
+ - **`modified_date`** (`timestamp`) — Timestamp when the contact was last modified.
38
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
39
+ - **`rev_org`** (`composite`)
40
+ - Composite: `_gen:rev_org`
41
+ - **`tags`** (`[]composite`) — Tags associated with the contact.
42
+ - Composite: `_gen:tags`
43
+ - **`tag`** (`composite`)
44
+ - Composite: `_gen:tag`
45
+ - **`old_rev_user`** (`composite`) — Old contact object
46
+ - Composite: `_gen:implicit:rev-user`
47
+ - **`created_by`** (`composite`)
48
+ - Composite: `_gen:created_by`
49
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
50
+ - **`description`** (`text`) — Description of the Rev user.
51
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
52
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
53
+ - **`email`** (`text`) — Email address of the user.
54
+ - **`full_name`** (`text`) — Full name of the user.
55
+ - **`is_verified`** (`bool`) — Whether the Rev user is verified or not.
56
+ - **`modified_by`** (`composite`)
57
+ - Composite: `_gen:modified_by`
58
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
59
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
60
+ - **`tags`** (`[]composite`) — Tags associated with the object.
61
+ - Composite: `_gen:tags`
62
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
63
+ - ID type: `revu`
64
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
65
+ - ID type: `revu`
@@ -0,0 +1,108 @@
1
+ # `conversation_created` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`account`** (`composite`)
10
+ - Composite: `_gen:account`
11
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
12
+ - **`display_name`** (`text`) — Name of the Organization.
13
+ - **`id`** (`id`) **REQUIRED** — The ID of the account.
14
+ - ID type: `account`
15
+ - **`applies_to_parts`** (`[]composite`)
16
+ - Composite: `_gen:part-summary`
17
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
18
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
19
+ - **`owned_by`** (`[]composite`) **REQUIRED**
20
+ - Composite: `_gen:user-summary`
21
+ - **`type`** (`enum`) **REQUIRED**
22
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
23
+ - **`id`** (`id`) **REQUIRED** — ID of the part attached to the conversation.
24
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
25
+ - **`channels`** (`[]composite`)
26
+ - Composite: `_gen:external-communication-channel-summary`
27
+ - **`created_by`** (`composite`)
28
+ - Composite: `_gen:created_by`
29
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
30
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
31
+ - **`email`** (`text`) — Email address of the user.
32
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
33
+ - **`full_name`** (`text`) — Full name of the user.
34
+ - **`rev_org`** (`composite`)
35
+ - Composite: `_gen:rev_org`
36
+ - **`state`** (`enum`) — State of the user.
37
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
38
+ - **`type`** (`enum`) **REQUIRED**
39
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
40
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
41
+ - ID type: `revu`
42
+ - **`created_date`** (`timestamp`) — Timestamp when the conversation was created.
43
+ - **`description`** (`text`) — The description of the conversation.
44
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
45
+ - **`group`** (`composite`)
46
+ - Composite: `_gen:group`
47
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
48
+ - **`id`** (`id`) **REQUIRED** — ID of the group
49
+ - ID type: `group`
50
+ - **`is_frozen`** (`bool`) — Whether the object is frozen or not.
51
+ - **`last_external_message_date`** (`timestamp`) — Timestamp of the last message in external discussion.
52
+ - **`members`** (`[]composite`) **REQUIRED**
53
+ - Composite: `_gen:user-summary`
54
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
55
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
56
+ - **`email`** (`text`) — Email address of the user.
57
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
58
+ - **`full_name`** (`text`) — Full name of the user.
59
+ - **`rev_org`** (`composite`)
60
+ - Composite: `_gen:rev_org`
61
+ - **`state`** (`enum`) — State of the user.
62
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
63
+ - **`id`** (`id`) **REQUIRED** — ID of the user
64
+ - ID type: `devu`, `sysu`, `svcacc`
65
+ - **`type`** (`enum`) **REQUIRED**
66
+ - Allowed: `dev_user`, `sys_user`
67
+ - **`metadata`** (`composite`) — Metadata on conversation.
68
+ - Composite: `_gen:metadata`
69
+ - **`url_context`** (`text`) — URL from which the conversation was created if the conversation was created via PLuG.
70
+ - **`owned_by`** (`[]composite`)
71
+ - Composite: `_gen:user-summary`
72
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
73
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
74
+ - **`email`** (`text`) — Email address of the user.
75
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
76
+ - **`full_name`** (`text`) — Full name of the user.
77
+ - **`rev_org`** (`composite`)
78
+ - Composite: `_gen:rev_org`
79
+ - **`state`** (`enum`) — State of the user.
80
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
81
+ - **`id`** (`id`) **REQUIRED** — ID of the user
82
+ - ID type: `devu`, `sysu`, `svcacc`
83
+ - **`type`** (`enum`) **REQUIRED**
84
+ - Allowed: `dev_user`, `sys_user`
85
+ - **`sentiment`** (`composite`) — The properties of an enum value.
86
+ - Composite: `_gen:sentiment`
87
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
88
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
89
+ - **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
90
+ - Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
91
+ - **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
92
+ - **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
93
+ - **`source_channel`** (`text`) — Source channel for the conversation.
94
+ - **`source_channel_v2`** (`composite`)
95
+ - Composite: `_gen:source_channel_v2`
96
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
97
+ - **`id`** (`id`) — Globally unique object ID.
98
+ - ID type: `ext_comm_channel`
99
+ - **`stage`** (`composite`) — The stage of the conversation.
100
+ - Composite: `_gen:conversation-properties.stage`
101
+ - **`name`** (`text`) — Current stage name of the conversation.
102
+ - **`tags`** (`[]composite`) — The tags associated with the conversation.
103
+ - Composite: `_gen:tags`
104
+ - **`tag`** (`composite`)
105
+ - Composite: `_gen:tag`
106
+ - **`title`** (`text`) — The title of the conversation.
107
+ - **`id`** (`id`) **REQUIRED** — The ID of the created conversation
108
+ - ID type: `conversation`
@@ -0,0 +1,46 @@
1
+ # `conversation_sla_tracker_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
6
+ - Allowed: `stage`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`metric_target_summaries`** (`[]composite`) **REQUIRED** — Summary of the metrics target being tracked in the SLA tracker.
11
+ - Composite: `_gen:metric_target_summaries`
12
+ - **`breached_at`** (`timestamp`) — For breached metrics the time they entered into breach. This is the same as what the target date was, unless the breach happened due to a different policy starting to apply.
13
+ - **`completed_in`** (`int`) — For completed metrics the time (in minutes) it took to complete them. (Taking into account the schedule if any).
14
+ - **`completed_in_seconds`** (`int`) — For completed metrics the time (in seconds) it took to complete them. (Taking into account the schedule if any).
15
+ - **`is_out_of_schedule`** (`bool`) — If true, the schedule attached to this metric is out of schedule at the time of the query. It is not set for metrics in *completed* stage.
16
+ - **`metric_definition`** (`composite`)
17
+ - Composite: `_gen:metric_definition`
18
+ - **`next_schedule_transition`** (`timestamp`) — The next time the schedule will change its state, if such is known.
19
+ - **`org_schedule`** (`composite`)
20
+ - Composite: `_gen:org_schedule`
21
+ - **`org_schedule_version`** (`int`) — The version of the org schedule at the time this tracker was created.
22
+ - **`remaining_time`** (`int`) — Time in minutes that remains on a paused metric.
23
+ - **`target_time`** (`timestamp`) — Time at which the metric would breach SLA if no action taken.
24
+ - **`warning_target_time`** (`timestamp`) — Time at which the metric would reach the SLA warning limit if no action taken.
25
+ - **`stage`** (`enum`) **REQUIRED** — SLA stage of the object being tracked.
26
+ - Allowed: `active`, `breached`, `completed`, `paused`, `warning`
27
+ - **`status`** (`enum`) **REQUIRED** — Status of the object being tracked.
28
+ - Allowed: `hit`, `in_progress`, `miss`
29
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
30
+ - **`sla`** (`composite`)
31
+ - Composite: `_gen:sla`
32
+ - **`name`** (`text`) **REQUIRED** — Human-readable name.
33
+ - **`status`** (`enum`) **REQUIRED** — Status determines how an item can be used. In 'draft' status an item can be edited but can't be used. When 'published' the item can longer be edited but can be used. 'Archived' is read-only.
34
+ - Allowed: `archived`, `draft`, `published`
35
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
36
+ - ID type: `sla`
37
+ - **`sla_type`** (`enum`) **REQUIRED** — Type of the SLA. Internal - for internal objects (issues, etc) external - for customer facing objects (tickets, conversations etc)
38
+ - Allowed: `external`, `internal`
39
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
40
+ - ID type: `sla_tracker`
41
+ - **`applies_to_id`** (`id`) **REQUIRED** — The id of the conversation.
42
+ - ID type: `conversation`
43
+ - **`stage`** (`enum`) **REQUIRED** — SLA stage of the object being tracked.
44
+ - Allowed: `active`, `breached`, `completed`, `paused`, `warning`
45
+ - **`status`** (`enum`) **REQUIRED** — Status of the object being tracked.
46
+ - Allowed: `hit`, `in_progress`, `miss`
@@ -0,0 +1,130 @@
1
+ # `conversation_updated` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
6
+ - Allowed: `stage`, `tags`, `owned_by`, `group`, `is_frozen`, `sentiment`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`account`** (`composite`)
11
+ - Composite: `_gen:account`
12
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
13
+ - **`display_name`** (`text`) — Name of the Organization.
14
+ - **`id`** (`id`) **REQUIRED** — The id of the account.
15
+ - ID type: `account`
16
+ - **`applies_to_parts`** (`[]composite`)
17
+ - Composite: `_gen:part-summary`
18
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
19
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
20
+ - **`owned_by`** (`[]composite`) **REQUIRED**
21
+ - Composite: `_gen:user-summary`
22
+ - **`type`** (`enum`) **REQUIRED**
23
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
24
+ - **`id`** (`id`) **REQUIRED** — ID of the part attached to the conversation.
25
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
26
+ - **`created_by`** (`composite`)
27
+ - Composite: `_gen:created_by`
28
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
29
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
30
+ - **`email`** (`text`) — Email address of the user.
31
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
32
+ - **`full_name`** (`text`) — Full name of the user.
33
+ - **`rev_org`** (`composite`)
34
+ - Composite: `_gen:rev_org`
35
+ - **`state`** (`enum`) — State of the user.
36
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
37
+ - **`type`** (`enum`) **REQUIRED**
38
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
39
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
40
+ - ID type: `revu`
41
+ - **`created_date`** (`timestamp`) — Timestamp when the conversation was created.
42
+ - **`description`** (`text`) — The description of the conversation.
43
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
44
+ - **`group`** (`composite`)
45
+ - Composite: `_gen:group`
46
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
47
+ - **`id`** (`id`) **REQUIRED** — ID of the group
48
+ - ID type: `group`
49
+ - **`is_frozen`** (`bool`) — Whether the object is frozen or not.
50
+ - **`last_external_message_date`** (`timestamp`) — Timestamp of the last message in external discussion.
51
+ - **`members`** (`[]composite`) **REQUIRED**
52
+ - Composite: `_gen:user-summary`
53
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
54
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
55
+ - **`email`** (`text`) — Email address of the user.
56
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
57
+ - **`full_name`** (`text`) — Full name of the user.
58
+ - **`rev_org`** (`composite`)
59
+ - Composite: `_gen:rev_org`
60
+ - **`state`** (`enum`) — State of the user.
61
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
62
+ - **`id`** (`id`) **REQUIRED** — ID of the user
63
+ - ID type: `devu`, `sysu`, `svcacc`
64
+ - **`type`** (`enum`) **REQUIRED**
65
+ - Allowed: `dev_user`, `sys_user`
66
+ - **`owned_by`** (`[]composite`)
67
+ - Composite: `_gen:user-summary`
68
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
69
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
70
+ - **`email`** (`text`) — Email address of the user.
71
+ - **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
72
+ - **`full_name`** (`text`) — Full name of the user.
73
+ - **`rev_org`** (`composite`)
74
+ - Composite: `_gen:rev_org`
75
+ - **`state`** (`enum`) — State of the user.
76
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
77
+ - **`id`** (`id`) **REQUIRED** — ID of the user
78
+ - ID type: `devu`, `sysu`, `svcacc`
79
+ - **`type`** (`enum`) **REQUIRED**
80
+ - Allowed: `dev_user`, `sys_user`
81
+ - **`sentiment`** (`composite`) — The properties of an enum value.
82
+ - Composite: `_gen:sentiment`
83
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
84
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
85
+ - **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
86
+ - Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
87
+ - **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
88
+ - **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
89
+ - **`source_channel`** (`text`) — Source channel for the conversation.
90
+ - **`stage`** (`composite`) — The stage of the conversation.
91
+ - Composite: `_gen:conversation-properties.stage`
92
+ - **`name`** (`text`) — Current stage name of the conversation.
93
+ - **`tags`** (`[]composite`) — The tags associated with the conversation.
94
+ - Composite: `_gen:tags`
95
+ - **`tag`** (`composite`)
96
+ - Composite: `_gen:tag`
97
+ - **`title`** (`text`) — The title of the conversation.
98
+ - **`old_conversation`** (`composite`) — Old conversation object
99
+ - Composite: `_gen:implicit:conversation`
100
+ - **`account`** (`composite`)
101
+ - Composite: `_gen:account`
102
+ - **`applies_to_parts`** (`[]composite`)
103
+ - Composite: `_gen:part-summary`
104
+ - **`created_by`** (`composite`)
105
+ - Composite: `_gen:created_by`
106
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
107
+ - **`description`** (`text`) — Description of the conversation object.
108
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
109
+ - **`group`** (`composite`)
110
+ - Composite: `_gen:group`
111
+ - **`is_frozen`** (`bool`) — Whether the object is frozen or not.
112
+ - **`last_external_message_date`** (`timestamp`) — Timestamp of the last message in external discussion.
113
+ - **`members`** (`[]composite`) **REQUIRED**
114
+ - Composite: `_gen:user-summary`
115
+ - **`owned_by`** (`[]composite`)
116
+ - Composite: `_gen:user-summary`
117
+ - **`sentiment`** (`composite`) — The properties of an enum value.
118
+ - Composite: `_gen:sentiment`
119
+ - **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
120
+ - **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
121
+ - **`source_channel`** (`text`) — Source channel for the conversation.
122
+ - **`stage`** (`composite`) — Describes the current stage of a work item.
123
+ - Composite: `_gen:conversation-properties.stage`
124
+ - **`tags`** (`[]composite`) — Tags associated with the object.
125
+ - Composite: `_gen:tags`
126
+ - **`title`** (`text`) — Title of the conversation object.
127
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
128
+ - ID type: `conversation`
129
+ - **`id`** (`id`) **REQUIRED** — The ID of the created conversation
130
+ - ID type: `conversation`
@@ -0,0 +1,13 @@
1
+ # `convert_conversation_to_ticket` — Schema Reference
2
+
3
+ Converts a conversation to a ticket. Only conversations from PLuG and Slack can be converted to tickets.
4
+
5
+ ## Input Port: `input`
6
+
7
+ - **`conversation_id`** (`id`) **REQUIRED** — ID of the conversation to be converted to a ticket.
8
+ - ID type: `conversation`
9
+
10
+ ## Output Port: `output`
11
+
12
+ - **`ticket_id`** (`id`) **REQUIRED** — ID of the ticket created from the conversation.
13
+ - ID type: `ticket`
@@ -0,0 +1,62 @@
1
+ # `create_account` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`description`** (`text`) — Description of the account.
6
+ - **`display_name`** (`text`) **REQUIRED** — Name of the account.
7
+ - **`domains`** (`[]text`) — List of company's domain names. Example - ['devrev.ai'].
8
+ - **`tags`** (`[]composite`) — Tags associated with the account.
9
+ - Composite: `_gen:tags`
10
+ - **`id`** (`id`) **REQUIRED** — The ID of the tag.
11
+ - ID type: `tag`
12
+
13
+ ## Output Port: `output`
14
+
15
+ - **`created_by`** (`composite`)
16
+ - Composite: `_gen:created_by`
17
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
18
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
19
+ - **`email`** (`text`) — Email address of the user.
20
+ - **`full_name`** (`text`) — Full name of the user.
21
+ - **`state`** (`enum`) — State of the user.
22
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
23
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
24
+ - ID type: `devu`, `sysu`, `svcacc`
25
+ - **`type`** (`enum`) **REQUIRED**
26
+ - Allowed: `dev_user`, `sys_user`, `service_account`
27
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
28
+ - **`description`** (`text`) — Description of the corresponding Account.
29
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
30
+ - **`display_name`** (`text`) — Name of the Organization.
31
+ - **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
32
+ - **`modified_by`** (`composite`)
33
+ - Composite: `_gen:modified_by`
34
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
35
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
36
+ - **`email`** (`text`) — Email address of the user.
37
+ - **`full_name`** (`text`) — Full name of the user.
38
+ - **`state`** (`enum`) — State of the user.
39
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
40
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
41
+ - ID type: `devu`, `sysu`, `svcacc`
42
+ - **`type`** (`enum`) **REQUIRED**
43
+ - Allowed: `dev_user`, `sys_user`, `service_account`
44
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
45
+ - **`owned_by`** (`[]composite`) **REQUIRED**
46
+ - Composite: `_gen:user-summary`
47
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
48
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
49
+ - **`email`** (`text`) — Email address of the user.
50
+ - **`full_name`** (`text`) — Full name of the user.
51
+ - **`state`** (`enum`) — State of the user.
52
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
53
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
54
+ - ID type: `devu`, `sysu`
55
+ - **`type`** (`enum`) **REQUIRED**
56
+ - Allowed: `dev_user`, `service_account`, `sys_user`
57
+ - **`tags`** (`[]composite`) — Tags associated with an object.
58
+ - Composite: `_gen:tags`
59
+ - **`tag`** (`composite`)
60
+ - Composite: `_gen:tag`
61
+ - **`id`** (`id`) **REQUIRED** — Globally unique Account ID.
62
+ - ID type: `account`