@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,55 @@
|
|
|
1
|
+
# `get_part` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the part.
|
|
6
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`created_by`** (`composite`)
|
|
11
|
+
- Composite: `_gen:created_by`
|
|
12
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
13
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
14
|
+
- **`email`** (`text`) — Email address of the user.
|
|
15
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
16
|
+
- **`state`** (`enum`) — State of the user.
|
|
17
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
18
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
19
|
+
- ID type: `revu`, `devu`, `sysu`, `svcacc`
|
|
20
|
+
- **`created_date`** (`timestamp`) — Timestamp when the part was created.
|
|
21
|
+
- **`description`** (`text`) — Description of the part.
|
|
22
|
+
- **`display_id`** (`text`) — Human-readable part ID unique to the Dev organization.
|
|
23
|
+
- **`modified_by`** (`composite`)
|
|
24
|
+
- Composite: `_gen:modified_by`
|
|
25
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
26
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
27
|
+
- **`email`** (`text`) — Email address of the user.
|
|
28
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
29
|
+
- **`state`** (`enum`) — State of the user.
|
|
30
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
31
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
32
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
33
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
34
|
+
- ID type: `devu`, `revu`, `sysu`, `svcacc`
|
|
35
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the part was modified.
|
|
36
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
37
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
38
|
+
- Composite: `_gen:user-summary`
|
|
39
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
40
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
41
|
+
- **`email`** (`text`) — Email address of the user.
|
|
42
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
43
|
+
- **`state`** (`enum`) — State of the user.
|
|
44
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
45
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
46
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
47
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
48
|
+
- ID type: `revu`, `devu`, `sysu`, `svcacc`
|
|
49
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
50
|
+
- Composite: `_gen:tags`
|
|
51
|
+
- **`tag`** (`composite`)
|
|
52
|
+
- Composite: `_gen:tag`
|
|
53
|
+
- **`value`** (`text`) — The value for the object's association with the tag.
|
|
54
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the part
|
|
55
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# `get_self` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`availability_modes`** (`[]composite`) — The availability modes of the user. Stock allowed values: ``` { "id": 1, "label": "Ticket", "ordinal": 1, "overridable": false }, { "id": 2, "label": "Conversation", "ordinal": 2, "overridable": false }, { "id": 3, "label": "Issue", "ordinal": 3, "overridable": false }, { "id": 4, "label": "Incident", "ordinal": 4, "overridable": false }, { "id": 5, "label": "Away", "ordinal": 5, "overridable": false }, { "id": 6, "label": "Sick", "ordinal": 6, "overridable": false }, { "id": 7, "label": "Lunch", "ordinal": 7, "overridable": false }, { "id": 8, "label": "Travel", "ordinal": 8, "overridable": false }, { "id": 9, "label": "Vacation", "ordinal": 9, "overridable": false } ```
|
|
10
|
+
- Composite: `_gen:availability_modes`
|
|
11
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
12
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
13
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
14
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
15
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
16
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
17
|
+
- **`display_picture`** (`composite`)
|
|
18
|
+
- Composite: `_gen:user-base-properties.display_picture`
|
|
19
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
20
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
21
|
+
- ID type: `artifact`
|
|
22
|
+
- **`email`** (`text`) — Email address of the user.
|
|
23
|
+
- **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
|
|
24
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
25
|
+
- **`job_history`** (`[]composite`) — Job history of the user.
|
|
26
|
+
- Composite: `_gen:job_history`
|
|
27
|
+
- **`employment_status`** (`composite`) — The properties of an enum value.
|
|
28
|
+
- Composite: `_gen:employment_status`
|
|
29
|
+
- **`end_date`** (`timestamp`) — The end date of the job, or not specified if current.
|
|
30
|
+
- **`is_current`** (`bool`) — Is this the current active job for the user.
|
|
31
|
+
- **`location`** (`text`) — The job location for the user.
|
|
32
|
+
- **`start_date`** (`timestamp`) — The start date of the job.
|
|
33
|
+
- **`title`** (`text`) — The job title for the user.
|
|
34
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
35
|
+
- **`reports_to`** (`composite`)
|
|
36
|
+
- Composite: `_gen:reports_to`
|
|
37
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
38
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
39
|
+
- **`email`** (`text`) — Email address of the user.
|
|
40
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
41
|
+
- **`state`** (`enum`) — State of the user.
|
|
42
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
43
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
44
|
+
- ID type: `devu`
|
|
45
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
46
|
+
- Allowed: `dev_user`
|
|
47
|
+
- **`skills`** (`[]composite`) — Array of skills of the user.
|
|
48
|
+
- Composite: `_gen:skills`
|
|
49
|
+
- **`name`** (`text`) — Name of the skill.
|
|
50
|
+
- **`state`** (`enum`) — State of the user.
|
|
51
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
52
|
+
- **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
|
|
53
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
54
|
+
- ID type: `devu`
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# `get_session_details` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`platform`** (`enum`) **REQUIRED** — Indicates the environment where the session was recorded — android, ios, or web.
|
|
6
|
+
- Allowed: `android`, `ios`, `web`
|
|
7
|
+
- **`session_id`** (`text`) **REQUIRED** — The unique ID of the session to retrieve.
|
|
8
|
+
- Validation: min_len=1
|
|
9
|
+
- **`version_key`** (`text`) **REQUIRED** — The unique app ID to which the session belongs, also referred to as integration key
|
|
10
|
+
- Validation: min_len=1
|
|
11
|
+
|
|
12
|
+
## Output Port: `output`
|
|
13
|
+
|
|
14
|
+
- **`session`** (`composite`) — The session metadata including device information, duration, and recording identifiers.
|
|
15
|
+
- Composite: `_gen:session`
|
|
16
|
+
- **`console_metadata`** (`composite`) — Summary of console log information captured during a web session.
|
|
17
|
+
- Composite: `_gen:console_metadata`
|
|
18
|
+
- **`created_at`** (`timestamp`) **REQUIRED** — The session creation date.
|
|
19
|
+
- **`dead_click_count`** (`int`) **REQUIRED** — Number of clicks on unresponsive elements during the web session.
|
|
20
|
+
- **`device_metadata`** (`composite`) — Metadata describing the device and environment where the session was recorded.
|
|
21
|
+
- Composite: `_gen:device_metadata`
|
|
22
|
+
- **`first_page_title`** (`text`) — The title of the first page visited.
|
|
23
|
+
- **`first_page_url`** (`text`) — The URL of the first page visited.
|
|
24
|
+
- **`has_exception_occurred`** (`bool`) **REQUIRED** — Whether an exception occurred.
|
|
25
|
+
- **`is_anr`** (`bool`) **REQUIRED** — Indicates whether the mobile app became unresponsive / UI freeze (ANR) during the session.
|
|
26
|
+
- **`is_crash`** (`bool`) **REQUIRED** — Whether crash occurred in the session.
|
|
27
|
+
- **`network_metadata`** (`composite`) — Summary of network response status codes recorded during a web session.
|
|
28
|
+
- Composite: `_gen:network_metadata`
|
|
29
|
+
- **`page_load_time_ms`** (`int`) — The page load time in milliseconds.
|
|
30
|
+
- **`platform`** (`enum`) — The platform type for the device.
|
|
31
|
+
- Allowed: `android`, `ios`, `web`
|
|
32
|
+
- **`rage_click_count`** (`int`) **REQUIRED** — Number of rapid repeated clicks indicating user frustration during the web session.
|
|
33
|
+
- **`rage_tap`** (`bool`) **REQUIRED** — Indicates whether the user performed rapid repeated taps (rage taps) in the mobile app during the session.
|
|
34
|
+
- **`recording_ids`** (`[]text`) — The list of recording IDs in this session.
|
|
35
|
+
- **`rev_org_id`** (`id`) — The workspace ID associated with this session.
|
|
36
|
+
- ID type: `revo`
|
|
37
|
+
- **`rev_user_id`** (`id`) — The contact ID associated with this session.
|
|
38
|
+
- ID type: `revu`
|
|
39
|
+
- **`session_attributes`** (`composite`) — Custom key-value metadata associated with the session.
|
|
40
|
+
- Composite: `_gen:session_attributes`
|
|
41
|
+
- **`session_duration_ms`** (`int`) **REQUIRED** — The session duration in milliseconds.
|
|
42
|
+
- **`session_id`** (`text`) **REQUIRED** — The unique session identifier.
|
|
43
|
+
- **`tab_ids`** (`[]text`) — The list of tab IDs in this session.
|
|
44
|
+
- **`type`** (`enum`) **REQUIRED** — Specifies the category of the client where the session occurred — Mobile or Web.
|
|
45
|
+
- Allowed: `mobile`, `web`
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# `get_sprint_board` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the vista.
|
|
6
|
+
- ID type: `vista`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`created_by`** (`composite`)
|
|
11
|
+
- Composite: `_gen:created_by`
|
|
12
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
13
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
14
|
+
- **`email`** (`text`) — Email address of the user.
|
|
15
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
16
|
+
- **`state`** (`enum`) — State of the user.
|
|
17
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
18
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
19
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
20
|
+
- **`created_date`** (`timestamp`) — Timestamp when the vista was created.
|
|
21
|
+
- **`display_id`** (`text`) — Human-readable vista ID unique to the Dev organization.
|
|
22
|
+
- **`flavor`** (`enum`) — Denotes the use case of the grouped vista.
|
|
23
|
+
- Allowed: `nnl`, `sprint_board`, `support_inbox`
|
|
24
|
+
- **`is_default`** (`bool`) — Boolean to specify whether it's a default Vista or not.
|
|
25
|
+
- **`items`** (`[]composite`)
|
|
26
|
+
- Composite: `_gen:atom-summary`
|
|
27
|
+
- **`account`** (`composite`)
|
|
28
|
+
- Composite: `_gen:account`
|
|
29
|
+
- **`applies_to_type`** (`enum`) — The type of the object on which the SLA is being tracked.
|
|
30
|
+
- Allowed: `conversation`, `incident`, `issue`, `ticket`
|
|
31
|
+
- **`article_type`** (`enum`) — Type of the article.
|
|
32
|
+
- Allowed: `article`, `content_block`, `page`
|
|
33
|
+
- **`dev_slug`** (`text`) **REQUIRED** — Customer chosen URL slug for the DevOrg.
|
|
34
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
35
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
36
|
+
- **`email`** (`text`) — Email address of the user.
|
|
37
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
38
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
39
|
+
- **`groups`** (`[]composite`)
|
|
40
|
+
- Composite: `_gen:group-summary_5e635348`
|
|
41
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
42
|
+
- **`leaf_type`** (`text`) — Type of the object.
|
|
43
|
+
- **`link_type`** (`enum`) **REQUIRED** — Type of link used to define the relationship.
|
|
44
|
+
- Allowed: `custom_link`, `developed_with`, `imports`, `is_analyzed_by`, `is_converted_to`, `is_dependent_on`, `is_duplicate_of`, `is_follow_up_of`, `is_merged_into`, `is_parent_of`... (13 total)
|
|
45
|
+
- **`member_type`** (`enum`) — Type of the members in the group.
|
|
46
|
+
- Allowed: `dev_user`, `rev_user`
|
|
47
|
+
- **`metric_name`** (`text`) **REQUIRED** — Human readable metric name of the UOM.
|
|
48
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
49
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
50
|
+
- Composite: `_gen:user-summary`
|
|
51
|
+
- **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
|
|
52
|
+
- Allowed: `p0`, `p1`, `p2`, `p3`
|
|
53
|
+
- **`priority_v2`** (`composite`) — The properties of an enum value.
|
|
54
|
+
- Composite: `_gen:priority_v2`
|
|
55
|
+
- **`question`** (`text`) — The Question.
|
|
56
|
+
- **`resource`** (`composite`) — Resource details.
|
|
57
|
+
- Composite: `_gen:resource`
|
|
58
|
+
- **`rev_org`** (`composite`)
|
|
59
|
+
- Composite: `_gen:rev_org`
|
|
60
|
+
- **`severity`** (`composite`) — The properties of an enum value.
|
|
61
|
+
- Composite: `_gen:severity`
|
|
62
|
+
- **`sla_type`** (`enum`) — Type of the SLA.
|
|
63
|
+
- Allowed: `external`, `internal`
|
|
64
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
65
|
+
- Composite: `_gen:sprint`
|
|
66
|
+
- **`state`** (`enum`) — State of the user.
|
|
67
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
68
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
69
|
+
- **`status`** (`enum`) **REQUIRED** — Status determines how an item can be used. In 'draft' status an item can be edited but can't be used. When 'published' the item can longer be edited but can be used. 'Archived' is read-only.
|
|
70
|
+
- Allowed: `archived`, `draft`, `published`
|
|
71
|
+
- **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
|
|
72
|
+
- Composite: `_gen:sync_metadata`
|
|
73
|
+
- **`title`** (`text`) — Title of the article.
|
|
74
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
75
|
+
- Allowed: `account`, `app_fragment`, `article`, `auth_token`, `capability`, `code_change`, `command`, `conversation`, `custom_object`, `custom_type_fragment`... (47 total)
|
|
76
|
+
- **`unit`** (`composite`) — Unit encapsulates the name of the unit and the type of the unit. For example, '#Number of API calls' where name is 'number_of_api_calls' and type is 'number'.
|
|
77
|
+
- Composite: `_gen:unit`
|
|
78
|
+
- **`users`** (`[]composite`) **REQUIRED**
|
|
79
|
+
- Composite: `_gen:user-summary`
|
|
80
|
+
- **`modified_by`** (`composite`)
|
|
81
|
+
- Composite: `_gen:modified_by`
|
|
82
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
83
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
84
|
+
- **`email`** (`text`) — Email address of the user.
|
|
85
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
86
|
+
- **`state`** (`enum`) — State of the user.
|
|
87
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
88
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
89
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
90
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
91
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
92
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the vista was modified.
|
|
93
|
+
- **`name`** (`text`) **REQUIRED** — Name of the vista.
|
|
94
|
+
- **`shared_with`** (`[]composite`) — Users and groups associated with vista.
|
|
95
|
+
- Composite: `_gen:shared_with`
|
|
96
|
+
- **`member`** (`composite`)
|
|
97
|
+
- Composite: `_gen:member`
|
|
98
|
+
- **`role`** (`composite`)
|
|
99
|
+
- Composite: `_gen:role`
|
|
100
|
+
- **`type`** (`enum`) **REQUIRED** — Type of vista object.
|
|
101
|
+
- Allowed: `curated`, `dynamic`, `grouped`
|
|
102
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the Sprint Board
|
|
103
|
+
- ID type: `vista`
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# `get_ticket` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the ticket.
|
|
6
|
+
- ID type: `ticket`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the work was actually completed.
|
|
11
|
+
- **`applies_to_part`** (`composite`)
|
|
12
|
+
- Composite: `_gen:applies_to_part`
|
|
13
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
14
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
15
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
16
|
+
- Composite: `_gen:user-summary`
|
|
17
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
18
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
19
|
+
- **`id`** (`id`) **REQUIRED** — The id of the part.
|
|
20
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
21
|
+
- **`body`** (`text`) — The body of the ticket.
|
|
22
|
+
- **`channels`** (`[]enum`) — Channels of the ticket.
|
|
23
|
+
- Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
|
|
24
|
+
- **`created_by`** (`composite`)
|
|
25
|
+
- Composite: `_gen:created_by`
|
|
26
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
27
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
28
|
+
- **`display_picture`** (`composite`)
|
|
29
|
+
- Composite: `_gen:display_picture`
|
|
30
|
+
- **`email`** (`text`) — Email address of the user.
|
|
31
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
32
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
33
|
+
- **`rev_org`** (`composite`)
|
|
34
|
+
- Composite: `_gen:rev_org`
|
|
35
|
+
- **`state`** (`enum`) — State of the user.
|
|
36
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
39
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user
|
|
40
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
41
|
+
- **`created_date`** (`timestamp`) — Timestamp when the ticket was created.
|
|
42
|
+
- **`display_id`** (`text`) — Display ID of the ticket.
|
|
43
|
+
- **`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).
|
|
44
|
+
- **`group`** (`composite`)
|
|
45
|
+
- Composite: `_gen:group`
|
|
46
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
47
|
+
- **`id`** (`id`) **REQUIRED** — The id of the group
|
|
48
|
+
- ID type: `group`
|
|
49
|
+
- **`is_frozen`** (`bool`) — Whether the object is frozen or not.
|
|
50
|
+
- **`is_spam`** (`bool`) — Whether the ticket is spam.
|
|
51
|
+
- **`modified_by`** (`composite`)
|
|
52
|
+
- Composite: `_gen:modified_by`
|
|
53
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
54
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
55
|
+
- **`display_picture`** (`composite`)
|
|
56
|
+
- Composite: `_gen:display_picture`
|
|
57
|
+
- **`email`** (`text`) — Email address of the user.
|
|
58
|
+
- **`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.
|
|
59
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
60
|
+
- **`rev_org`** (`composite`)
|
|
61
|
+
- Composite: `_gen:rev_org`
|
|
62
|
+
- **`state`** (`enum`) — State of the user.
|
|
63
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
64
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
65
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
66
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
67
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
68
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the ticket was modified.
|
|
69
|
+
- **`needs_response`** (`bool`) — Whether the ticket needs a response.
|
|
70
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
71
|
+
- Composite: `_gen:user-summary`
|
|
72
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
73
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
74
|
+
- **`display_picture`** (`composite`)
|
|
75
|
+
- Composite: `_gen:display_picture`
|
|
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
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
84
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
85
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
86
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
87
|
+
- **`reported_by`** (`[]composite`)
|
|
88
|
+
- Composite: `_gen:user-summary`
|
|
89
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
90
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
91
|
+
- **`display_picture`** (`composite`)
|
|
92
|
+
- Composite: `_gen:display_picture`
|
|
93
|
+
- **`email`** (`text`) — Email address of the user.
|
|
94
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Rev organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
95
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
96
|
+
- **`rev_org`** (`composite`)
|
|
97
|
+
- Composite: `_gen:rev_org`
|
|
98
|
+
- **`state`** (`enum`) — State of the user.
|
|
99
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
100
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
101
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
102
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
103
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
104
|
+
- **`rev_org`** (`composite`)
|
|
105
|
+
- Composite: `_gen:rev_org`
|
|
106
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
107
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
108
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
109
|
+
- Allowed: `account`, `rev_org`
|
|
110
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
111
|
+
- ID type: `revo`
|
|
112
|
+
- **`sentiment`** (`composite`) — The properties of an enum value.
|
|
113
|
+
- Composite: `_gen:sentiment`
|
|
114
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
115
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
116
|
+
- **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
|
|
117
|
+
- Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
|
|
118
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
|
|
119
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
|
|
120
|
+
- **`severity`** (`enum`) — Severity of the ticket.
|
|
121
|
+
- Allowed: `blocker`, `high`, `low`, `medium`
|
|
122
|
+
- **`source_channel`** (`text`) — Source channel of the ticket.
|
|
123
|
+
- **`stage`** (`composite`) — Current stage of the ticket.
|
|
124
|
+
- Composite: `_gen:stage`
|
|
125
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
126
|
+
- **`stage`** (`composite`) — The stage of the ticket.
|
|
127
|
+
- Composite: `stage.stage`
|
|
128
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
129
|
+
- **`tags`** (`[]composite`) — Tags associated with the ticket.
|
|
130
|
+
- Composite: `_gen:tags`
|
|
131
|
+
- **`tag`** (`composite`)
|
|
132
|
+
- Composite: `_gen:tag`
|
|
133
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the ticket is expected to be complete.
|
|
134
|
+
- **`title`** (`text`) **REQUIRED** — Title of the ticket.
|
|
135
|
+
- **`id`** (`id`) **REQUIRED** — The id of the ticket.
|
|
136
|
+
- ID type: `ticket`
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# `get_workspace` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
6
|
+
- ID type: `revo`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`account`** (`composite`) — The account associated with the workspace.
|
|
11
|
+
- Composite: `_gen:account`
|
|
12
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
13
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
14
|
+
- ID type: `account`
|
|
15
|
+
- **`description`** (`text`) — The description of the workspace.
|
|
16
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
17
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
18
|
+
- **`domain`** (`text`) — The domain of the workspace.
|
|
19
|
+
- **`external_ref`** (`text`) — The external reference of the workspace.
|
|
20
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
21
|
+
- ID type: `revo`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# `go_back` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Go back to a previous step in the workflow.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
Schema is **dynamic** (implemented in schema handler). The input schema is determined at design time based on which step to go back to.
|
|
8
|
+
|
|
9
|
+
## Output Port
|
|
10
|
+
|
|
11
|
+
No output ports defined. This is a terminal control flow operation that redirects execution to a previous step.
|
|
12
|
+
|
|
13
|
+
> **Note:** The input schema is managed by the schema handler. The target step to go back to is configured at design time.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# `http` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Make HTTP requests.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`method`** (`enum`) — Method of the HTTP request.
|
|
8
|
+
- Allowed: `GET`, `POST`, `PUT`, `DELETE`
|
|
9
|
+
- Default: `GET`
|
|
10
|
+
- **`url`** (`text`) **REQUIRED** — URL of the HTTP request.
|
|
11
|
+
- **`query_params`** (`[]composite`) — Query parameters of the HTTP request.
|
|
12
|
+
- Composite: `pair`
|
|
13
|
+
- **`key`** (`text`) **REQUIRED** — Key.
|
|
14
|
+
- **`value`** (`text`) — Value.
|
|
15
|
+
- **`headers`** (`[]composite`) — Headers of the HTTP request.
|
|
16
|
+
- Composite: `pair`
|
|
17
|
+
- **`key`** (`text`) **REQUIRED** — Key.
|
|
18
|
+
- **`value`** (`text`) — Value.
|
|
19
|
+
- **`body`** (`text`) — Body of the HTTP request.
|
|
20
|
+
- **`auth_type`** (`enum`) — Authentication type.
|
|
21
|
+
- Allowed: `Bearer`, `Basic`, `None`
|
|
22
|
+
- Default: `None`
|
|
23
|
+
|
|
24
|
+
### Keyring / Connection
|
|
25
|
+
|
|
26
|
+
- **`auth_token`** (optional) — Authentication token. Accepts any keyring type.
|
|
27
|
+
|
|
28
|
+
## Output Port: `output`
|
|
29
|
+
|
|
30
|
+
- **`status_code`** (`int`) — Status code of the HTTP response.
|
|
31
|
+
- **`body`** (`text`) — Body of the HTTP response.
|
|
32
|
+
- **`headers`** (`[]composite`) — Headers of the HTTP response.
|
|
33
|
+
- Composite: `pair`
|
|
34
|
+
- **`key`** (`text`) **REQUIRED** — Key.
|
|
35
|
+
- **`value`** (`text`) — Value.
|
|
36
|
+
- **`content_type`** (`text`) — Content type of the HTTP response.
|
|
37
|
+
|
|
38
|
+
> **Note:** Execution timeout is configurable.
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# `hybrid_search` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`object_ids`** (`id`) — A list of Object-IDs
|
|
10
|
+
- ID type: `account`, `article`, `capability`, `component`, `conversation`, `dashboard`, `dev_user`, `enhancement`, `feature`, `group`, `incident`, `issue`, `linkable`, `object_member`, `opportunity`, `product`, `question_answer`, `rev_org`, `rev_user`, `runnable`, `tag`, `ticket`, `vista`, `widget`
|
|
11
|
+
- **`account_search_summary`** (`[]composite`) — AccountSearchSummary objects
|
|
12
|
+
- Composite: `_gen:implicit:account_search_summary`
|
|
13
|
+
- **`account`** (`composite`)
|
|
14
|
+
- Composite: `_gen:account`
|
|
15
|
+
- **`comments`** (`[]composite`) — Comments on the work.
|
|
16
|
+
- Composite: `_gen:comments`
|
|
17
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
18
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
19
|
+
- **`article_search_summary`** (`[]composite`) — ArticleSearchSummary objects
|
|
20
|
+
- Composite: `_gen:implicit:article_search_summary`
|
|
21
|
+
- **`article`** (`composite`)
|
|
22
|
+
- Composite: `_gen:article`
|
|
23
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
24
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
25
|
+
- **`work_search_summary`** (`[]composite`) — WorkSearchSummary objects
|
|
26
|
+
- Composite: `_gen:implicit:work_search_summary`
|
|
27
|
+
- **`comments`** (`[]composite`) — Comments on the work.
|
|
28
|
+
- Composite: `_gen:comments`
|
|
29
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
30
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
31
|
+
- **`work`** (`composite`)
|
|
32
|
+
- Composite: `_gen:work`
|
|
33
|
+
- **`part_search_summary`** (`[]composite`) — PartSearchSummary objects
|
|
34
|
+
- Composite: `_gen:implicit:part_search_summary`
|
|
35
|
+
- **`comments`** (`[]composite`) — Comments on the work.
|
|
36
|
+
- Composite: `_gen:comments`
|
|
37
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
38
|
+
- **`part`** (`composite`)
|
|
39
|
+
- Composite: `_gen:part`
|
|
40
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
41
|
+
- **`link_search_summary`** (`[]composite`) — LinkSearchSummary objects
|
|
42
|
+
- Composite: `_gen:implicit:link_search_summary`
|
|
43
|
+
- **`link`** (`composite`)
|
|
44
|
+
- Composite: `_gen:link`
|
|
45
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
46
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
47
|
+
- **`artifact_search_summary`** (`[]composite`) — ArtifactSearchSummary objects
|
|
48
|
+
- Composite: `_gen:implicit:artifact_search_summary`
|
|
49
|
+
- **`artifact`** (`composite`)
|
|
50
|
+
- Composite: `_gen:artifact`
|
|
51
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
52
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
53
|
+
- **`conversation_search_summary`** (`[]composite`) — ConversationSearchSummary objects
|
|
54
|
+
- Composite: `_gen:implicit:conversation_search_summary`
|
|
55
|
+
- **`comments`** (`[]composite`) — Comments on the work.
|
|
56
|
+
- Composite: `_gen:comments`
|
|
57
|
+
- **`conversation`** (`composite`)
|
|
58
|
+
- Composite: `_gen:conversation`
|
|
59
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
60
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
61
|
+
- **`tag_search_summary`** (`[]composite`) — TagSearchSummary objects
|
|
62
|
+
- Composite: `_gen:implicit:tag_search_summary`
|
|
63
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
64
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
65
|
+
- **`tag`** (`composite`)
|
|
66
|
+
- Composite: `_gen:tag`
|
|
67
|
+
- **`org_search_summary`** (`[]composite`) — OrgSearchSummary objects
|
|
68
|
+
- Composite: `_gen:implicit:org_search_summary`
|
|
69
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
70
|
+
- **`org`** (`composite`)
|
|
71
|
+
- Composite: `_gen:org`
|
|
72
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
73
|
+
- **`user_search_summary`** (`[]composite`) — UserSearchSummary objects
|
|
74
|
+
- Composite: `_gen:implicit:user_search_summary`
|
|
75
|
+
- **`comments`** (`[]composite`) — Comments on the work.
|
|
76
|
+
- Composite: `_gen:comments`
|
|
77
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
78
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
79
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
80
|
+
- **`user`** (`composite`)
|
|
81
|
+
- Composite: `_gen:user`
|
|
82
|
+
- **`group_search_summary`** (`[]composite`) — GroupSearchSummary objects
|
|
83
|
+
- Composite: `_gen:implicit:group_search_summary`
|
|
84
|
+
- **`group`** (`composite`)
|
|
85
|
+
- Composite: `_gen:group`
|
|
86
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
87
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
88
|
+
- **`question_answer_search_summary`** (`[]composite`) — QuestionAnswerSearchSummary objects
|
|
89
|
+
- Composite: `_gen:implicit:question_answer_search_summary`
|
|
90
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
91
|
+
- **`question_answer`** (`composite`)
|
|
92
|
+
- Composite: `_gen:question_answer`
|
|
93
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
94
|
+
- **`vista_search_summary`** (`[]composite`) — VistaSearchSummary objects
|
|
95
|
+
- Composite: `_gen:implicit:vista_search_summary`
|
|
96
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
97
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
98
|
+
- **`vista`** (`composite`) — Represents a collection of DevRev objects.
|
|
99
|
+
- Composite: `_gen:vista`
|
|
100
|
+
- **`dashboard_search_summary`** (`[]composite`) — DashboardSearchSummary objects
|
|
101
|
+
- Composite: `_gen:implicit:dashboard_search_summary`
|
|
102
|
+
- **`dashboard`** (`composite`)
|
|
103
|
+
- Composite: `_gen:dashboard`
|
|
104
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
105
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
106
|
+
- **`custom_object_search_summary`** (`[]composite`) — CustomObjectSearchSummary objects
|
|
107
|
+
- Composite: `_gen:implicit:custom_object_search_summary`
|
|
108
|
+
- **`custom_object`** (`composite`)
|
|
109
|
+
- Composite: `_gen:custom_object`
|
|
110
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
111
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
112
|
+
- **`workflow_search_summary`** (`[]composite`) — WorkflowSearchSummary objects
|
|
113
|
+
- Composite: `_gen:implicit:workflow_search_summary`
|
|
114
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
115
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
116
|
+
- **`workflow`** (`composite`)
|
|
117
|
+
- Composite: `_gen:workflow`
|
|
118
|
+
- **`operation_search_summary`** (`[]composite`) — OperationSearchSummary objects
|
|
119
|
+
- Composite: `_gen:implicit:operation_search_summary`
|
|
120
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
121
|
+
- **`operation`** (`composite`)
|
|
122
|
+
- Composite: `_gen:operation`
|
|
123
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
124
|
+
- **`dm_search_summary`** (`[]composite`) — DmSearchSummary objects
|
|
125
|
+
- Composite: `_gen:implicit:dm_search_summary`
|
|
126
|
+
- **`comments`** (`[]composite`) — Comments on the DM.
|
|
127
|
+
- Composite: `_gen:comments`
|
|
128
|
+
- **`dm`** (`composite`)
|
|
129
|
+
- Composite: `_gen:dm`
|
|
130
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
131
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
132
|
+
- **`meeting_search_summary`** (`[]composite`) — MeetingSearchSummary objects
|
|
133
|
+
- Composite: `_gen:implicit:meeting_search_summary`
|
|
134
|
+
- **`meeting`** (`composite`)
|
|
135
|
+
- Composite: `_gen:meeting`
|
|
136
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
137
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
138
|
+
- **`title`** (`text`) — The title of the meeting.
|
|
139
|
+
- **`directory_search_summary`** (`[]composite`) — DirectorySearchSummary objects
|
|
140
|
+
- Composite: `_gen:implicit:directory_search_summary`
|
|
141
|
+
- **`directory`** (`composite`)
|
|
142
|
+
- Composite: `_gen:directory`
|
|
143
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
144
|
+
- **`snippet`** (`text`) — Concatenated text snippets from all search hits for this object. This may contain duplicate content.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# `if_else` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Branch the workflow based on a condition.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`condition`** (`struct`) **REQUIRED** — Condition to evaluate.
|
|
8
|
+
- This is a structured condition object (e.g., comparison expressions).
|
|
9
|
+
|
|
10
|
+
## Output Port: `true`
|
|
11
|
+
|
|
12
|
+
No fields. This port is followed when the condition evaluates to true.
|
|
13
|
+
|
|
14
|
+
## Output Port: `false`
|
|
15
|
+
|
|
16
|
+
No fields. This port is followed when the condition evaluates to false.
|