@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.
- package/README.md +37 -0
- package/bin/install.mjs +158 -0
- package/package.json +33 -0
- package/skills/account-evaluation/account-evaluation.md +64 -0
- package/skills/account-research/account-research.md +323 -0
- package/skills/account-research/references/signals-guide.md +52 -0
- package/skills/create-workflow-template/create-workflow-template.md +1091 -0
- package/skills/create-workflow-template/examples/3592-Generate rca from pia-template.json +1 -0
- package/skills/create-workflow-template/examples/4392-Async opportunity review agent-template.json +1 -0
- package/skills/create-workflow-template/examples/4441-Ticket escalator from customer message-template.json +1 -0
- package/skills/create-workflow-template/examples/4505-Auto-update issue tcd as end of sprint date-template.json +1 -0
- package/skills/create-workflow-template/examples/5040-Devrevu - enablement journey - poc emails-template.json +1 -0
- package/skills/create-workflow-template/examples/5158-Devrevu - enablement journey - mailing for non enablement journey users-template.json +1 -0
- package/skills/create-workflow-template/examples/5216-Account segment missing notification-template.json +1 -0
- package/skills/create-workflow-template/examples/working-csat-score-on-ticket-resolved.json +1 -0
- package/skills/create-workflow-template/examples/working-enhancement-replace-agent.json +1 -0
- package/skills/create-workflow-template/examples/working-invoke-code-sample.json +1 -0
- package/skills/create-workflow-template/examples/working-loop-variable-sample.json +1 -0
- package/skills/create-workflow-template/operations/actions.md +2919 -0
- package/skills/create-workflow-template/operations/blockings.md +38 -0
- package/skills/create-workflow-template/operations/controls.md +108 -0
- package/skills/create-workflow-template/operations/schema-index.md +166 -0
- package/skills/create-workflow-template/operations/schemas/account_created.md +58 -0
- package/skills/create-workflow-template/operations/schemas/account_updated.md +73 -0
- package/skills/create-workflow-template/operations/schemas/add_comment.md +29 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_started.md +33 -0
- package/skills/create-workflow-template/operations/schemas/airdrop_sync_run_status_updated.md +35 -0
- package/skills/create-workflow-template/operations/schemas/article_created.md +96 -0
- package/skills/create-workflow-template/operations/schemas/article_updated.md +135 -0
- package/skills/create-workflow-template/operations/schemas/ask_ai.md +11 -0
- package/skills/create-workflow-template/operations/schemas/classify_object.md +22 -0
- package/skills/create-workflow-template/operations/schemas/contact_created.md +43 -0
- package/skills/create-workflow-template/operations/schemas/contact_updated.md +65 -0
- package/skills/create-workflow-template/operations/schemas/conversation_created.md +108 -0
- package/skills/create-workflow-template/operations/schemas/conversation_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/conversation_updated.md +130 -0
- package/skills/create-workflow-template/operations/schemas/convert_conversation_to_ticket.md +13 -0
- package/skills/create-workflow-template/operations/schemas/create_account.md +62 -0
- package/skills/create-workflow-template/operations/schemas/create_article.md +79 -0
- package/skills/create-workflow-template/operations/schemas/create_brand.md +42 -0
- package/skills/create-workflow-template/operations/schemas/create_contact.md +65 -0
- package/skills/create-workflow-template/operations/schemas/create_dm.md +53 -0
- package/skills/create-workflow-template/operations/schemas/create_enhancement.md +63 -0
- package/skills/create-workflow-template/operations/schemas/create_incident.md +136 -0
- package/skills/create-workflow-template/operations/schemas/create_issue.md +150 -0
- package/skills/create-workflow-template/operations/schemas/create_meeting.md +105 -0
- package/skills/create-workflow-template/operations/schemas/create_opportunity.md +123 -0
- package/skills/create-workflow-template/operations/schemas/create_ticket.md +184 -0
- package/skills/create-workflow-template/operations/schemas/csat_response_received.md +73 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_created.md +54 -0
- package/skills/create-workflow-template/operations/schemas/dev_user_updated.md +99 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_created.md +46 -0
- package/skills/create-workflow-template/operations/schemas/enhancement_updated.md +89 -0
- package/skills/create-workflow-template/operations/schemas/evaluate_sentiment.md +14 -0
- package/skills/create-workflow-template/operations/schemas/execute_metric_action.md +11 -0
- package/skills/create-workflow-template/operations/schemas/feature_created.md +40 -0
- package/skills/create-workflow-template/operations/schemas/for_each.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_account.md +59 -0
- package/skills/create-workflow-template/operations/schemas/get_airdrop_sync_unit.md +32 -0
- package/skills/create-workflow-template/operations/schemas/get_brand.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md +13 -0
- package/skills/create-workflow-template/operations/schemas/get_conversation.md +120 -0
- package/skills/create-workflow-template/operations/schemas/get_customer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/get_enhancement.md +66 -0
- package/skills/create-workflow-template/operations/schemas/get_feature.md +56 -0
- package/skills/create-workflow-template/operations/schemas/get_incident.md +85 -0
- package/skills/create-workflow-template/operations/schemas/get_issue.md +117 -0
- package/skills/create-workflow-template/operations/schemas/get_kg_schema.md +23 -0
- package/skills/create-workflow-template/operations/schemas/get_meeting.md +87 -0
- package/skills/create-workflow-template/operations/schemas/get_metric_trackers.md +20 -0
- package/skills/create-workflow-template/operations/schemas/get_node_schema.md +29 -0
- package/skills/create-workflow-template/operations/schemas/get_opportunity.md +93 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user.md +57 -0
- package/skills/create-workflow-template/operations/schemas/get_org_user_preference.md +40 -0
- package/skills/create-workflow-template/operations/schemas/get_part.md +55 -0
- package/skills/create-workflow-template/operations/schemas/get_self.md +54 -0
- package/skills/create-workflow-template/operations/schemas/get_session_details.md +45 -0
- package/skills/create-workflow-template/operations/schemas/get_sprint_board.md +103 -0
- package/skills/create-workflow-template/operations/schemas/get_ticket.md +136 -0
- package/skills/create-workflow-template/operations/schemas/get_workspace.md +21 -0
- package/skills/create-workflow-template/operations/schemas/go_back.md +13 -0
- package/skills/create-workflow-template/operations/schemas/http.md +38 -0
- package/skills/create-workflow-template/operations/schemas/hybrid_search.md +144 -0
- package/skills/create-workflow-template/operations/schemas/if_else.md +16 -0
- package/skills/create-workflow-template/operations/schemas/incident_created.md +88 -0
- package/skills/create-workflow-template/operations/schemas/incident_updated.md +126 -0
- package/skills/create-workflow-template/operations/schemas/init_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/invoice_created.md +21 -0
- package/skills/create-workflow-template/operations/schemas/invoice_updated.md +41 -0
- package/skills/create-workflow-template/operations/schemas/invoke_code.md +132 -0
- package/skills/create-workflow-template/operations/schemas/issue_created.md +105 -0
- package/skills/create-workflow-template/operations/schemas/issue_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/issue_updated.md +172 -0
- package/skills/create-workflow-template/operations/schemas/link_incident_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/link_ticket_with_issue.md +14 -0
- package/skills/create-workflow-template/operations/schemas/list_enhancements.md +74 -0
- package/skills/create-workflow-template/operations/schemas/list_issues.md +108 -0
- package/skills/create-workflow-template/operations/schemas/list_sessions.md +79 -0
- package/skills/create-workflow-template/operations/schemas/list_sprint.md +29 -0
- package/skills/create-workflow-template/operations/schemas/list_web_sessions.md +87 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_accounts.md +106 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_articles.md +126 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_customers.md +88 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_dev_users.md +75 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_enhancements.md +112 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_incidents.md +113 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_issues.md +217 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_meetings.md +150 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_opportunity.md +161 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_sprints.md +50 -0
- package/skills/create-workflow-template/operations/schemas/loop_over_tickets.md +203 -0
- package/skills/create-workflow-template/operations/schemas/manual_trigger.md +11 -0
- package/skills/create-workflow-template/operations/schemas/meeting_created.md +116 -0
- package/skills/create-workflow-template/operations/schemas/meeting_updated.md +152 -0
- package/skills/create-workflow-template/operations/schemas/oasis_sql_execute.md +11 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_created.md +92 -0
- package/skills/create-workflow-template/operations/schemas/opportunity_updated.md +124 -0
- package/skills/create-workflow-template/operations/schemas/pick_user.md +16 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_created.md +44 -0
- package/skills/create-workflow-template/operations/schemas/question_answer_updated.md +75 -0
- package/skills/create-workflow-template/operations/schemas/recall_chats.md +13 -0
- package/skills/create-workflow-template/operations/schemas/router.md +15 -0
- package/skills/create-workflow-template/operations/schemas/send_notification.md +19 -0
- package/skills/create-workflow-template/operations/schemas/set_variable.md +67 -0
- package/skills/create-workflow-template/operations/schemas/sleep_for.md +12 -0
- package/skills/create-workflow-template/operations/schemas/sleep_until.md +17 -0
- package/skills/create-workflow-template/operations/schemas/sprint_updated.md +37 -0
- package/skills/create-workflow-template/operations/schemas/suggest_part.md +14 -0
- package/skills/create-workflow-template/operations/schemas/task_updated.md +79 -0
- package/skills/create-workflow-template/operations/schemas/test_example.md +16 -0
- package/skills/create-workflow-template/operations/schemas/ticket_created.md +136 -0
- package/skills/create-workflow-template/operations/schemas/ticket_sla_tracker_updated.md +46 -0
- package/skills/create-workflow-template/operations/schemas/ticket_updated.md +198 -0
- package/skills/create-workflow-template/operations/schemas/timeline_comment_created.md +70 -0
- package/skills/create-workflow-template/operations/schemas/update_account.md +68 -0
- package/skills/create-workflow-template/operations/schemas/update_article.md +95 -0
- package/skills/create-workflow-template/operations/schemas/update_brand.md +44 -0
- package/skills/create-workflow-template/operations/schemas/update_contact.md +53 -0
- package/skills/create-workflow-template/operations/schemas/update_conversation.md +149 -0
- package/skills/create-workflow-template/operations/schemas/update_enhancement.md +64 -0
- package/skills/create-workflow-template/operations/schemas/update_incident.md +156 -0
- package/skills/create-workflow-template/operations/schemas/update_issue.md +173 -0
- package/skills/create-workflow-template/operations/schemas/update_meeting.md +114 -0
- package/skills/create-workflow-template/operations/schemas/update_opportunity.md +137 -0
- package/skills/create-workflow-template/operations/schemas/update_question_answer.md +60 -0
- package/skills/create-workflow-template/operations/schemas/update_ticket.md +188 -0
- package/skills/create-workflow-template/operations/schemas/watch_ticket_for_updates.md +225 -0
- package/skills/create-workflow-template/operations/schemas/web_search.md +17 -0
- package/skills/create-workflow-template/operations/schemas/while.md +24 -0
- package/skills/create-workflow-template/operations/schemas/widget_created.md +75 -0
- package/skills/create-workflow-template/operations/schemas/widget_updated.md +98 -0
- package/skills/create-workflow-template/operations/schemas/workspace_created.md +20 -0
- package/skills/create-workflow-template/operations/triggers.md +1583 -0
- package/skills/customer-brief/customer-brief.md +66 -0
- package/skills/deal-review-meddpicc/deal-review-meddpicc.md +58 -0
- package/skills/next-step-for-opportunity/next-step-for-opportunity.md +55 -0
- package/skills/opportunity-feature-prioritizer/SKILL.md +183 -0
- package/skills/sales-call-plan-coach/sales-call-plan-coach.md +73 -0
- package/skills/sales-context/sales-context.md +44 -0
- package/skills/sales-search-and-lookup/sales-search-and-lookup.md +58 -0
- package/skills/skill-creator/SKILL.md +570 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/references/tool-patterns.md +290 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +247 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +328 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/trace-diagnosis/trace-diagnosis.md +186 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# `issue_updated` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
|
|
6
|
+
- Allowed: `applies_to_part`, `artifacts`, `body`, `developed_with`, `owned_by`, `priority`, `reported_by`, `sprint`, `stage`, `subtype`... (14 total)
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`id`** (`id`) **REQUIRED** — The issue which was updated.
|
|
11
|
+
- ID type: `issue`
|
|
12
|
+
- **`body`** (`text`) — The description of the issue.
|
|
13
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
14
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
15
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
16
|
+
- **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
|
|
17
|
+
- Allowed: `p0`, `p1`, `p2`, `p3`
|
|
18
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
|
|
19
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
20
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
21
|
+
- **`applies_to_part`** (`composite`)
|
|
22
|
+
- Composite: `_gen:applies_to_part`
|
|
23
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
24
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
25
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
26
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
27
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
28
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
29
|
+
- **`artifacts`** (`[]composite`)
|
|
30
|
+
- Composite: `_gen:artifact-summary`
|
|
31
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
32
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
33
|
+
- ID type: `artifact`
|
|
34
|
+
- **`created_by`** (`composite`)
|
|
35
|
+
- Composite: `_gen:created_by`
|
|
36
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
37
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
38
|
+
- **`display_picture`** (`composite`)
|
|
39
|
+
- Composite: `_gen:display_picture`
|
|
40
|
+
- **`email`** (`text`) — Email address of the user.
|
|
41
|
+
- **`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.
|
|
42
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
43
|
+
- **`rev_org`** (`composite`)
|
|
44
|
+
- Composite: `_gen:rev_org`
|
|
45
|
+
- **`state`** (`enum`) — State of the user.
|
|
46
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
47
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
48
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
50
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
51
|
+
- **`developed_with`** (`[]composite`)
|
|
52
|
+
- Composite: `_gen:part-summary`
|
|
53
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
54
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
55
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
56
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
57
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
58
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
59
|
+
- **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
|
|
60
|
+
- **`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).
|
|
61
|
+
- **`modified_by`** (`composite`)
|
|
62
|
+
- Composite: `_gen:modified_by`
|
|
63
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
64
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
65
|
+
- **`display_picture`** (`composite`)
|
|
66
|
+
- Composite: `_gen:display_picture`
|
|
67
|
+
- **`email`** (`text`) — Email address of the user.
|
|
68
|
+
- **`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.
|
|
69
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
70
|
+
- **`rev_org`** (`composite`)
|
|
71
|
+
- Composite: `_gen:rev_org`
|
|
72
|
+
- **`state`** (`enum`) — State of the user.
|
|
73
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
74
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
75
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
76
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
77
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
78
|
+
- **`old_issue`** (`composite`) — Old issue object
|
|
79
|
+
- Composite: `_gen:implicit:issue`
|
|
80
|
+
- **`applies_to_part`** (`composite`)
|
|
81
|
+
- Composite: `_gen:applies_to_part`
|
|
82
|
+
- **`artifacts`** (`[]composite`)
|
|
83
|
+
- Composite: `_gen:artifact-summary`
|
|
84
|
+
- **`body`** (`text`) — Body of the work object.
|
|
85
|
+
- **`created_by`** (`composite`)
|
|
86
|
+
- Composite: `_gen:created_by`
|
|
87
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
88
|
+
- **`developed_with`** (`[]composite`)
|
|
89
|
+
- Composite: `_gen:part-summary`
|
|
90
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
91
|
+
- **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
|
|
92
|
+
- **`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).
|
|
93
|
+
- **`modified_by`** (`composite`)
|
|
94
|
+
- Composite: `_gen:modified_by`
|
|
95
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
96
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
97
|
+
- Composite: `_gen:user-summary`
|
|
98
|
+
- **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
|
|
99
|
+
- Allowed: `p0`, `p1`, `p2`, `p3`
|
|
100
|
+
- **`reported_by`** (`[]composite`)
|
|
101
|
+
- Composite: `_gen:user-summary`
|
|
102
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
103
|
+
- Composite: `_gen:sprint`
|
|
104
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
105
|
+
- Composite: `_gen:stage`
|
|
106
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
107
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
108
|
+
- Composite: `_gen:tags`
|
|
109
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
|
|
110
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
111
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
112
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
113
|
+
- Allowed: `issue`, `opportunity`, `task`, `ticket`
|
|
114
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
115
|
+
- ID type: `issue`
|
|
116
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
117
|
+
- Composite: `_gen:user-summary`
|
|
118
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
119
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
120
|
+
- **`display_picture`** (`composite`)
|
|
121
|
+
- Composite: `_gen:display_picture`
|
|
122
|
+
- **`email`** (`text`) — Email address of the user.
|
|
123
|
+
- **`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.
|
|
124
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
125
|
+
- **`rev_org`** (`composite`)
|
|
126
|
+
- Composite: `_gen:rev_org`
|
|
127
|
+
- **`state`** (`enum`) — State of the user.
|
|
128
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
129
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
130
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
131
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
132
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
133
|
+
- **`reported_by`** (`[]composite`)
|
|
134
|
+
- Composite: `_gen:user-summary`
|
|
135
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
136
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
137
|
+
- **`display_picture`** (`composite`)
|
|
138
|
+
- Composite: `_gen:display_picture`
|
|
139
|
+
- **`email`** (`text`) — Email address of the user.
|
|
140
|
+
- **`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.
|
|
141
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
142
|
+
- **`rev_org`** (`composite`)
|
|
143
|
+
- Composite: `_gen:rev_org`
|
|
144
|
+
- **`state`** (`enum`) — State of the user.
|
|
145
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
146
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
147
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
148
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
149
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
150
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
151
|
+
- Composite: `_gen:sprint`
|
|
152
|
+
- **`end_date`** (`timestamp`) — Timestamp when the vista ends.
|
|
153
|
+
- **`name`** (`text`) **REQUIRED** — Name of the group.
|
|
154
|
+
- **`start_date`** (`timestamp`) — Timestamp when the vista starts.
|
|
155
|
+
- **`state`** (`enum`) — Defines the state of the group item.
|
|
156
|
+
- Allowed: `active`, `completed`, `planned`
|
|
157
|
+
- **`type`** (`enum`) **REQUIRED** — Type of the group object.
|
|
158
|
+
- Allowed: `curated`, `dynamic`
|
|
159
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
160
|
+
- ID type: `vista_group_item`
|
|
161
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
162
|
+
- Composite: `_gen:stage`
|
|
163
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
164
|
+
- **`stage`** (`composite`) — The stage of the issue.
|
|
165
|
+
- Composite: `stage.stage`
|
|
166
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
167
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
168
|
+
- Composite: `_gen:tags`
|
|
169
|
+
- **`tag`** (`composite`)
|
|
170
|
+
- Composite: `_gen:tag`
|
|
171
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
172
|
+
- Allowed: `issue`, `opportunity`, `task`, `ticket`
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# `link_incident_with_issue` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Links an incident with an issue.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`source`** (`id`) **REQUIRED** — ID of the incident.
|
|
8
|
+
- ID type: `incident`
|
|
9
|
+
- **`target`** (`id`) **REQUIRED** — ID of the issue.
|
|
10
|
+
- ID type: `issue`
|
|
11
|
+
|
|
12
|
+
## Output Port: `output`
|
|
13
|
+
|
|
14
|
+
No output fields defined (empty schema).
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# `link_ticket_with_issue` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Links a ticket with an issue.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`source`** (`id`) **REQUIRED** — ID of the ticket.
|
|
8
|
+
- ID type: `ticket`
|
|
9
|
+
- **`target`** (`id`) **REQUIRED** — ID of the issue.
|
|
10
|
+
- ID type: `issue`
|
|
11
|
+
|
|
12
|
+
## Output Port: `output`
|
|
13
|
+
|
|
14
|
+
No output fields defined (empty schema).
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# `list_enhancements` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`accounts`** (`[]id`) — Filters for enhancement by its accounts.
|
|
6
|
+
- ID type: `account`
|
|
7
|
+
- **`actual_close_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
8
|
+
- Composite: `_gen:actual_close_date_v2`
|
|
9
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
10
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
11
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
12
|
+
- Allowed: `range`
|
|
13
|
+
- **`actual_start_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
14
|
+
- Composite: `_gen:actual_start_date_v2`
|
|
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
|
+
- **`opportunities`** (`[]id`) — Filters for enhancement by its opportunities.
|
|
20
|
+
- ID type: `opportunity`
|
|
21
|
+
- **`stage_v2`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
|
|
22
|
+
- ID type: `custom_stage`
|
|
23
|
+
- **`target_close_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
24
|
+
- Composite: `_gen:target_close_date_v2`
|
|
25
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
26
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
27
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
28
|
+
- Allowed: `range`
|
|
29
|
+
- **`target_start_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
30
|
+
- Composite: `_gen:target_start_date_v2`
|
|
31
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
32
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
33
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
34
|
+
- Allowed: `range`
|
|
35
|
+
- **`tickets`** (`[]id`) — Filters for enhancement by its tickets.
|
|
36
|
+
- ID type: `ticket`
|
|
37
|
+
- **`parent_part`** (`composite`) — The filter for specifying parent part.
|
|
38
|
+
- Composite: `_gen:parent_part`
|
|
39
|
+
- **`level`** (`int`) — Number of levels to fetch the part hierarchy up to.
|
|
40
|
+
- **`parts`** (`[]id`) **REQUIRED** — Part IDs to fetch the hierarchy for.
|
|
41
|
+
- ID type: `capability`, `enhancement`, `feature`, `product`
|
|
42
|
+
- **`tags`** (`[]id`) — Filters for part with any of the provided tags.
|
|
43
|
+
- ID type: `tag`
|
|
44
|
+
- **`owned_by`** (`[]id`) — Filters for enhancements owned by any of these users.
|
|
45
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
46
|
+
- **`created_by`** (`[]id`) — Filters for enhancements created by any of these users.
|
|
47
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
48
|
+
- **`limit`** (`int`) — The maximum number of enhancements to return. The default value is 50 and maximum is 100.
|
|
49
|
+
|
|
50
|
+
## Output Port: `output`
|
|
51
|
+
|
|
52
|
+
- **`enhancements`** (`[]composite`) **REQUIRED**
|
|
53
|
+
- Composite: `_gen:part`
|
|
54
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
55
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
56
|
+
- **`created_by`** (`composite`)
|
|
57
|
+
- Composite: `_gen:created_by`
|
|
58
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
59
|
+
- **`description`** (`text`) — Description of the part.
|
|
60
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
61
|
+
- **`modified_by`** (`composite`)
|
|
62
|
+
- Composite: `_gen:modified_by`
|
|
63
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
64
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
65
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
66
|
+
- Composite: `_gen:user-summary`
|
|
67
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
68
|
+
- Composite: `_gen:tags`
|
|
69
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
70
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
71
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique enhancement ID.
|
|
72
|
+
- ID type: `enhancement`
|
|
73
|
+
- **`stage_v2`** (`composite`) — Describes the current stage of a object.
|
|
74
|
+
- Composite: `_gen:stage_v2`
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# `list_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 work 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
|
+
- **`tags`** (`[]id`) — Filters for work with any of the provided tags.
|
|
55
|
+
- ID type: `tag`
|
|
56
|
+
- **`target_close_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
57
|
+
- Composite: `_gen:target_close_date`
|
|
58
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
59
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
60
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
61
|
+
- Allowed: `range`
|
|
62
|
+
- **`vista`** (`id`) — Filters for work belonging to the given vista.
|
|
63
|
+
- ID type: `vista`, `vista_group_item`
|
|
64
|
+
- **`owned_by`** (`[]id`) — Filters for issues owned by any of these users.
|
|
65
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
66
|
+
- **`created_by`** (`[]id`) — Filters for issues created by any of these users.
|
|
67
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
68
|
+
- **`limit`** (`int`) — The maximum number of issues to return. The default value is 50 and maximum is 100.
|
|
69
|
+
- **`stages`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
|
|
70
|
+
- ID type: `custom_stage`
|
|
71
|
+
- **`state`** (`[]uenum`) — Filters for issues with any of the provided states.
|
|
72
|
+
|
|
73
|
+
## Output Port: `output`
|
|
74
|
+
|
|
75
|
+
- **`issues`** (`[]composite`) **REQUIRED**
|
|
76
|
+
- Composite: `_gen:work`
|
|
77
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the work was actually completed.
|
|
78
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
79
|
+
- **`applies_to_part`** (`composite`)
|
|
80
|
+
- Composite: `_gen:applies_to_part`
|
|
81
|
+
- **`body`** (`text`) — Body of the work object.
|
|
82
|
+
- **`created_by`** (`composite`)
|
|
83
|
+
- Composite: `_gen:created_by`
|
|
84
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
85
|
+
- **`developed_with`** (`[]composite`)
|
|
86
|
+
- Composite: `_gen:part-summary`
|
|
87
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
88
|
+
- **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
|
|
89
|
+
- **`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).
|
|
90
|
+
- **`modified_by`** (`composite`)
|
|
91
|
+
- Composite: `_gen:modified_by`
|
|
92
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
93
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
94
|
+
- Composite: `_gen:user-summary`
|
|
95
|
+
- **`reported_by`** (`[]composite`)
|
|
96
|
+
- Composite: `_gen:user-summary`
|
|
97
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
98
|
+
- Composite: `_gen:sprint`
|
|
99
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
100
|
+
- Composite: `_gen:stage`
|
|
101
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
102
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
103
|
+
- Composite: `_gen:tags`
|
|
104
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
|
|
105
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
106
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
107
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique enhancement ID.
|
|
108
|
+
- ID type: `issue`
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# `list_sessions` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`app_version`** (`[]text`) — List of app versions to filter mobile sessions.
|
|
6
|
+
- **`created_at`** (`composite`) — Date range filter for when the session was created.
|
|
7
|
+
- Composite: `_gen:created_at`
|
|
8
|
+
- **`after`** (`timestamp`) — Start of the date range for session creation (inclusive).
|
|
9
|
+
- **`before`** (`timestamp`) — End of the date range for session creation (inclusive).
|
|
10
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
11
|
+
- Allowed: `range`
|
|
12
|
+
- **`custom_events`** (`composite`) — Filters mobile sessions based on custom events recorded during the session.
|
|
13
|
+
- Composite: `_gen:custom_events`
|
|
14
|
+
- **`event_name`** (`[]text`) — List of custom event names to match within the mobile session.
|
|
15
|
+
- **`exception_class_name`** (`[]text`) — List of exception class names to filter by crash or ANR events.
|
|
16
|
+
- **`properties_filters`** (`[]composite`) — Filters applied on custom event properties using attribute-based conditions.
|
|
17
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter`
|
|
18
|
+
- **`device_model`** (`[]text`) — List of device models to filter mobile sessions.
|
|
19
|
+
- **`has_exception_occurred`** (`bool`) — Filter by exception occurrence.
|
|
20
|
+
- **`is_anr`** (`bool`) — Indicates whether the app became unresponsive (Application Not Responding).
|
|
21
|
+
- **`is_crash`** (`bool`) — Indicates whether the app crashed during the session.
|
|
22
|
+
- **`limit`** (`int`) — The maximum number of sessions to return. The default value is 20 and maximum is 100.
|
|
23
|
+
- **`manufacturer`** (`[]text`) — List of device manufacturers to filter mobile sessions.
|
|
24
|
+
- **`network_type`** (`[]text`) — List of network types to filter mobile sessions.
|
|
25
|
+
- **`os_version`** (`[]text`) — List of operating system versions to filter mobile sessions.
|
|
26
|
+
- **`rage_tap`** (`bool`) — Indicates whether the user performed rapid repeated clicks (rage taps) during the session.
|
|
27
|
+
- **`response_time_list`** (`composite`) — Filters mobile sessions based on API response times and network performance.
|
|
28
|
+
- Composite: `_gen:response_time_list`
|
|
29
|
+
- **`api_name`** (`[]text`) — List of API endpoint URLs involved in the session.
|
|
30
|
+
- **`request_properties`** (`[]composite`) — Filters applied on API request properties.
|
|
31
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter_585728df`
|
|
32
|
+
- **`response_properties`** (`[]composite`) — Filters applied on API response properties.
|
|
33
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter_585728df`
|
|
34
|
+
- **`round_trip_time`** (`composite`) — Total time taken for the API request and response cycle.
|
|
35
|
+
- Composite: `_gen:round_trip_time`
|
|
36
|
+
- **`rev_org`** (`[]id`) — List of workspace/organization IDs associated with the session.
|
|
37
|
+
- ID type: `revo`
|
|
38
|
+
- **`rev_user`** (`[]id`) — List of contact/user IDs associated with the session.
|
|
39
|
+
- ID type: `revu`
|
|
40
|
+
- **`screen_name`** (`[]text`) — List of screen names visited during the mobile session.
|
|
41
|
+
- **`session_attributes`** (`[]composite`) — Filters mobile sessions based on custom session-level attributes.
|
|
42
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter_585728df`
|
|
43
|
+
- **`attribute_path`** (`text`) **REQUIRED** — Key or path of the attribute to filter on.
|
|
44
|
+
- **`equals`** (`[]text`) — Array of string values to match exactly.
|
|
45
|
+
- **`filter_type`** (`enum`) **REQUIRED** — Type of string filter to apply.
|
|
46
|
+
- Allowed: `string_filter`
|
|
47
|
+
- **`session_duration`** (`composite`) — Filters mobile sessions by total length (duration range in milliseconds).
|
|
48
|
+
- Composite: `_gen:session_duration`
|
|
49
|
+
- **`max_ms`** (`int`) **REQUIRED** — Maximum session duration in milliseconds.
|
|
50
|
+
- **`min_ms`** (`int`) **REQUIRED** — Minimum session duration in milliseconds.
|
|
51
|
+
- **`version_key`** (`text`) **REQUIRED** — Unique app ID to which the session belongs; also referred to as the integration key.
|
|
52
|
+
- Validation: min_len=1
|
|
53
|
+
- **`type`** (`enum`) **REQUIRED** — Specifies the category of the client where the session occurred: Mobile or Web.
|
|
54
|
+
- Allowed: `mobile`
|
|
55
|
+
- **`platform`** (`enum`) **REQUIRED** — Indicates the environment where the session was recorded.
|
|
56
|
+
- Allowed: `android`, `ios`
|
|
57
|
+
|
|
58
|
+
## Output Port: `output`
|
|
59
|
+
|
|
60
|
+
- **`sessions`** (`[]composite`) **REQUIRED**
|
|
61
|
+
- Composite: `_gen:observability-session`
|
|
62
|
+
- **`created_at`** (`timestamp`) **REQUIRED** — The session creation date.
|
|
63
|
+
- **`device_metadata`** (`composite`) — Metadata describing the device and environment where the mobile session was recorded.
|
|
64
|
+
- Composite: `_gen:device_metadata`
|
|
65
|
+
- **`has_exception_occurred`** (`bool`) **REQUIRED** — Whether an exception occurred.
|
|
66
|
+
- **`is_anr`** (`bool`) **REQUIRED** — Whether the app became unresponsive (Application Not Responding) during this session.
|
|
67
|
+
- **`is_crash`** (`bool`) **REQUIRED** — Whether the app crashed during this session.
|
|
68
|
+
- **`rage_tap`** (`bool`) **REQUIRED** — Whether the user performed rapid repeated clicks (rage taps) during this session.
|
|
69
|
+
- **`recording_ids`** (`[]text`) — The list of recording IDs in this session.
|
|
70
|
+
- **`rev_org_id`** (`id`) — The workspace ID associated with this mobile session.
|
|
71
|
+
- ID type: `revo`
|
|
72
|
+
- **`rev_user_id`** (`id`) — The contact ID associated with this mobile session.
|
|
73
|
+
- ID type: `revu`
|
|
74
|
+
- **`session_duration_ms`** (`int`) **REQUIRED** — The session duration in milliseconds.
|
|
75
|
+
- **`session_id`** (`text`) **REQUIRED** — The unique session identifier.
|
|
76
|
+
- **`platform`** (`enum`) — The platform type for the device.
|
|
77
|
+
- Allowed: `android`, `ios`
|
|
78
|
+
- **`type`** (`enum`) **REQUIRED** — The type of session.
|
|
79
|
+
- Allowed: `mobile`
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# `list_sprint` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`cursor`** (`text`) — The cursor to resume iteration from. If not provided, then iteration starts from the beginning.
|
|
6
|
+
- **`limit`** (`int`) — Maximum number of sprints to return. If not provided, fetches upto 50 items.
|
|
7
|
+
- **`parent_id`** (`[]id`) — Parent Sprint Board ID
|
|
8
|
+
- ID type: `vista`
|
|
9
|
+
- **`sort_by`** (`[]uenum`) — Fields to sort the sprints by.
|
|
10
|
+
- **`state`** (`[]enum`) — Denotes the state of the sprint
|
|
11
|
+
- Allowed: `active`, `completed`, `planned`
|
|
12
|
+
|
|
13
|
+
## Output Port: `output`
|
|
14
|
+
|
|
15
|
+
- **`next_cursor`** (`text`) — The cursor used to iterate subsequent results in accordance to the sort order. If not set, then no later elements exist.
|
|
16
|
+
- **`prev_cursor`** (`text`) — The cursor used to iterate preceding results in accordance to the sort order. If not set, then no prior elements exist.
|
|
17
|
+
- **`vista_group`** (`[]composite`)
|
|
18
|
+
- Composite: `_gen:vista-group`
|
|
19
|
+
- **`end_date`** (`timestamp`) — Timestamp when the vista group item ends.
|
|
20
|
+
- **`name`** (`text`) **REQUIRED** — Name of the group.
|
|
21
|
+
- **`object_type`** (`enum`) **REQUIRED** — Type of DevRev object for which the grouped vista is applicable.
|
|
22
|
+
- Allowed: `conversations`, `parts`, `works`
|
|
23
|
+
- **`parent`** (`composite`)
|
|
24
|
+
- Composite: `_gen:parent`
|
|
25
|
+
- **`start_date`** (`timestamp`) — Timestamp when the vista group item starts.
|
|
26
|
+
- **`state`** (`enum`) — Defines the state of the group item.
|
|
27
|
+
- Allowed: `active`, `completed`, `planned`
|
|
28
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
29
|
+
- ID type: `vista_group_item`
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# `list_web_sessions` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`browser`** (`[]text`) — List of browsers in which the web session was recorded.
|
|
6
|
+
- **`browser_version`** (`[]text`) — List of browser versions in which the web session was recorded.
|
|
7
|
+
- **`console_logs`** (`composite`) — Filters web sessions based on console logs recorded during the session.
|
|
8
|
+
- Composite: `_gen:console_logs`
|
|
9
|
+
- **`body`** (`[]text`) — List of console log message contents to match.
|
|
10
|
+
- **`log_type`** (`enum`) — List of console log types (e.g., error, warn, log).
|
|
11
|
+
- Allowed: `error`, `warn`, `log`
|
|
12
|
+
- **`created_at`** (`composite`) — Date range filter for when the session was created.
|
|
13
|
+
- Composite: `_gen:created_at`
|
|
14
|
+
- **`after`** (`timestamp`) — Start of the date range for session creation (inclusive).
|
|
15
|
+
- **`before`** (`timestamp`) — End of the date range for session creation (inclusive).
|
|
16
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
17
|
+
- Allowed: `range`
|
|
18
|
+
- **`custom_events`** (`composite`) — Filters sessions based on custom events recorded during the session.
|
|
19
|
+
- Composite: `_gen:custom_events`
|
|
20
|
+
- **`event_details_filters`** (`[]composite`)
|
|
21
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter`
|
|
22
|
+
- **`event_name`** (`[]text`) — List of custom event names to match within the session.
|
|
23
|
+
- **`device_type`** (`[]text`) — List of device types used during the web session.
|
|
24
|
+
- **`has_console_errors`** (`bool`) — Indicates whether the web session contains console errors.
|
|
25
|
+
- **`has_dead_clicks`** (`bool`) — Indicates whether the web session contains dead click interactions.
|
|
26
|
+
- **`has_network_errors`** (`bool`) — Indicates whether the web session contains network errors.
|
|
27
|
+
- **`has_rage_clicks`** (`bool`) — Indicates whether the web session contains rage click interactions.
|
|
28
|
+
- **`is_anonymous`** (`bool`) — Indicates whether the web session belongs to an anonymous user.
|
|
29
|
+
- **`limit`** (`int`) — The maximum number of sessions to return. The default value is 20 and maximum is 100.
|
|
30
|
+
- **`network_logs`** (`composite`) — Filters sessions based on network request and response characteristics.
|
|
31
|
+
- Composite: `_gen:network_logs`
|
|
32
|
+
- **`request_url`** (`[]text`) — List of request URLs made during the session.
|
|
33
|
+
- **`response_status`** (`[]int`) — List of HTTP response status codes returned in the session.
|
|
34
|
+
- **`request_method`** (`enum`) — List of HTTP methods used in network requests.
|
|
35
|
+
- Allowed: `get`, `post`, `put`, `patch`, `delete`, `options`, `head`
|
|
36
|
+
- **`os`** (`[]text`) — List of operating systems on which the web session was recorded.
|
|
37
|
+
- **`page_url`** (`[]text`) — List of page URLs visited during the web session.
|
|
38
|
+
- **`rev_org`** (`[]id`) — List of workspace/organization IDs associated with the session.
|
|
39
|
+
- ID type: `revo`
|
|
40
|
+
- **`rev_user`** (`[]id`) — List of contact/user IDs associated with the session.
|
|
41
|
+
- ID type: `revu`
|
|
42
|
+
- **`session_attributes`** (`[]composite`) — Filters sessions based on custom session-level attributes.
|
|
43
|
+
- Composite: `_gen:observability-sessions-list-request-session-custom-attribute-filter_585728df`
|
|
44
|
+
- **`attribute_path`** (`text`) **REQUIRED** — Key or path of the attribute to filter on.
|
|
45
|
+
- **`equals`** (`[]text`) — Array of string values to match exactly.
|
|
46
|
+
- **`filter_type`** (`enum`) **REQUIRED** — Type of string filter to apply.
|
|
47
|
+
- Allowed: `string_filter`
|
|
48
|
+
- **`session_duration`** (`composite`) — Filters sessions by total length (duration range in milliseconds).
|
|
49
|
+
- Composite: `_gen:session_duration`
|
|
50
|
+
- **`max_ms`** (`int`) **REQUIRED** — Maximum session duration in milliseconds.
|
|
51
|
+
- **`min_ms`** (`int`) **REQUIRED** — Minimum session duration in milliseconds.
|
|
52
|
+
- **`version_key`** (`text`) **REQUIRED** — Unique app ID to which the session belongs; also referred to as the integration key.
|
|
53
|
+
- Validation: min_len=1
|
|
54
|
+
- **`type`** (`enum`) **REQUIRED** — Specifies the category of the client where the session occurred Mobile or Web.
|
|
55
|
+
- Allowed: `web`
|
|
56
|
+
- **`platform`** (`enum`) **REQUIRED** — Indicates the environment where the session was recorded.
|
|
57
|
+
- Allowed: `web`
|
|
58
|
+
|
|
59
|
+
## Output Port: `output`
|
|
60
|
+
|
|
61
|
+
- **`sessions`** (`[]composite`) **REQUIRED**
|
|
62
|
+
- Composite: `_gen:observability-session`
|
|
63
|
+
- **`console_metadata`** (`composite`) — Summary of console log information captured during a web session.
|
|
64
|
+
- Composite: `_gen:console_metadata`
|
|
65
|
+
- **`created_at`** (`timestamp`) **REQUIRED** — The session creation timestamp.
|
|
66
|
+
- **`dead_click_count`** (`int`) **REQUIRED** — Number of clicks on unresponsive elements during the web session.
|
|
67
|
+
- **`device_metadata`** (`composite`)
|
|
68
|
+
- Composite: `_gen:device_metadata`
|
|
69
|
+
- **`first_page_title`** (`text`) — The title of the first page visited.
|
|
70
|
+
- **`first_page_url`** (`text`) — The URL of the first page visited.
|
|
71
|
+
- **`network_metadata`** (`composite`) — Summary of network response status codes recorded during a web session.
|
|
72
|
+
- Composite: `_gen:network_metadata`
|
|
73
|
+
- **`page_load_time_ms`** (`int`) — The page load time in milliseconds.
|
|
74
|
+
- **`rage_click_count`** (`int`) **REQUIRED** — Number of rapid repeated clicks indicating user frustration during the web session.
|
|
75
|
+
- **`rev_org_id`** (`id`) — The workspace ID associated with this recording.
|
|
76
|
+
- ID type: `revo`
|
|
77
|
+
- **`rev_user_id`** (`id`) — The contact ID associated with this recording.
|
|
78
|
+
- ID type: `revu`
|
|
79
|
+
- **`session_attributes`** (`composite`) — Custom key-value metadata associated with the session.
|
|
80
|
+
- Composite: `_gen:session_attributes`
|
|
81
|
+
- **`session_duration_ms`** (`int`) **REQUIRED** — The session duration in milliseconds.
|
|
82
|
+
- **`session_id`** (`text`) **REQUIRED** — The unique session identifier.
|
|
83
|
+
- **`tab_ids`** (`[]text`) — The list of tab IDs in this session.
|
|
84
|
+
- **`platform`** (`enum`) — The platform type for the device.
|
|
85
|
+
- Allowed: `web`
|
|
86
|
+
- **`type`** (`enum`) **REQUIRED** — The type of session.
|
|
87
|
+
- Allowed: `web`
|