@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,217 @@
1
+ # `loop_over_issues` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`actual_close_date`** (`composite`) — Provides ways to specify date ranges on objects.
6
+ - Composite: `_gen:actual_close_date`
7
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
8
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
9
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
10
+ - Allowed: `range`
11
+ - **`applies_to_part`** (`[]id`) — Filters for issues belonging to any of the provided parts.
12
+ - ID type: `capability`, `component`, `custom_part`, `enhancement`, `feature`, `linkable`, `microservice`, `product`, `runnable`
13
+ - **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
14
+ - Composite: `_gen:created_date`
15
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
16
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
17
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
18
+ - Allowed: `range`
19
+ - **`external_ref`** (`[]text`) — Filters for work with any of the provided external references.
20
+ - **`accounts`** (`[]id`) — Filters for issues with any of the provided accounts.
21
+ - ID type: `account`
22
+ - **`actual_start_date`** (`composite`) — Provides ways to specify date ranges on objects.
23
+ - Composite: `_gen:actual_start_date`
24
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
25
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
26
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
27
+ - Allowed: `range`
28
+ - **`group`** (`[]id`) — Filters for issues belonging to specific groups.
29
+ - ID type: `group`
30
+ - **`rev_orgs`** (`[]id`) — Filters for issues with any of the provided Rev organizations.
31
+ - ID type: `revo`
32
+ - **`sla_summary`** (`composite`) — The filter for SLA summary.
33
+ - Composite: `_gen:sla_summary`
34
+ - **`stage`** (`[]enum`) — Filters for records with any of the provided SLA stages.
35
+ - Allowed: `breached`, `completed`, `paused`, `running`, `warning`
36
+ - **`target_time`** (`composite`) — Provides ways to specify date ranges on objects.
37
+ - Composite: `_gen:target_time`
38
+ - **`sprint`** (`[]id`) — Filters for issues with any of the sprint.
39
+ - ID type: `vista_group_item`
40
+ - **`target_start_date`** (`composite`) — Provides ways to specify date ranges on objects.
41
+ - Composite: `_gen:target_start_date`
42
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
43
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
44
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
45
+ - Allowed: `range`
46
+ - **`modified_date`** (`composite`) — Provides ways to specify date ranges on objects.
47
+ - Composite: `_gen:modified_date`
48
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
49
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
50
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
51
+ - Allowed: `range`
52
+ - **`reported_by`** (`[]id`) — Filters for work reported by any of these users.
53
+ - ID type: `devu`, `revu`, `svcacc`, `sysu`
54
+ - **`sync_metadata`** (`composite`)
55
+ - Composite: `_gen:sync_metadata`
56
+ - **`external_reference`** (`[]text`) — Filters for issues with this specific external reference.
57
+ - **`last_sync_in`** (`composite`)
58
+ - Composite: `_gen:last_sync_in`
59
+ - **`last_sync_out`** (`composite`)
60
+ - Composite: `_gen:last_sync_out`
61
+ - **`origin_system`** (`[]text`) — Filters for issues synced from this specific origin system.
62
+ - **`tags`** (`[]id`) — Filters for work with any of the provided tags.
63
+ - ID type: `tag`
64
+ - **`target_close_date`** (`composite`) — Provides ways to specify date ranges on objects.
65
+ - Composite: `_gen:target_close_date`
66
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
67
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
68
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
69
+ - Allowed: `range`
70
+ - **`vista`** (`id`) — Filters for work belonging to the given vista.
71
+ - ID type: `vista`, `vista_group_item`
72
+ - **`owned_by`** (`[]id`) — Filters for issues owned by any of these users.
73
+ - ID type: `devu`, `sysu`, `svcacc`
74
+ - **`created_by`** (`[]id`) — Filters for issues created by any of these users.
75
+ - ID type: `devu`, `svcacc`, `sysu`
76
+ - **`limit`** (`int`) — The maximum number of issues to return. Maximum is 1000.
77
+ - **`stages`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
78
+ - ID type: `custom_stage`
79
+ - **`state`** (`[]uenum`) — Filters for issues with any of the provided states.
80
+
81
+ ## Input Port: `block_callback`
82
+
83
+ _No input fields (trigger or system-provided)._
84
+
85
+ ## Output Port: `block_start`
86
+
87
+ - **`id`** (`id`) **REQUIRED** — Current Issue.
88
+ - ID type: `issue`
89
+ - **`body`** (`text`) — The description of the issue.
90
+ - **`created_date`** (`timestamp`) — Timestamp when the object was created.
91
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
92
+ - **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
93
+ - **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
94
+ - **`target_start_date`** (`timestamp`) — Target start date for the object.
95
+ - **`title`** (`text`) **REQUIRED** — Title of the work object.
96
+ - **`applies_to_part`** (`composite`)
97
+ - Composite: `_gen:applies_to_part`
98
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
99
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
100
+ - **`type`** (`enum`) **REQUIRED**
101
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
102
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
103
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
104
+ - **`artifacts`** (`[]composite`)
105
+ - Composite: `_gen:artifact-summary`
106
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
107
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
108
+ - ID type: `artifact`
109
+ - **`created_by`** (`composite`)
110
+ - Composite: `_gen:created_by`
111
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
112
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
113
+ - **`display_picture`** (`composite`)
114
+ - Composite: `_gen:display_picture`
115
+ - **`email`** (`text`) — Email address of the user.
116
+ - **`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.
117
+ - **`full_name`** (`text`) — Full name of the user.
118
+ - **`rev_org`** (`composite`)
119
+ - Composite: `_gen:rev_org`
120
+ - **`state`** (`enum`) — State of the user.
121
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
122
+ - **`type`** (`enum`) **REQUIRED**
123
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
124
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
125
+ - ID type: `devu`, `sysu`, `svcacc`
126
+ - **`developed_with`** (`[]composite`)
127
+ - Composite: `_gen:part-summary`
128
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
129
+ - **`name`** (`text`) **REQUIRED** — Name of the part.
130
+ - **`type`** (`enum`) **REQUIRED**
131
+ - Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
132
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
133
+ - ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
134
+ - **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
135
+ - **`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).
136
+ - **`modified_by`** (`composite`)
137
+ - Composite: `_gen:modified_by`
138
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
139
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
140
+ - **`display_picture`** (`composite`)
141
+ - Composite: `_gen:display_picture`
142
+ - **`email`** (`text`) — Email address of the user.
143
+ - **`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.
144
+ - **`full_name`** (`text`) — Full name of the user.
145
+ - **`rev_org`** (`composite`)
146
+ - Composite: `_gen:rev_org`
147
+ - **`state`** (`enum`) — State of the user.
148
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
149
+ - **`type`** (`enum`) **REQUIRED**
150
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
151
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
152
+ - ID type: `devu`, `sysu`, `svcacc`
153
+ - **`owned_by`** (`[]composite`) **REQUIRED**
154
+ - Composite: `_gen:user-summary`
155
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
156
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
157
+ - **`display_picture`** (`composite`)
158
+ - Composite: `_gen:display_picture`
159
+ - **`email`** (`text`) — Email address of the user.
160
+ - **`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.
161
+ - **`full_name`** (`text`) — Full name of the user.
162
+ - **`rev_org`** (`composite`)
163
+ - Composite: `_gen:rev_org`
164
+ - **`state`** (`enum`) — State of the user.
165
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
166
+ - **`type`** (`enum`) **REQUIRED**
167
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
168
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
169
+ - ID type: `devu`, `sysu`, `svcacc`
170
+ - **`reported_by`** (`[]composite`)
171
+ - Composite: `_gen:user-summary`
172
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
173
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
174
+ - **`display_picture`** (`composite`)
175
+ - Composite: `_gen:display_picture`
176
+ - **`email`** (`text`) — Email address of the user.
177
+ - **`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.
178
+ - **`full_name`** (`text`) — Full name of the user.
179
+ - **`rev_org`** (`composite`)
180
+ - Composite: `_gen:rev_org`
181
+ - **`state`** (`enum`) — State of the user.
182
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
183
+ - **`type`** (`enum`) **REQUIRED**
184
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
185
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
186
+ - ID type: `devu`, `sysu`, `svcacc`
187
+ - **`sprint`** (`composite`) — Vista group item.
188
+ - Composite: `_gen:sprint`
189
+ - **`end_date`** (`timestamp`) — Timestamp when the vista ends.
190
+ - **`name`** (`text`) **REQUIRED** — Name of the group.
191
+ - **`start_date`** (`timestamp`) — Timestamp when the vista starts.
192
+ - **`state`** (`enum`) — Defines the state of the group item.
193
+ - Allowed: `active`, `completed`, `planned`
194
+ - **`type`** (`enum`) **REQUIRED** — Type of the group object.
195
+ - Allowed: `curated`, `dynamic`
196
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
197
+ - ID type: `vista_group_item`
198
+ - **`stage`** (`composite`) — Describes the current stage of a work item.
199
+ - Composite: `_gen:stage`
200
+ - **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
201
+ - **`stage`** (`composite`) — The stage of the issue.
202
+ - Composite: `stage.stage`
203
+ - **`state_display_name`** (`text`) — Display name for current state.
204
+ - **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
205
+ - Composite: `_gen:work-base-properties.sync_metadata`
206
+ - **`external_record_id`** (`text`) — ID of the record in the external system.
207
+ - **`external_record_type`** (`text`) — Type of the external record in the external system.
208
+ - **`external_reference`** (`text`) — External record URL.
209
+ - **`last_sync_in`** (`composite`) — Information about the sync to DevRev.
210
+ - Composite: `_gen:work-base-properties.sync_metadata.last_sync_in`
211
+ - **`last_sync_out`** (`composite`) — Information about the sync from DevRev.
212
+ - Composite: `_gen:last_sync_out`
213
+ - **`origin_system`** (`text`) — Where the record was first created.
214
+ - **`tags`** (`[]composite`) — Tags associated with the object.
215
+ - Composite: `_gen:tags`
216
+ - **`tag`** (`composite`)
217
+ - Composite: `_gen:tag`
@@ -0,0 +1,150 @@
1
+ # `loop_over_meetings` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
6
+ - Composite: `_gen:created_date`
7
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
8
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
9
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
10
+ - Allowed: `range`
11
+ - **`direction`** (`[]enum`) — Direction of the meetings to be fetched.
12
+ - Allowed: `incoming`, `internal`, `outgoing`
13
+ - **`ended_date`** (`composite`) — Provides ways to specify date ranges on objects.
14
+ - Composite: `_gen:ended_date`
15
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
16
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
17
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
18
+ - Allowed: `range`
19
+ - **`members`** (`[]id`) — Filter for meeting on specified Member Ids.
20
+ - ID type: `devu`, `group`, `revu`, `sysu`
21
+ - **`modified_date`** (`composite`) — Provides ways to specify date ranges on objects.
22
+ - Composite: `_gen:modified_date`
23
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
24
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
25
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
26
+ - Allowed: `range`
27
+ - **`scheduled_date`** (`composite`) — Provides ways to specify date ranges on objects.
28
+ - Composite: `_gen:scheduled_date`
29
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
30
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
31
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
32
+ - Allowed: `range`
33
+ - **`limit`** (`int`) — The maximum number of meetings to return. Maximum is 1000.
34
+ - **`tags`** (`[]id`) — Filters for meeting by tags.
35
+ - ID type: `tag`
36
+
37
+ ## Input Port: `block_callback`
38
+
39
+ _No input fields (trigger or system-provided)._
40
+
41
+ ## Output Port: `block_start`
42
+
43
+ - **`artifacts`** (`[]composite`)
44
+ - Composite: `_gen:artifact-summary`
45
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
46
+ - **`file`** (`composite`) — Defines a file object.
47
+ - Composite: `_gen:file`
48
+ - **`id`** (`id`) **REQUIRED** — Globally unique artifact ID.
49
+ - ID type: `artifact`
50
+ - **`channel`** (`enum`) — The channel of meeting.
51
+ - Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
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
+ - **`email`** (`text`) — Email address of the user.
57
+ - **`full_name`** (`text`) — Full name of the user.
58
+ - **`state`** (`enum`) — State of the user.
59
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
60
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
61
+ - ID type: `devu`, `sysu`, `svcacc`
62
+ - **`type`** (`enum`) **REQUIRED**
63
+ - Allowed: `dev_user`, `sys_user`, `service_account`
64
+ - **`created_date`** (`timestamp`) — Timestamp when the meeting was created.
65
+ - **`description`** (`text`) — Description of the meeting.
66
+ - **`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.
67
+ - Allowed: `incoming`, `internal`, `outgoing`
68
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
69
+ - **`ended_date`** (`timestamp`) — Time at which meeting ended.
70
+ - **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
71
+ - **`external_url`** (`text`) — External URL associated with the meeting.
72
+ - **`members`** (`[]composite`) **REQUIRED**
73
+ - Composite: `_gen:user-summary`
74
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
75
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
76
+ - **`email`** (`text`) — Email address of the user.
77
+ - **`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.
78
+ - **`full_name`** (`text`) — Full name of the user.
79
+ - **`rev_org`** (`composite`)
80
+ - Composite: `_gen:rev_org`
81
+ - **`state`** (`enum`) — State of the user.
82
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
83
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
84
+ - ID type: `devu`, `sysu`, `svcacc`
85
+ - **`type`** (`enum`) **REQUIRED**
86
+ - Allowed: `dev_user`, `sys_user`, `service_account`
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
+ - **`email`** (`text`) — Email address of the user.
92
+ - **`full_name`** (`text`) — Full name of the user.
93
+ - **`state`** (`enum`) — State of the user.
94
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
95
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
96
+ - ID type: `devu`, `sysu`, `svcacc`
97
+ - **`type`** (`enum`) **REQUIRED**
98
+ - Allowed: `dev_user`, `sys_user`, `svcacc`
99
+ - **`modified_date`** (`timestamp`) — Timestamp when the meeting was last modified.
100
+ - **`organizer`** (`composite`)
101
+ - Composite: `_gen:organizer`
102
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
103
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
104
+ - **`email`** (`text`) — Email address of the user.
105
+ - **`full_name`** (`text`) — Full name of the user.
106
+ - **`state`** (`enum`) — State of the user.
107
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
108
+ - **`type`** (`enum`) **REQUIRED**
109
+ - Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
110
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
111
+ - ID type: `devu`, `sysu`, `revu`, `svcacc`
112
+ - **`parent`** (`composite`)
113
+ - Composite: `_gen:parent`
114
+ - **`account`** (`composite`)
115
+ - Composite: `_gen:account`
116
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
117
+ - **`display_name`** (`text`) — Name of the Organization.
118
+ - **`owned_by`** (`[]composite`) **REQUIRED**
119
+ - Composite: `_gen:user-summary`
120
+ - **`stage`** (`composite`) — Describes the current stage of a work item.
121
+ - Composite: `_gen:stage`
122
+ - **`state_display_name`** (`text`) — Display name for current state.
123
+ - **`type`** (`enum`) **REQUIRED**
124
+ - Allowed: `account`, `opportunity`
125
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
126
+ - ID type: `account`, `opportunity`
127
+ - **`recording_url`** (`text`) — Recording URL of the meeting.
128
+ - **`scheduled_date`** (`timestamp`) — Timestamp when the meeting is expected to be closed.
129
+ - **`state`** (`enum`) — The state of meeting.
130
+ - Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
131
+ - **`tags`** (`[]composite`) — Tags associated with the meeting.
132
+ - Composite: `_gen:tags`
133
+ - **`tag`** (`composite`)
134
+ - Composite: `_gen:tag`
135
+ - **`title`** (`text`) — Title of the meeting.
136
+ - **`transcript`** (`composite`)
137
+ - Composite: `_gen:transcript`
138
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
139
+ - **`file`** (`composite`) — Defines a file object.
140
+ - Composite: `_gen:file`
141
+ - **`id`** (`id`) **REQUIRED** — ID of the artifact containing the transcript.
142
+ - ID type: `artifact`
143
+ - **`visibility`** (`composite`) — The properties of an enum value.
144
+ - Composite: `_gen:visibility`
145
+ - **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
146
+ - **`label`** (`text`) **REQUIRED** — The display label of the enum value.
147
+ - **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
148
+ - **`value`** (`json_value`) — The actual value of the enum value.
149
+ - **`id`** (`id`) **REQUIRED** — The meeting which was created.
150
+ - ID type: `meeting`
@@ -0,0 +1,161 @@
1
+ # `loop_over_opportunity` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`actual_close_date`** (`composite`) — Filter for timestamp when the opportunity was actually closed.
6
+ - Composite: `_gen:actual_close_date`
7
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
8
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
9
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
10
+ - Allowed: `range`
11
+ - **`applies_to_part`** (`[]id`) — Filters for opportunities belonging to any of the provided parts.
12
+ - ID type: `capability`, `component`, `custom_part`, `enhancement`, `feature`, `linkable`, `microservice`, `product`, `runnable`
13
+ - **`created_date`** (`composite`) — Filter for timestamp when the opportunity was created.
14
+ - Composite: `_gen:created_date`
15
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
16
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
17
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
18
+ - Allowed: `range`
19
+ - **`external_ref`** (`[]text`) — Filters for opportunities with any of the provided external references.
20
+ - **`modified_date`** (`composite`) — Filter for timestamp when the opportunity was last modified.
21
+ - Composite: `_gen:modified_date`
22
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
23
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
24
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
25
+ - Allowed: `range`
26
+ - **`account`** (`[]id`) — Filters for opportunities belonging to any of the provided accounts.
27
+ - ID type: `account`
28
+ - **`contacts`** (`[]id`) — Filters for opportunities with any of the provided contacts.
29
+ - ID type: `revu`
30
+ - **`reported_by`** (`[]id`) — Filters for opportunities reported by any of these users
31
+ - ID type: `devu`, `revu`, `svcacc`, `sysu`
32
+ - **`sync_metadata`** (`composite`)
33
+ - Composite: `_gen:sync_metadata`
34
+ - **`external_reference`** (`[]text`) — Filters for issues with this specific external reference.
35
+ - **`last_sync_in`** (`composite`)
36
+ - Composite: `_gen:last_sync_in`
37
+ - **`last_sync_out`** (`composite`)
38
+ - Composite: `_gen:last_sync_out`
39
+ - **`origin_system`** (`[]text`) — Filters for issues synced from this specific origin system.
40
+ - **`tags`** (`[]id`) — Filters for opportunities with any of the provided tags.
41
+ - ID type: `tag`
42
+ - **`target_close_date`** (`composite`) — Filter for timestamp when the opportunity is expected to be closed.
43
+ - Composite: `_gen:target_close_date`
44
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
45
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
46
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
47
+ - Allowed: `range`
48
+ - **`vista`** (`id`) — Filters for work belonging to the given vista.
49
+ - ID type: `vista`, `vista_group_item`
50
+ - **`limit`** (`int`) — The maximum number of opportunities to return. Maximum is 1000.
51
+ - **`modified_by`** (`[]id`) — Filters for opportunities modified by any of these users.
52
+ - ID type: `devu`, `sysu`, `svcacc`
53
+ - **`created_by`** (`[]id`) — Filters for opportunities created by any of these users.
54
+ - ID type: `devu`, `sysu`, `svcacc`
55
+ - **`owned_by`** (`[]id`) — Filters for opportunities owned by any of these users.
56
+ - ID type: `devu`, `sysu`, `svcacc`
57
+ - **`stages`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
58
+ - ID type: `custom_stage`
59
+
60
+ ## Input Port: `block_callback`
61
+
62
+ _No input fields (trigger or system-provided)._
63
+
64
+ ## Output Port: `block_start`
65
+
66
+ - **`account`** (`composite`)
67
+ - Composite: `_gen:account`
68
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
69
+ - **`display_name`** (`text`) — Name of the Organization.
70
+ - **`id`** (`id`) **REQUIRED** — ID of an account.
71
+ - ID type: `account`
72
+ - **`actual_close_date`** (`timestamp`) — Timestamp when the opportunity was actually closed.
73
+ - **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
74
+ - Composite: `_gen:annual_contract_value`
75
+ - **`amount`** (`text`) — Amount of the money.
76
+ - **`currency`** (`text`) — Currency of the money.
77
+ - **`body`** (`text`) — The description of the opportunity.
78
+ - **`created_by`** (`composite`)
79
+ - Composite: `_gen:created_by`
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
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
89
+ - ID type: `devu`, `sysu`, `svcacc`
90
+ - **`type`** (`enum`) **REQUIRED**
91
+ - Allowed: `dev_user`, `service_account`, `sys_user`
92
+ - **`created_date`** (`timestamp`) — Timestamp when the opportunity was created.
93
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
94
+ - **`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).
95
+ - **`modified_by`** (`composite`)
96
+ - Composite: `_gen:modified_by`
97
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
98
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
99
+ - **`display_picture`** (`composite`)
100
+ - Composite: `_gen:display_picture`
101
+ - **`email`** (`text`) — Email address of the user.
102
+ - **`full_name`** (`text`) — Full name of the user.
103
+ - **`state`** (`enum`) — State of the user.
104
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
105
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
106
+ - ID type: `devu`, `sysu`, `svcacc`
107
+ - **`type`** (`enum`) **REQUIRED**
108
+ - Allowed: `dev_user`, `service_account`, `sys_user`
109
+ - **`modified_date`** (`timestamp`) — Timestamp when the opportunity was last modified.
110
+ - **`owned_by`** (`[]composite`) **REQUIRED**
111
+ - Composite: `_gen:user-summary`
112
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
113
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
114
+ - **`email`** (`text`) — Email address of the user.
115
+ - **`full_name`** (`text`) — Full name of the user.
116
+ - **`state`** (`enum`) — State of the user.
117
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
118
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
119
+ - ID type: `devu`, `sysu`, `svcacc`
120
+ - **`type`** (`enum`) **REQUIRED**
121
+ - Allowed: `dev_user`, `service_account`, `sys_user`
122
+ - **`reported_by`** (`[]composite`)
123
+ - Composite: `_gen:user-summary`
124
+ - **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
125
+ - **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
126
+ - **`email`** (`text`) — Email address of the user.
127
+ - **`full_name`** (`text`) — Full name of the user.
128
+ - **`state`** (`enum`) — State of the user.
129
+ - Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
130
+ - **`id`** (`id`) **REQUIRED** — The id of the user.
131
+ - ID type: `devu`, `sysu`, `svcacc`
132
+ - **`type`** (`enum`) **REQUIRED**
133
+ - Allowed: `dev_user`, `service_account`, `sys_user`
134
+ - **`stage`** (`composite`) — Describes the current stage of a work item.
135
+ - Composite: `_gen:stage`
136
+ - **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
137
+ - **`stage`** (`composite`) — The stage of the opportunity.
138
+ - Composite: `stage.stage`
139
+ - **`state_display_name`** (`text`) — Display name for current state.
140
+ - **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
141
+ - Composite: `_gen:work-base-properties.sync_metadata`
142
+ - **`external_record_id`** (`text`) — ID of the record in the external system.
143
+ - **`external_record_type`** (`text`) — Type of the external record in the external system.
144
+ - **`external_reference`** (`text`) — External record URL.
145
+ - **`last_sync_in`** (`composite`) — Information about the sync to DevRev.
146
+ - Composite: `_gen:work-base-properties.sync_metadata.last_sync_in`
147
+ - **`last_sync_out`** (`composite`) — Information about the sync from DevRev.
148
+ - Composite: `_gen:last_sync_out`
149
+ - **`origin_system`** (`text`) — Where the record was first created.
150
+ - **`tags`** (`[]composite`) — Tags associated with the object.
151
+ - Composite: `_gen:tags`
152
+ - **`tag`** (`composite`)
153
+ - Composite: `_gen:tag`
154
+ - **`target_close_date`** (`timestamp`) — Timestamp when the opportunity is expected to be closed.
155
+ - **`title`** (`text`) **REQUIRED** — Title of the opportunity.
156
+ - **`value`** (`composite`) — Money.
157
+ - Composite: `_gen:value`
158
+ - **`amount`** (`text`) — Amount of the money.
159
+ - **`currency`** (`text`) — Currency of the money.
160
+ - **`id`** (`id`) **REQUIRED** — Globally unique object ID.
161
+ - ID type: `opportunity`
@@ -0,0 +1,50 @@
1
+ # `loop_over_sprints` — Schema Reference
2
+
3
+ ## Input Port: `input`
4
+
5
+ - **`applies_to_part`** (`composite`) — The filter for applies to part.
6
+ - Composite: `_gen:applies_to_part`
7
+ - **`include_child_parts`** (`bool`) — Whether to include items belonging to children of any of the provided parts.
8
+ - **`parts`** (`[]id`) **REQUIRED** — Part IDs to filter on.
9
+ - ID type: `product`, `feature`, `capability`, `enhancement`, `runnable`, `linkable`
10
+ - **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
11
+ - Composite: `_gen:created_date`
12
+ - **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
13
+ - **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
14
+ - **`type`** (`enum`) **REQUIRED** — Type of date filter.
15
+ - Allowed: `range`
16
+ - **`parent_id`** (`[]id`) — Parent Sprint Board ID
17
+ - ID type: `vista`
18
+ - **`sort_by`** (`[]uenum`) — Fields to sort the sprints by.
19
+ - **`state`** (`[]enum`) — Denotes the state of the sprint
20
+ - Allowed: `active`, `completed`, `planned`
21
+ - **`limit`** (`int`) — The maximum number of sprints to return.Maximum is 1000.
22
+ - **`created_by`** (`[]id`) — Filters for sprints created by any of these users.
23
+ - ID type: `devu`, `svcacc`, `sysu`
24
+
25
+ ## Input Port: `block_callback`
26
+
27
+ _No input fields (trigger or system-provided)._
28
+
29
+ ## Output Port: `block_start`
30
+
31
+ - **`end_date`** (`timestamp`) — Timestamp when the vista group item ends.
32
+ - **`name`** (`text`) **REQUIRED** — Name of the group.
33
+ - **`object_type`** (`enum`) **REQUIRED** — Type of DevRev object for which the grouped vista is applicable.
34
+ - Allowed: `conversations`, `parts`, `works`
35
+ - **`parent`** (`composite`)
36
+ - Composite: `_gen:parent`
37
+ - **`display_id`** (`text`) **REQUIRED** — Human-readable object ID unique to the Dev organization.
38
+ - **`flavor`** (`enum`) — Denotes the use case of the vista.
39
+ - Allowed: `nnl`, `sprint_board`, `support_inbox`
40
+ - **`id`** (`id`) **REQUIRED** — Parent vista ID.
41
+ - ID type: `vista`
42
+ - **`name`** (`text`) **REQUIRED** — Name of the parent vista.
43
+ - **`type`** (`text`) **REQUIRED** — Type of the parent vista.
44
+ - **`start_date`** (`timestamp`) — Timestamp when the vista group item starts.
45
+ - **`state`** (`enum`) — Defines the state of the group item.
46
+ - Allowed: `active`, `completed`, `planned`
47
+ - **`type`** (`enum`) **REQUIRED** — Type of conversations vista group item.
48
+ - Allowed: `curated`, `dynamic`
49
+ - **`id`** (`id`) **REQUIRED** — The ID of the Sprint
50
+ - ID type: `vista_group_item`