@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,56 @@
1
+ # `get_feature` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the feature.
6
+ - ID type: `feature`
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
+ - **`state`** (`enum`) — State of the user.
17
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
18
+ - **`id`** (`id`) **REQUIRED** — ID of the user
19
+ - ID type: `devu`, `sysu`, `svcacc`
20
+ - **`type`** (`enum`) **REQUIRED**
21
+ - Allowed: `dev_user`, `service_account`, `sys_user`
22
+ - **`created_date`** (`timestamp`) — Timestamp when the Feature was created.
23
+ - **`description`** (`text`) — Description of the Feature.
24
+ - **`display_id`** (`text`) — Human-readable Feature ID unique to the Dev organization.
25
+ - **`modified_by`** (`composite`)
26
+ - Composite: `_gen:modified_by`
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
+ - **`full_name`** (`text`) — Full name of the user.
31
+ - **`state`** (`enum`) — State of the user.
32
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
33
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
34
+ - ID type: `devu`, `sysu`, `svcacc`
35
+ - **`type`** (`enum`) **REQUIRED**
36
+ - Allowed: `dev_user`, `service_account`, `sys_user`
37
+ - **`modified_date`** (`timestamp`) — Timestamp when the Feature was modified.
38
+ - **`name`** (`text`) **REQUIRED** — Name of the Feature.
39
+ - **`owned_by`** (`[]composite`) **REQUIRED**
40
+ - Composite: `_gen:user-summary`
41
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
42
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
43
+ - **`email`** (`text`) — Email address of the user.
44
+ - **`full_name`** (`text`) — Full name of the user.
45
+ - **`state`** (`enum`) — State of the user.
46
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
47
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
48
+ - ID type: `devu`, `sysu`, `svcacc`
49
+ - **`type`** (`enum`) **REQUIRED**
50
+ - Allowed: `dev_user`, `service_account`, `sys_user`
51
+ - **`tags`** (`[]composite`) — Tags associated with the object.
52
+ - Composite: `_gen:tags`
53
+ - **`tag`** (`composite`)
54
+ - Composite: `_gen:tag`
55
+ - **`id`** (`id`) **REQUIRED** — The ID of the Feature
56
+ - ID type: `feature`
@@ -0,0 +1,85 @@
1
+ # `get_incident` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the incident.
6
+ - ID type: `incident`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
11
+ - **`actual_close_date`** (`timestamp`) — Timestamp when the incident was actually resolved.
12
+ - **`applies_to_parts`** (`[]composite`)
13
+ - Composite: `_gen:part-summary`
14
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
15
+ - **`owned_by`** (`[]composite`) **REQUIRED**
16
+ - Composite: `_gen:user-summary`
17
+ - **`type`** (`enum`) **REQUIRED**
18
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
19
+ - **`id`** (`id`) **REQUIRED** — ID of the part attached to the incident.
20
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
21
+ - **`body`** (`text`) — Body of the incident.
22
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
23
+ - **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
24
+ - **`impact`** (`composite`) — Details of the impact due to the incident.
25
+ - Composite: `_gen:impact`
26
+ - **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
27
+ - **`owned_by`** (`[]composite`)
28
+ - Composite: `_gen:user-summary`
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
+ - **`display_picture`** (`composite`)
32
+ - Composite: `_gen:display_picture`
33
+ - **`email`** (`text`) — Email address of the user.
34
+ - **`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.
35
+ - **`full_name`** (`text`) — Full name of the user.
36
+ - **`rev_org`** (`composite`)
37
+ - Composite: `_gen:rev_org`
38
+ - **`state`** (`enum`) — State of the user.
39
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
40
+ - **`type`** (`enum`) **REQUIRED**
41
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
42
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
43
+ - ID type: `devu`, `sysu`, `svcacc`
44
+ - **`pia`** (`[]composite`)
45
+ - Composite: `_gen:article-summary`
46
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
47
+ - **`resource`** (`composite`) — Resource details.
48
+ - Composite: `_gen:resource`
49
+ - **`title`** (`text`) — Title of the article.
50
+ - **`id`** (`id`) **REQUIRED** — ID of the article.
51
+ - ID type: `article`
52
+ - **`playbooks`** (`[]composite`)
53
+ - Composite: `_gen:article-summary_95fca9c7`
54
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
55
+ - **`resource`** (`composite`) — Resource details.
56
+ - Composite: `_gen:resource`
57
+ - **`title`** (`text`) — Title of the article.
58
+ - **`id`** (`id`) **REQUIRED** — ID of the article.
59
+ - ID type: `article`
60
+ - **`reported_by`** (`composite`) — The properties of an enum value.
61
+ - Composite: `_gen:reported_by`
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
+ - **`severity`** (`composite`) — Severity of the incident.
66
+ - Composite: `_gen:severity`
67
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
68
+ - **`label`** (`text`) **REQUIRED** — The label for the severity. Use id instead as labels can change overtime.
69
+ - **`value`** (`json_value`) — The actual value of the enum value.
70
+ - **`source`** (`composite`) — The properties of an enum value.
71
+ - Composite: `_gen:source`
72
+ - **`stage`** (`composite`) — Stage of the incident.
73
+ - Composite: `_gen:stage`
74
+ - **`stage`** (`composite`) — The stage of the incident.
75
+ - Composite: `stage.stage`
76
+ - **`state`** (`composite`) — The state of the incident
77
+ - Composite: `_gen:state`
78
+ - **`tags`** (`[]composite`) — Tags associated with the object.
79
+ - Composite: `_gen:tags`
80
+ - **`tag`** (`composite`)
81
+ - Composite: `_gen:tag`
82
+ - **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
83
+ - **`title`** (`text`) **REQUIRED** — Title of the incident.
84
+ - **`id`** (`id`) **REQUIRED** — ID of the incident.
85
+ - ID type: `incident`
@@ -0,0 +1,117 @@
1
+ # `get_issue` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the issue.
6
+ - ID type: `issue`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`actual_close_date`** (`timestamp`) — Timestamp when the work was actually completed.
11
+ - **`actual_start_date`** (`timestamp`) — Actual start date for the object.
12
+ - **`applies_to_part`** (`composite`)
13
+ - Composite: `_gen:applies_to_part`
14
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
15
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
16
+ - **`type`** (`enum`) **REQUIRED**
17
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
18
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
19
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
20
+ - **`body`** (`text`) — The body of the issue.
21
+ - **`created_by`** (`composite`)
22
+ - Composite: `_gen:created_by`
23
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
24
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
25
+ - **`display_picture`** (`composite`)
26
+ - Composite: `_gen:display_picture`
27
+ - **`email`** (`text`) — Email address of the user.
28
+ - **`full_name`** (`text`) — Full name of the user.
29
+ - **`state`** (`enum`) — State of the user.
30
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
31
+ - **`type`** (`enum`) **REQUIRED**
32
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
33
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
34
+ - ID type: `devu`, `sysu`, `svcacc`
35
+ - **`created_date`** (`timestamp`) — Timestamp when the issue was created.
36
+ - **`developed_with`** (`[]composite`)
37
+ - Composite: `_gen:part-summary`
38
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
39
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
40
+ - **`type`** (`enum`) **REQUIRED**
41
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
42
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
43
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
44
+ - **`display_id`** (`text`) — Display ID of the issue.
45
+ - **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
46
+ - **`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).
47
+ - **`modified_by`** (`composite`)
48
+ - Composite: `_gen:modified_by`
49
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
50
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
51
+ - **`display_picture`** (`composite`)
52
+ - Composite: `_gen:display_picture`
53
+ - **`email`** (`text`) — Email address of the user.
54
+ - **`full_name`** (`text`) — Full name of the user.
55
+ - **`state`** (`enum`) — State of the user.
56
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
57
+ - **`type`** (`enum`) **REQUIRED**
58
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
59
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
60
+ - ID type: `devu`, `sysu`, `svcacc`
61
+ - **`modified_date`** (`timestamp`) — Timestamp when the issue was last modified.
62
+ - **`owned_by`** (`[]composite`) **REQUIRED**
63
+ - Composite: `_gen:user-summary`
64
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
65
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
66
+ - **`display_picture`** (`composite`)
67
+ - Composite: `_gen:display_picture`
68
+ - **`email`** (`text`) — Email address of the user.
69
+ - **`full_name`** (`text`) — Full name of the user.
70
+ - **`state`** (`enum`) — State of the user.
71
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
72
+ - **`type`** (`enum`) **REQUIRED**
73
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
74
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
75
+ - ID type: `devu`, `sysu`, `svcacc`
76
+ - **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
77
+ - Allowed: `p0`, `p1`, `p2`, `p3`
78
+ - **`reported_by`** (`[]composite`)
79
+ - Composite: `_gen:user-summary`
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
+ - **`display_picture`** (`composite`)
83
+ - Composite: `_gen:display_picture`
84
+ - **`email`** (`text`) — Email address of the user.
85
+ - **`full_name`** (`text`) — Full name of the user.
86
+ - **`state`** (`enum`) — State of the user.
87
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
88
+ - **`type`** (`enum`) **REQUIRED**
89
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
90
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
91
+ - ID type: `devu`, `sysu`, `svcacc`
92
+ - **`sprint`** (`composite`) — Vista group item.
93
+ - Composite: `_gen:sprint`
94
+ - **`end_date`** (`timestamp`) — Timestamp when the vista ends.
95
+ - **`name`** (`text`) **REQUIRED** — Name of the group.
96
+ - **`start_date`** (`timestamp`) — Timestamp when the vista starts.
97
+ - **`state`** (`enum`) — Defines the state of the group item.
98
+ - Allowed: `active`, `completed`, `planned`
99
+ - **`type`** (`enum`) **REQUIRED** — Type of the group object.
100
+ - Allowed: `curated`, `dynamic`
101
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
102
+ - ID type: `vista_group_item`
103
+ - **`stage`** (`composite`) — Current stage of the issue.
104
+ - Composite: `_gen:stage`
105
+ - **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
106
+ - **`stage`** (`composite`) — The stage of the issue.
107
+ - Composite: `stage.stage`
108
+ - **`state_display_name`** (`text`) — Display name for current state.
109
+ - **`tags`** (`[]composite`) — Tags associated with the issue.
110
+ - Composite: `_gen:tags`
111
+ - **`tag`** (`composite`)
112
+ - Composite: `_gen:tag`
113
+ - **`target_close_date`** (`timestamp`) — Timestamp when the issue is expected to be complete.
114
+ - **`target_start_date`** (`timestamp`) — Target start date for the issue.
115
+ - **`title`** (`text`) **REQUIRED** — Title of the issue.
116
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
117
+ - ID type: `issue`
@@ -0,0 +1,23 @@
1
+ # `get_kg_schema` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`include_fields`** (`bool`) — Whether to include detailed field information in the response.
6
+ - **`kg_allowlist`** (`[]tokens`) — The knowledge graph nodes to allowlist. Use regex patterns to match dataset names here. Example: ['prod_*', 'users_*']
7
+ - **`kg_blocklist`** (`[]tokens`) — The knowledge graph nodes to blocklist. Use regex patterns to match dataset names here. Blocking is done on top of the allowlist filtered results i.e. blocking has higher precedence than allowing.
8
+
9
+ ## Output Port: `output`
10
+
11
+ - **`table_schemas`** (`[]composite`) **REQUIRED** — The list of table schemas.
12
+ - Composite: `table_schema`
13
+ - **`name`** (`tokens`) **REQUIRED** — The name of the table.
14
+ - **`id`** (`id`) **REQUIRED** — The ID of the table.
15
+ - ID type: `dataset`
16
+ - **`status`** (`enum`) **REQUIRED** — The status of the table.
17
+ - Allowed: `draft`, `published`
18
+ - **`description`** (`text`) **REQUIRED** — Human-readable description of the table.
19
+ - **`fields`** (`[]composite`) — Array of fields defining the table structure.
20
+ - Composite: `table_field`
21
+ - **`parent_entity_type`** (`tokens`) — Type of entity this table extends if any.
22
+ - **`primary_entity_types`** (`[]tokens`) — Types of entities this table masters.
23
+ - **`related_entity_types`** (`[]tokens`) — Types of entities this table relates to.
@@ -0,0 +1,87 @@
1
+ # `get_meeting` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the meeting.
6
+ - ID type: `meeting`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`channel`** (`enum`) — The channel of meeting.
11
+ - Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
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
+ - **`full_name`** (`text`) — Full name of the user.
18
+ - **`state`** (`enum`) — State of the user.
19
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
20
+ - **`type`** (`enum`) **REQUIRED**
21
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
22
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
23
+ - ID type: `devu`, `sysu`, `svcacc`
24
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
25
+ - **`description`** (`text`) — Description of the meeting.
26
+ - **`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.
27
+ - Allowed: `incoming`, `internal`, `outgoing`
28
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
29
+ - **`ended_date`** (`timestamp`) — Time at which meeting ended.
30
+ - **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
31
+ - **`external_url`** (`text`) — External platform URL of the meeting
32
+ - **`members`** (`[]composite`) **REQUIRED**
33
+ - Composite: `_gen:user-summary`
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
+ - **`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.
38
+ - **`full_name`** (`text`) — Full name of the user.
39
+ - **`rev_org`** (`composite`)
40
+ - Composite: `_gen:rev_org`
41
+ - **`state`** (`enum`) — State of the user.
42
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
43
+ - **`type`** (`enum`) **REQUIRED**
44
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
45
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
46
+ - ID type: `devu`, `sysu`, `svcacc`, `revu`
47
+ - **`modified_by`** (`composite`)
48
+ - Composite: `_gen:modified_by`
49
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
50
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
51
+ - **`email`** (`text`) — Email address of the user.
52
+ - **`full_name`** (`text`) — Full name of the user.
53
+ - **`state`** (`enum`) — State of the user.
54
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
55
+ - **`type`** (`enum`) **REQUIRED**
56
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
57
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
58
+ - ID type: `devu`, `sysu`, `svcacc`
59
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
60
+ - **`organizer`** (`composite`)
61
+ - Composite: `_gen:organizer`
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
+ - **`email`** (`text`) — Email address of the user.
65
+ - **`full_name`** (`text`) — Full name of the user.
66
+ - **`state`** (`enum`) — State of the user.
67
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
68
+ - **`type`** (`enum`) **REQUIRED**
69
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
70
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
71
+ - ID type: `devu`, `sysu`, `svcacc`, `revu`
72
+ - **`scheduled_date`** (`timestamp`) — Time at which meeting was scheduled to start.
73
+ - **`state`** (`enum`) — The state of meeting.
74
+ - Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
75
+ - **`tags`** (`[]composite`) — Tags associated with the meeting.
76
+ - Composite: `_gen:tags`
77
+ - **`tag`** (`composite`)
78
+ - Composite: `_gen:tag`
79
+ - **`title`** (`text`) — Title of the meeting object.
80
+ - **`visibility`** (`composite`) — The properties of an enum value.
81
+ - Composite: `_gen:visibility`
82
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
83
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
84
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
85
+ - **`value`** (`json_value`) — The actual value of the enum value.
86
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
87
+ - ID type: `meeting`
@@ -0,0 +1,20 @@
1
+ # `get_metric_trackers` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`metric`** (`id`) **REQUIRED** — The ID of the metric that is being tracked.
6
+ - ID type: `metric_definition`
7
+ - **`object`** (`id`) **REQUIRED** — The ID of the underlying object on which the metric is being tracked.
8
+ - ID type: `conversation`, `incident`, `issue`, `ticket`
9
+
10
+ ## Output Port: `output`
11
+
12
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
13
+ - **`last_started_at`** (`timestamp`) — The time the metric was last started if it's in a running state.
14
+ - **`status`** (`enum`) **REQUIRED** — The current status of the metric.
15
+ - Allowed: `completed`, `paused`, `running`
16
+ - **`time_consumed`** (`int`) — The amount of time already consumed when the metric was last stopped. Units are same as present in metric definition.
17
+ - **`type`** (`enum`) **REQUIRED**
18
+ - Allowed: `time_metric_tracker`
19
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
20
+ - ID type: `metric_tracker`
@@ -0,0 +1,29 @@
1
+ # `get_node_schema` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The ID of the table for which to get the schema.
6
+ - ID type: `dataset`
7
+
8
+ ## Output Port: `output`
9
+
10
+ - **`name`** (`tokens`) **REQUIRED** — The name of the table.
11
+ - **`id`** (`id`) **REQUIRED** — The ID of the table.
12
+ - ID type: `dataset`
13
+ - **`status`** (`enum`) **REQUIRED** — The status of the table.
14
+ - Allowed: `draft`, `published`
15
+ - **`description`** (`text`) **REQUIRED** — Human-readable description of the table.
16
+ - **`fields`** (`[]composite`) — Array of fields defining the table structure.
17
+ - Composite: `table_field`
18
+ - **`name`** (`tokens`) **REQUIRED** — The name of the field.
19
+ - **`type`** (`tokens`) **REQUIRED** — SQL-compatible data type, e.g., VARCHAR, INTEGER, STRUCT, ARRAY.
20
+ - **`description`** (`text`) **REQUIRED** — A human-readable description of the field.
21
+ - **`enum`** (`composite`) — Allowed values for this field, either static (embedded) or dynamic (external reference).
22
+ - Composite: `table_enum`
23
+ - **`fields`** (`[]composite`) — For STRUCT types, defines nested field names; for ARRAY of STRUCT, defines element structure.
24
+ - Composite: `table_field`
25
+ - **`is_primary_key`** (`bool`) — Whether this column is part of the primary key.
26
+ - **`id_types`** (`[]tokens`) — Types of IDs this field can contain.
27
+ - **`parent_entity_type`** (`tokens`) — Type of entity this table extends if any.
28
+ - **`primary_entity_types`** (`[]tokens`) — Types of entities this table masters.
29
+ - **`related_entity_types`** (`[]tokens`) — Types of entities this table relates to.
@@ -0,0 +1,93 @@
1
+ # `get_opportunity` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the opportunity.
6
+ - ID type: `opportunity`
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** — ID of an account.
15
+ - ID type: `account`
16
+ - **`actual_close_date`** (`timestamp`) — Timestamp when the opportunity was actually closed.
17
+ - **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
18
+ - Composite: `_gen:annual_contract_value`
19
+ - **`amount`** (`text`) — Amount of the money.
20
+ - **`currency`** (`text`) — Currency of the money.
21
+ - **`body`** (`text`) — The description of the opportunity.
22
+ - **`created_by`** (`composite`)
23
+ - Composite: `_gen:created_by`
24
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
25
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
26
+ - **`display_picture`** (`composite`)
27
+ - Composite: `_gen:display_picture`
28
+ - **`email`** (`text`) — Email address of the user.
29
+ - **`full_name`** (`text`) — Full name of the user.
30
+ - **`state`** (`enum`) — State of the user.
31
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
32
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
33
+ - ID type: `devu`, `sysu`, `svcacc`
34
+ - **`type`** (`enum`) **REQUIRED**
35
+ - Allowed: `dev_user`, `service_account`, `sys_user`
36
+ - **`created_date`** (`timestamp`) — Timestamp when the opportunity was created.
37
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
38
+ - **`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).
39
+ - **`modified_by`** (`composite`)
40
+ - Composite: `_gen:modified_by`
41
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
42
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
43
+ - **`display_picture`** (`composite`)
44
+ - Composite: `_gen:display_picture`
45
+ - **`email`** (`text`) — Email address of the user.
46
+ - **`full_name`** (`text`) — Full name of the user.
47
+ - **`state`** (`enum`) — State of the user.
48
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
49
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
50
+ - ID type: `devu`, `sysu`, `svcacc`
51
+ - **`type`** (`enum`) **REQUIRED**
52
+ - Allowed: `dev_user`, `service_account`, `sys_user`
53
+ - **`modified_date`** (`timestamp`) — Timestamp when the opportunity was last modified.
54
+ - **`owned_by`** (`[]composite`) **REQUIRED**
55
+ - Composite: `_gen:user-summary`
56
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
57
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
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
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
63
+ - ID type: `devu`, `sysu`, `svcacc`
64
+ - **`type`** (`enum`) **REQUIRED**
65
+ - Allowed: `dev_user`, `service_account`, `sys_user`
66
+ - **`reported_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
+ - **`full_name`** (`text`) — Full name of the user.
72
+ - **`state`** (`enum`) — State of the user.
73
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
74
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
75
+ - ID type: `devu`, `sysu`, `svcacc`
76
+ - **`type`** (`enum`) **REQUIRED**
77
+ - Allowed: `dev_user`, `service_account`, `sys_user`
78
+ - **`stage`** (`composite`) — Describes the current stage of a opportunity
79
+ - Composite: `_gen:stage`
80
+ - **`name`** (`text`) **REQUIRED** — Describes the current stage of a opportunity
81
+ - **`state_display_name`** (`text`) — Display name for current state.
82
+ - **`tags`** (`[]composite`) — Tags associated with the object.
83
+ - Composite: `_gen:tags`
84
+ - **`tag`** (`composite`)
85
+ - Composite: `_gen:tag`
86
+ - **`target_close_date`** (`timestamp`) — Timestamp when the opportunity is expected to be closed.
87
+ - **`title`** (`text`) **REQUIRED** — Title of the opportunity.
88
+ - **`value`** (`composite`) — Money.
89
+ - Composite: `_gen:value`
90
+ - **`amount`** (`text`) — Amount of the money.
91
+ - **`currency`** (`text`) — Currency of the money.
92
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
93
+ - ID type: `opportunity`
@@ -0,0 +1,57 @@
1
+ # `get_org_user` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the organization user.
6
+ - ID type: `devu`
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
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
17
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
18
+ - **`display_picture`** (`composite`)
19
+ - Composite: `_gen:user-base-properties.display_picture`
20
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
21
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
22
+ - ID type: `artifact`
23
+ - **`email`** (`text`) — Email address of the user.
24
+ - **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
25
+ - **`full_name`** (`text`) — Full name of the user.
26
+ - **`job_history`** (`[]composite`) — Job history of the user.
27
+ - Composite: `_gen:job_history`
28
+ - **`employment_status`** (`composite`) — The properties of an enum value.
29
+ - Composite: `_gen:employment_status`
30
+ - **`end_date`** (`timestamp`) — The end date of the job, or not specified if current.
31
+ - **`is_current`** (`bool`) — Is this the current active job for the user.
32
+ - **`location`** (`text`) — The job location for the user.
33
+ - **`start_date`** (`timestamp`) — The start date of the job.
34
+ - **`title`** (`text`) — The job title for the user.
35
+ - **`phone_numbers`** (`[]text`) — Phone numbers of the user.
36
+ - **`reports_to`** (`composite`)
37
+ - Composite: `_gen:reports_to`
38
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
39
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
40
+ - **`email`** (`text`) — Email address of the user.
41
+ - **`full_name`** (`text`) — Full name of the user.
42
+ - **`state`** (`enum`) — State of the user.
43
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
44
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
45
+ - ID type: `devu`
46
+ - **`type`** (`enum`) **REQUIRED**
47
+ - Allowed: `dev_user`
48
+ - **`skills`** (`[]composite`) — Array of skills of the user.
49
+ - Composite: `_gen:skills`
50
+ - **`name`** (`text`) — Name of the skill.
51
+ - **`state`** (`enum`) — State of the user.
52
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
53
+ - **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
54
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
55
+ - ID type: `devu`
56
+ - **`job_title`** (`enum`) — Job title of the Dev User.
57
+ - Allowed: `customer_success_manager`, `cxo`, `designer`, `developer`, `head_of_support`, `operations`, `others`, `product_manager`, `qa`, `revenue_leader`... (12 total)
@@ -0,0 +1,40 @@
1
+ # `get_org_user_preference` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`id`** (`id`) **REQUIRED** — The id of the organization user.
6
+ - ID type: `devu`
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
+ - **`state`** (`enum`) — State of the user.
17
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
18
+ - **`id`** (`id`) **REQUIRED** — ID of the user.
19
+ - ID type: `devu`
20
+ - **`type`** (`enum`) **REQUIRED**
21
+ - Allowed: `dev_user`
22
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
23
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
24
+ - **`general_preferences`** (`composite`) — Preferences group for General settings.
25
+ - Composite: `_gen:general_preferences`
26
+ - **`availability`** (`composite`) — Preferences group for Availability.
27
+ - Composite: `_gen:availability`
28
+ - **`modified_by`** (`composite`)
29
+ - Composite: `_gen:modified_by`
30
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
31
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
32
+ - **`email`** (`text`) — Email address of 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
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
37
+ - ID type: `devu`
38
+ - **`type`** (`enum`) **REQUIRED**
39
+ - Allowed: `dev_user`
40
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.