@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,105 @@
1
+ # `create_meeting` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`artifacts`** (`[]id`) — The IDs of the artifacts to associate with the meeting.
6
+ - ID type: `artifact`
7
+ - **`channel`** (`enum`) **REQUIRED** — The channel of meeting.
8
+ - Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
9
+ - **`description`** (`text`) — The description of the meeting.
10
+ - **`ended_date`** (`timestamp`) — Time at which meeting ended.
11
+ - **`external_ref`** (`text`) — External reference for the meeting.
12
+ - **`external_url`** (`text`) — External platform URL of the meeting
13
+ - **`members`** (`[]id`) **REQUIRED** — IDs of the users that were part of the meeting.
14
+ - ID type: `devu`, `revu`, `svcacc`, `sysu`
15
+ - **`organizer`** (`id`) — The ID of the user who organized the meeting. If not provided, the creator is set as the organizer.
16
+ - ID type: `devu`, `revu`, `svcacc`, `sysu`
17
+ - **`state`** (`enum`) **REQUIRED** — The state of meeting.
18
+ - Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
19
+ - **`tags`** (`[]composite`) — Tags associated with the meeting.
20
+ - Composite: `_gen:tags`
21
+ - **`id`** (`id`) **REQUIRED** — The ID of the tag.
22
+ - ID type: `tag`
23
+ - **`title`** (`text`) **REQUIRED** — The title of the meeting.
24
+ - **`scheduled_date`** (`timestamp`) **REQUIRED** — The date and time when the meeting was scheduled.
25
+
26
+ ## Output Port: `output`
27
+
28
+ - **`channel`** (`enum`) — The channel of meeting.
29
+ - Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
30
+ - **`created_by`** (`composite`)
31
+ - Composite: `_gen:created_by`
32
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
33
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
34
+ - **`email`** (`text`) — Email address of the user.
35
+ - **`full_name`** (`text`) — Full name of the user.
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** — The id of the user.
41
+ - ID type: `devu`, `sysu`, `svcacc`
42
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
43
+ - **`description`** (`text`) — Description of the meeting.
44
+ - **`direction`** (`enum`) — Direction of meeting - meetings within an organization are internal. Meetings with external customers can be incoming or outgoing depending on who initiates them.
45
+ - Allowed: `incoming`, `internal`, `outgoing`
46
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
47
+ - **`ended_date`** (`timestamp`) — Time at which meeting ended.
48
+ - **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
49
+ - **`external_url`** (`text`) — External platform URL of the meeting
50
+ - **`members`** (`[]composite`) **REQUIRED**
51
+ - Composite: `_gen:user-summary`
52
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
53
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
54
+ - **`email`** (`text`) — Email address of the user.
55
+ - **`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.
56
+ - **`full_name`** (`text`) — Full name of the user.
57
+ - **`rev_org`** (`composite`)
58
+ - Composite: `_gen:rev_org`
59
+ - **`state`** (`enum`) — State of the user.
60
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
61
+ - **`type`** (`enum`) **REQUIRED**
62
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
63
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
64
+ - ID type: `devu`, `sysu`, `svcacc`, `revu`
65
+ - **`modified_by`** (`composite`)
66
+ - Composite: `_gen:modified_by`
67
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
68
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
69
+ - **`email`** (`text`) — Email address of the user.
70
+ - **`full_name`** (`text`) — Full name of the user.
71
+ - **`state`** (`enum`) — State of the user.
72
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
73
+ - **`type`** (`enum`) **REQUIRED**
74
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
75
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
76
+ - ID type: `devu`, `sysu`, `svcacc`
77
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
78
+ - **`organizer`** (`composite`)
79
+ - Composite: `_gen:organizer`
80
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
81
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
82
+ - **`email`** (`text`) — Email address of the user.
83
+ - **`full_name`** (`text`) — Full name of the user.
84
+ - **`state`** (`enum`) — State of the user.
85
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
86
+ - **`type`** (`enum`) **REQUIRED**
87
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
88
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
89
+ - ID type: `devu`, `sysu`, `svcacc`, `revu`
90
+ - **`scheduled_date`** (`timestamp`) — Time at which meeting was scheduled to start.
91
+ - **`state`** (`enum`) — The state of meeting.
92
+ - Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
93
+ - **`tags`** (`[]composite`) — Tags associated with the meeting.
94
+ - Composite: `_gen:tags`
95
+ - **`tag`** (`composite`)
96
+ - Composite: `_gen:tag`
97
+ - **`title`** (`text`) — Title of the meeting object.
98
+ - **`visibility`** (`composite`) — The properties of an enum value.
99
+ - Composite: `_gen:visibility`
100
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
101
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
102
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
103
+ - **`value`** (`json_value`) — The actual value of the enum value.
104
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
105
+ - ID type: `meeting`
@@ -0,0 +1,123 @@
1
+ # `create_opportunity` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`account`** (`id`) **REQUIRED** — The ID of the account that the opportunity is associated with.
6
+ - ID type: `account`
7
+ - **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
8
+ - Composite: `_gen:annual_contract_value`
9
+ - **`amount`** (`text`) **REQUIRED** — The amount.
10
+ - **`currency`** (`text`) **REQUIRED** — The currency code conforming ISO 4217 standard.
11
+ - **`body`** (`text`) — Body of the opportunity object.
12
+ - Validation: max_len=65536
13
+ - **`contacts`** (`[]id`) — Contacts involved in the opportunity.
14
+ - ID type: `revu`
15
+ - **`customer_budget`** (`double`) — Budget of the customer.
16
+ - **`external_ref`** (`text`) — The external reference for the work item. This must be unique within the type of work item.
17
+ - Validation: min_len=1, max_len=512
18
+ - **`priority`** (`enum`) — Priority of the opportunity.
19
+ - Allowed: `p0`, `p1`, `p2`, `p3`
20
+ - **`probability`** (`double`) — The probability of winning the deal, lies between 0 to 100.
21
+ - **`reported_by`** (`[]id`) — The users that reported the work.
22
+ - ID type: `devu`, `revu`, `svcacc`, `sysu`
23
+ - **`tags`** (`[]composite`) — Tags associated with the work item.
24
+ - Composite: `_gen:tags`
25
+ - **`id`** (`id`) **REQUIRED** — The ID of the tag.
26
+ - ID type: `tag`
27
+ - **`target_close_date`** (`timestamp`) — The timestamp for when the opportunity is expected to be complete.
28
+ - **`title`** (`text`) **REQUIRED** — Title of the opportunity object.
29
+ - Validation: min_len=1, max_len=256
30
+ - **`value`** (`composite`) — The value of the opportunity in USD.
31
+ - Composite: `_gen:value`
32
+ - **`amount`** (`text`) **REQUIRED** — The amount.
33
+ - **`currency`** (`text`) **REQUIRED** — The currency code conforming ISO 4217 standard.
34
+ - **`stage`** (`id`) — The stage of the opportunity.
35
+ - ID type: `custom_stage`
36
+ - **`owned_by`** (`[]id`) **REQUIRED** — The users that own the opportunity.
37
+ - ID type: `devu`, `sysu`, `svcacc`
38
+
39
+ ## Output Port: `output`
40
+
41
+ - **`account`** (`composite`)
42
+ - Composite: `_gen:account`
43
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
44
+ - **`display_name`** (`text`) — Name of the Organization.
45
+ - **`id`** (`id`) **REQUIRED** — The id of the account.
46
+ - ID type: `account`
47
+ - **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
48
+ - Composite: `_gen:annual_contract_value`
49
+ - **`amount`** (`text`) — Amount of the money.
50
+ - **`currency`** (`text`) — Currency of the money.
51
+ - **`body`** (`text`) — The description of the opportunity.
52
+ - **`created_by`** (`composite`)
53
+ - Composite: `_gen:created_by`
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
+ - **`display_picture`** (`composite`)
57
+ - Composite: `_gen:display_picture`
58
+ - **`email`** (`text`) — Email address of the user.
59
+ - **`full_name`** (`text`) — Full name of the user.
60
+ - **`state`** (`enum`) — State of the user.
61
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
62
+ - **`type`** (`enum`) **REQUIRED**
63
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
64
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
65
+ - ID type: `devu`, `sysu`, `svcacc`
66
+ - **`created_date`** (`timestamp`) — Timestamp when the opportunity was created.
67
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
68
+ - **`external_ref`** (`text`) — An opaque key that's associated with the work item that's guaranteed to be unique across all work items of same type (issue, ticket, etc).
69
+ - **`modified_by`** (`composite`)
70
+ - Composite: `_gen:modified_by`
71
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
72
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
73
+ - **`display_picture`** (`composite`)
74
+ - Composite: `_gen:display_picture`
75
+ - **`email`** (`text`) — Email address of the user.
76
+ - **`full_name`** (`text`) — Full name of the user.
77
+ - **`state`** (`enum`) — State of the user.
78
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
79
+ - **`type`** (`enum`) **REQUIRED**
80
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
81
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
82
+ - ID type: `devu`, `sysu`, `svcacc`
83
+ - **`modified_date`** (`timestamp`) — Timestamp when the opportunity was last modified.
84
+ - **`owned_by`** (`[]composite`) **REQUIRED**
85
+ - Composite: `_gen:user-summary`
86
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
87
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
88
+ - **`email`** (`text`) — Email address of the user.
89
+ - **`full_name`** (`text`) — Full name of the user.
90
+ - **`state`** (`enum`) — State of the user.
91
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
92
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
93
+ - ID type: `devu`, `sysu`, `svcacc`
94
+ - **`type`** (`enum`) **REQUIRED**
95
+ - Allowed: `dev_user`, `service_account`, `sys_user`
96
+ - **`reported_by`** (`[]composite`)
97
+ - Composite: `_gen:user-summary`
98
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
99
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
100
+ - **`email`** (`text`) — Email address of the user.
101
+ - **`full_name`** (`text`) — Full name of the user.
102
+ - **`state`** (`enum`) — State of the user.
103
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
104
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
105
+ - ID type: `devu`, `sysu`, `svcacc`
106
+ - **`type`** (`enum`) **REQUIRED**
107
+ - Allowed: `dev_user`, `service_account`, `sys_user`
108
+ - **`stage`** (`composite`) — Describes the current stage of a opportunity
109
+ - Composite: `_gen:stage`
110
+ - **`name`** (`text`) **REQUIRED** — Describes the current stage of a opportunity
111
+ - **`state_display_name`** (`text`) — Display name for current state.
112
+ - **`tags`** (`[]composite`) — Tags associated with the object.
113
+ - Composite: `_gen:tags`
114
+ - **`tag`** (`composite`)
115
+ - Composite: `_gen:tag`
116
+ - **`target_close_date`** (`timestamp`) — Timestamp when the opportunity is expected to be closed.
117
+ - **`title`** (`text`) **REQUIRED** — Title of the opportunity.
118
+ - **`value`** (`composite`) — The value of the opportunity in USD.
119
+ - Composite: `_gen:value`
120
+ - **`amount`** (`text`) — Amount of the money.
121
+ - **`currency`** (`text`) — Currency of the money.
122
+ - **`id`** (`id`) **REQUIRED** — The opportunity which was created.
123
+ - ID type: `opportunity`
@@ -0,0 +1,184 @@
1
+ # `create_ticket` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`artifacts`** (`[]id`) — The IDs of the artifacts to associate with the work item.
6
+ - ID type: `artifact`
7
+ - **`body`** (`text`) — Body of the work object.
8
+ - Validation: max_len=65536
9
+ - **`channels`** (`[]enum`) — Channels of the ticket.
10
+ - Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
11
+ - **`external_ref`** (`text`) — The external reference for the work item. This must be unique within the type of work item.
12
+ - Validation: min_len=1, max_len=512
13
+ - **`group`** (`id`) — The group that the ticket is associated with.
14
+ - ID type: `group`
15
+ - **`is_spam`** (`bool`) — Whether the ticket is spam.
16
+ - **`needs_response`** (`bool`) — Whether the ticket needs a response.
17
+ - **`severity`** (`enum`) — Severity of the ticket.
18
+ - Allowed: `blocker`, `high`, `low`, `medium`
19
+ - **`source_channel`** (`text`) — The source channel of the ticket.
20
+ - **`stage`** (`composite`) — Sets an object's initial stage.
21
+ - Composite: `_gen:stage`
22
+ - **`name`** (`text`) — The name of the stage.
23
+ - **`stage_validation_options`** (`[]enum`) — The type of stage validations options when creating a work item.
24
+ - Allowed: `allow_non_start`
25
+ - **`tags`** (`[]composite`) — Tags associated with the work item.
26
+ - Composite: `_gen:tags`
27
+ - **`id`** (`id`) **REQUIRED** — The ID of the tag.
28
+ - ID type: `tag`
29
+ - **`target_close_date`** (`timestamp`) — Timestamp for when the work is expected to be complete.
30
+ - **`title`** (`text`) **REQUIRED** — Title of the work object.
31
+ - Validation: min_len=1, max_len=256
32
+ - **`applies_to_part`** (`id`) **REQUIRED** — The [part](https://devrev.ai/docs/product/parts) that the work applies to. Specifying a part is required when creating tickets.
33
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
34
+ - **`owned_by`** (`[]id`) **REQUIRED** — The users that own the ticket.
35
+ - ID type: `devu`, `sysu`, `svcacc`
36
+ - **`rev_org`** (`id`) — The Workspace that the ticket is associated with.
37
+ - ID type: `revo`
38
+ - **`reported_by`** (`[]id`) — The user that reported the ticket.
39
+ - ID type: `revu`
40
+ - **`visibility`** (`uenum`) — Visibility enum ID of the ticket. Choose 'internal' for tickets only visible to your team members, or 'external' for tickets that can be shared with customers and external stakeholders.
41
+
42
+ ## Output Port: `output`
43
+
44
+ - **`applies_to_part`** (`composite`)
45
+ - Composite: `_gen:applies_to_part`
46
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
47
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
48
+ - **`type`** (`enum`) **REQUIRED**
49
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
50
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
51
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
52
+ - **`artifacts`** (`[]composite`)
53
+ - Composite: `_gen:artifact-summary`
54
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
55
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
56
+ - ID type: `artifact`
57
+ - **`body`** (`text`) — Body of the work object.
58
+ - **`channels`** (`[]enum`) — Channels of the ticket.
59
+ - Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
60
+ - **`created_by`** (`composite`)
61
+ - Composite: `_gen:created_by`
62
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
63
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
64
+ - **`display_picture`** (`composite`)
65
+ - Composite: `_gen:display_picture`
66
+ - **`email`** (`text`) — Email address of the user.
67
+ - **`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.
68
+ - **`full_name`** (`text`) — Full name of the user.
69
+ - **`rev_org`** (`composite`)
70
+ - Composite: `_gen:rev_org`
71
+ - **`state`** (`enum`) — State of the user.
72
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
73
+ - **`type`** (`enum`) **REQUIRED**
74
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
75
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
76
+ - ID type: `devu`, `sysu`, `svcacc`, `revu`
77
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
78
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
79
+ - **`external_ref`** (`text`) — An opaque key that's associated with the work item that's guaranteed to be unique across all work items of same type (issue, ticket, etc).
80
+ - **`group`** (`composite`)
81
+ - Composite: `_gen:group`
82
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
83
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
84
+ - ID type: `group`
85
+ - **`is_frozen`** (`bool`) — Whether the object is frozen or not.
86
+ - **`is_spam`** (`bool`) — Whether the ticket is spam.
87
+ - **`modified_by`** (`composite`)
88
+ - Composite: `_gen:modified_by`
89
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
90
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
91
+ - **`display_picture`** (`composite`)
92
+ - Composite: `_gen:display_picture`
93
+ - **`email`** (`text`) — Email address of the user.
94
+ - **`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.
95
+ - **`full_name`** (`text`) — Full name of the user.
96
+ - **`rev_org`** (`composite`)
97
+ - Composite: `_gen:rev_org`
98
+ - **`state`** (`enum`) — State of the user.
99
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
100
+ - **`type`** (`enum`) **REQUIRED**
101
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
102
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
103
+ - ID type: `devu`, `sysu`, `svcacc`
104
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
105
+ - **`needs_response`** (`bool`) — Whether the ticket needs a response.
106
+ - **`owned_by`** (`[]composite`) **REQUIRED**
107
+ - Composite: `_gen:user-summary`
108
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
109
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
110
+ - **`display_picture`** (`composite`)
111
+ - Composite: `_gen:display_picture`
112
+ - **`email`** (`text`) — Email address of the user.
113
+ - **`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.
114
+ - **`full_name`** (`text`) — Full name of the user.
115
+ - **`rev_org`** (`composite`)
116
+ - Composite: `_gen:rev_org`
117
+ - **`state`** (`enum`) — State of the user.
118
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
119
+ - **`type`** (`enum`) **REQUIRED**
120
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
121
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
122
+ - ID type: `devu`, `sysu`, `svcacc`
123
+ - **`reported_by`** (`[]composite`)
124
+ - Composite: `_gen:user-summary`
125
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
126
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
127
+ - **`display_picture`** (`composite`)
128
+ - Composite: `_gen:display_picture`
129
+ - **`email`** (`text`) — Email address of the user.
130
+ - **`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.
131
+ - **`full_name`** (`text`) — Full name of the user.
132
+ - **`rev_org`** (`composite`)
133
+ - Composite: `_gen:rev_org`
134
+ - **`state`** (`enum`) — State of the user.
135
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
136
+ - **`type`** (`enum`) **REQUIRED**
137
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
138
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
139
+ - ID type: `devu`, `sysu`, `svcacc`
140
+ - **`rev_org`** (`composite`)
141
+ - Composite: `_gen:rev_org`
142
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
143
+ - **`display_name`** (`text`) — Name of the Organization.
144
+ - **`type`** (`enum`) **REQUIRED**
145
+ - Allowed: `account`, `rev_org`
146
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
147
+ - ID type: `revo`
148
+ - **`sentiment`** (`composite`) — The properties of an enum value.
149
+ - Composite: `_gen:sentiment`
150
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
151
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
152
+ - **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
153
+ - Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
154
+ - **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
155
+ - **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
156
+ - **`severity`** (`enum`) — Severity of the ticket.
157
+ - Allowed: `blocker`, `high`, `low`, `medium`
158
+ - **`sla_tracker`** (`composite`)
159
+ - Composite: `_gen:ticket-properties.sla_tracker`
160
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
161
+ - **`id`** (`text`) **REQUIRED** — Globally unique object ID.
162
+ - **`source_channel`** (`text`) — Source channel of the ticket.
163
+ - **`stage`** (`composite`) — Describes the current stage of a work item.
164
+ - Composite: `_gen:stage`
165
+ - **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
166
+ - **`stage`** (`composite`) — The stage of the ticket.
167
+ - Composite: `stage.stage`
168
+ - **`state_display_name`** (`text`) — Display name for current state.
169
+ - **`tags`** (`[]composite`) — Tags associated with the object.
170
+ - Composite: `_gen:tags`
171
+ - **`tag`** (`composite`)
172
+ - Composite: `_gen:tag`
173
+ - **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
174
+ - **`title`** (`text`) **REQUIRED** — Title of the work object.
175
+ - **`type`** (`enum`) **REQUIRED**
176
+ - Allowed: `issue`, `opportunity`, `task`, `ticket`
177
+ - **`visibility`** (`composite`) — The properties of an enum value.
178
+ - Composite: `_gen:visibility`
179
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
180
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
181
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
182
+ - **`value`** (`json_value`) — The actual value of the enum value.
183
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
184
+ - ID type: `ticket`
@@ -0,0 +1,73 @@
1
+ # `csat_response_received` — 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`, `response`
7
+ - **`object_types`** (`[]enum`) **REQUIRED** — The type of objects to watch for CSAT responses
8
+ - Allowed: `ticket`, `conversation`
9
+
10
+ ## Output Port: `output`
11
+
12
+ - **`created_by`** (`composite`)
13
+ - Composite: `_gen:created_by`
14
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
15
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
16
+ - **`email`** (`text`) — Email address of the user.
17
+ - **`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.
18
+ - **`full_name`** (`text`) — Full name of the user.
19
+ - **`state`** (`enum`) — State of the user.
20
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
21
+ - **`type`** (`enum`) **REQUIRED**
22
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
23
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
24
+ - ID type: `revu`, `devu`, `sysu`, `svcacc`
25
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
26
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
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
+ - **`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
+ - **`state`** (`enum`) — State of the user.
35
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
36
+ - **`type`** (`enum`) **REQUIRED**
37
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
38
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
39
+ - ID type: `revu`, `devu`, `sysu`, `svcacc`
40
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
41
+ - **`recipient`** (`composite`)
42
+ - Composite: `_gen:recipient`
43
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
44
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
45
+ - **`email`** (`text`) — Email address of the user.
46
+ - **`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.
47
+ - **`full_name`** (`text`) — Full name of the user.
48
+ - **`state`** (`enum`) — State of the user.
49
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
50
+ - **`type`** (`enum`) **REQUIRED**
51
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
52
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
53
+ - ID type: `revu`, `devu`, `sysu`, `svcacc`
54
+ - **`response_channel`** (`composite`) — The properties of an enum value.
55
+ - Composite: `_gen:response_channel`
56
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
57
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
58
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
59
+ - **`value`** (`json_value`) — The actual value of the enum value.
60
+ - **`stage`** (`composite`) — The stage of the survey response.
61
+ - Composite: `_gen:stage`
62
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
63
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
64
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
65
+ - **`value`** (`json_value`) — The actual value of the enum value.
66
+ - **`survey`** (`id`) — The ID of the survey for which response is taken.
67
+ - ID type: `survey`
68
+ - **`object`** (`id`) — The ID of the object for which survey is taken.
69
+ - ID type: `conversation`, `ticket`
70
+ - **`response`** (`composite`) — Response for the CSAT survey.
71
+ - Composite: `csat_response`
72
+ - **`rating`** (`int`) **REQUIRED** — User rating for the survey.
73
+ - **`feedback`** (`text`) — User feedback for the survey.
@@ -0,0 +1,54 @@
1
+ # `dev_user_created` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ _No input fields (trigger or system-provided)._
6
+
7
+ ## Output Port: `output`
8
+
9
+ - **`availability_modes`** (`[]composite`) — The availability modes of the user. Stock allowed values: ``` { "id": 1, "label": "Ticket", "ordinal": 1, "overridable": false }, { "id": 2, "label": "Conversation", "ordinal": 2, "overridable": false }, { "id": 3, "label": "Issue", "ordinal": 3, "overridable": false }, { "id": 4, "label": "Incident", "ordinal": 4, "overridable": false }, { "id": 5, "label": "Away", "ordinal": 5, "overridable": false }, { "id": 6, "label": "Sick", "ordinal": 6, "overridable": false }, { "id": 7, "label": "Lunch", "ordinal": 7, "overridable": false }, { "id": 8, "label": "Travel", "ordinal": 8, "overridable": false }, { "id": 9, "label": "Vacation", "ordinal": 9, "overridable": false } ```
10
+ - Composite: `_gen:availability_modes`
11
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
12
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
13
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
14
+ - **`value`** (`json_value`) — The actual value of the enum value.
15
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
16
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
17
+ - **`display_picture`** (`composite`)
18
+ - Composite: `_gen:user-base-properties.display_picture`
19
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
20
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
21
+ - ID type: `artifact`
22
+ - **`email`** (`text`) — Email address of the user.
23
+ - **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
24
+ - **`full_name`** (`text`) — Full name of the user.
25
+ - **`job_history`** (`[]composite`) — Job history of the user.
26
+ - Composite: `_gen:job_history`
27
+ - **`employment_status`** (`composite`) — The properties of an enum value.
28
+ - Composite: `_gen:employment_status`
29
+ - **`end_date`** (`timestamp`) — The end date of the job, or not specified if current.
30
+ - **`is_current`** (`bool`) — Is this the current active job for the user.
31
+ - **`location`** (`text`) — The job location for the user.
32
+ - **`start_date`** (`timestamp`) — The start date of the job.
33
+ - **`title`** (`text`) — The job title for the user.
34
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
35
+ - **`reports_to`** (`composite`)
36
+ - Composite: `_gen:reports_to`
37
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
38
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
39
+ - **`email`** (`text`) — Email address of the user.
40
+ - **`full_name`** (`text`) — Full name of the user.
41
+ - **`state`** (`enum`) — State of the user.
42
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
43
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
44
+ - ID type: `devu`
45
+ - **`type`** (`enum`) **REQUIRED**
46
+ - Allowed: `dev_user`
47
+ - **`skills`** (`[]composite`) — Array of skills of the user.
48
+ - Composite: `_gen:skills`
49
+ - **`name`** (`text`) — Name of the skill.
50
+ - **`state`** (`enum`) — State of the user.
51
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
52
+ - **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
53
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
54
+ - ID type: `devu`
@@ -0,0 +1,99 @@
1
+ # `dev_user_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: `display_name`, `email`, `job_title`, `state`, `availability_modes`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`availability_modes`** (`[]composite`) — The availability modes of the user. Stock allowed values: ``` { "id": 1, "label": "Ticket", "ordinal": 1, "overridable": false }, { "id": 2, "label": "Conversation", "ordinal": 2, "overridable": false }, { "id": 3, "label": "Issue", "ordinal": 3, "overridable": false }, { "id": 4, "label": "Incident", "ordinal": 4, "overridable": false }, { "id": 5, "label": "Away", "ordinal": 5, "overridable": false }, { "id": 6, "label": "Sick", "ordinal": 6, "overridable": false }, { "id": 7, "label": "Lunch", "ordinal": 7, "overridable": false }, { "id": 8, "label": "Travel", "ordinal": 8, "overridable": false }, { "id": 9, "label": "Vacation", "ordinal": 9, "overridable": false } ```
11
+ - Composite: `_gen:availability_modes`
12
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
13
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
14
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
15
+ - **`value`** (`json_value`) — The actual value of the enum value.
16
+ - **`created_by`** (`composite`)
17
+ - Composite: `_gen:created_by`
18
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
19
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
20
+ - **`email`** (`text`) — Email address of the user.
21
+ - **`full_name`** (`text`) — Full name of the user.
22
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
23
+ - ID type: `devu`, `sysu`, `svcacc`
24
+ - **`type`** (`enum`) **REQUIRED** — User type
25
+ - Allowed: `dev_user`, `service_account`, `sys_user`
26
+ - **`created_date`** (`timestamp`) — Timestamp when the dev user was created.
27
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
28
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
29
+ - **`email`** (`text`) — Email address of the user.
30
+ - **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
31
+ - **`full_name`** (`text`) — Full name of the user.
32
+ - **`job_history`** (`[]composite`) — Job history of the user.
33
+ - Composite: `_gen:job_history`
34
+ - **`employment_status`** (`composite`) — The properties of an enum value.
35
+ - Composite: `_gen:employment_status`
36
+ - **`end_date`** (`timestamp`) — The end date of the job, or not specified if current.
37
+ - **`is_current`** (`bool`) — Is this the current active job for the user.
38
+ - **`location`** (`text`) — The job location for the user.
39
+ - **`start_date`** (`timestamp`) — The start date of the job.
40
+ - **`title`** (`text`) — The job title for the user.
41
+ - **`modified_by`** (`composite`)
42
+ - Composite: `_gen:modified_by`
43
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
44
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
45
+ - **`email`** (`text`) — Email address of the user.
46
+ - **`full_name`** (`text`) — Full name of the user.
47
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
48
+ - ID type: `devu`, `sysu`, `svcacc`
49
+ - **`type`** (`enum`) **REQUIRED** — User type
50
+ - Allowed: `dev_user`, `service_account`, `sys_user`
51
+ - **`modified_date`** (`timestamp`) — Timestamp when the dev user was last modified.
52
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
53
+ - **`reports_to`** (`composite`)
54
+ - Composite: `_gen:reports_to`
55
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
56
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
57
+ - **`email`** (`text`) — Email address of the user.
58
+ - **`full_name`** (`text`) — Full name of the user.
59
+ - **`state`** (`enum`) — State of the user.
60
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
61
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
62
+ - ID type: `devu`
63
+ - **`type`** (`enum`) **REQUIRED**
64
+ - Allowed: `dev_user`
65
+ - **`skills`** (`[]composite`) — Array of skills of the user.
66
+ - Composite: `_gen:skills`
67
+ - **`name`** (`text`) — Name of the skill.
68
+ - **`state`** (`enum`) — State of the user.
69
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
70
+ - **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
71
+ - **`old_dev_user`** (`composite`) — Old dev user object
72
+ - Composite: `_gen:implicit:dev-user`
73
+ - **`availability_modes`** (`[]composite`) — The availability modes of the user. Stock allowed values: ``` { "id": 1, "label": "Ticket", "ordinal": 1, "overridable": false }, { "id": 2, "label": "Conversation", "ordinal": 2, "overridable": false }, { "id": 3, "label": "Issue", "ordinal": 3, "overridable": false }, { "id": 4, "label": "Incident", "ordinal": 4, "overridable": false }, { "id": 5, "label": "Away", "ordinal": 5, "overridable": false }, { "id": 6, "label": "Sick", "ordinal": 6, "overridable": false }, { "id": 7, "label": "Lunch", "ordinal": 7, "overridable": false }, { "id": 8, "label": "Travel", "ordinal": 8, "overridable": false }, { "id": 9, "label": "Vacation", "ordinal": 9, "overridable": false } ```
74
+ - Composite: `_gen:availability_modes`
75
+ - **`created_by`** (`composite`)
76
+ - Composite: `_gen:created_by`
77
+ - **`created_date`** (`timestamp`) — Timestamp when the dev user was created.
78
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
79
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
80
+ - **`email`** (`text`) — Email address of the user.
81
+ - **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
82
+ - **`full_name`** (`text`) — Full name of the user.
83
+ - **`job_history`** (`[]composite`) — Job history of the user.
84
+ - Composite: `_gen:job_history`
85
+ - **`modified_by`** (`composite`)
86
+ - Composite: `_gen:modified_by`
87
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
88
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
89
+ - **`reports_to`** (`composite`)
90
+ - Composite: `_gen:reports_to`
91
+ - **`skills`** (`[]composite`) — Array of skills of the user.
92
+ - Composite: `_gen:skills`
93
+ - **`state`** (`enum`) — State of the user.
94
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
95
+ - **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
96
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
97
+ - ID type: `devu`
98
+ - **`id`** (`id`) **REQUIRED** — Globally unique dev user ID.
99
+ - ID type: `devu`