@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,46 @@
|
|
|
1
|
+
# `enhancement_created` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
10
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
11
|
+
- **`created_by`** (`composite`)
|
|
12
|
+
- Composite: `_gen:created_by`
|
|
13
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
14
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
15
|
+
- **`email`** (`text`) — Email address of the user.
|
|
16
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
17
|
+
- **`state`** (`enum`) — State of the user.
|
|
18
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
19
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
20
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
21
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
22
|
+
- Allowed: `dev_user`, `sys_user`
|
|
23
|
+
- **`created_date`** (`timestamp`) — Timestamp when the enhancement was created.
|
|
24
|
+
- **`description`** (`text`) — Description of the enhancement.
|
|
25
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
26
|
+
- **`name`** (`text`) **REQUIRED** — Name of the enhancement.
|
|
27
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
28
|
+
- Composite: `_gen:user-summary`
|
|
29
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
30
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
31
|
+
- **`email`** (`text`) — Email address of the user.
|
|
32
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
33
|
+
- **`state`** (`enum`) — State of the user.
|
|
34
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
35
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
36
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `dev_user`, `sys_user`
|
|
39
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
40
|
+
- Composite: `_gen:tags`
|
|
41
|
+
- **`tag`** (`composite`)
|
|
42
|
+
- Composite: `_gen:tag`
|
|
43
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
44
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
45
|
+
- **`id`** (`id`) **REQUIRED** — ID of the enhancement.
|
|
46
|
+
- ID type: `enhancement`
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# `enhancement_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: `description`, `name`, `owned_by`, `tags`, `stage_v2`, `target_close_date`, `actual_close_date`, `target_start_date`, `actual_start_date`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
11
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
12
|
+
- **`created_by`** (`composite`)
|
|
13
|
+
- Composite: `_gen:created_by`
|
|
14
|
+
- **`display_id`** (`text`) — Display ID of the user who created the enhancement.
|
|
15
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
16
|
+
- **`email`** (`text`) — Email address of the user.
|
|
17
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
18
|
+
- **`state`** (`enum`) — State of the user.
|
|
19
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
20
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
21
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
22
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
23
|
+
- Allowed: `dev_user`, `sys_user`, `svcacc`
|
|
24
|
+
- **`created_date`** (`timestamp`) — Timestamp when the enhancement was created.
|
|
25
|
+
- **`description`** (`text`) — Description of the enhancement.
|
|
26
|
+
- **`display_id`** (`text`) — Display ID of the enhancement.
|
|
27
|
+
- **`modified_by`** (`composite`)
|
|
28
|
+
- Composite: `_gen:modified_by`
|
|
29
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
30
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
31
|
+
- **`email`** (`text`) — Email address of the user.
|
|
32
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
33
|
+
- **`state`** (`enum`) — State of the user.
|
|
34
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
35
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
36
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `dev_user`, `sys_user`, `svcacc`
|
|
39
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the enhancement was last modified.
|
|
40
|
+
- **`name`** (`text`) **REQUIRED** — Name of the enhancement.
|
|
41
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
42
|
+
- Composite: `_gen:user-summary`
|
|
43
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
44
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
45
|
+
- **`email`** (`text`) — Email address of the user.
|
|
46
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
47
|
+
- **`state`** (`enum`) — State of the user.
|
|
48
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
50
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
51
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
52
|
+
- Allowed: `dev_user`, `sys_user`, `svcacc`
|
|
53
|
+
- **`tags`** (`[]composite`) — Tags associated with the enhancement.
|
|
54
|
+
- Composite: `_gen:tags`
|
|
55
|
+
- **`tag`** (`composite`)
|
|
56
|
+
- Composite: `_gen:tag`
|
|
57
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
58
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
59
|
+
- **`old_enhancement`** (`composite`) — Old enhancement object
|
|
60
|
+
- Composite: `_gen:implicit:enhancement`
|
|
61
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
62
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
63
|
+
- **`created_by`** (`composite`)
|
|
64
|
+
- Composite: `_gen:created_by`
|
|
65
|
+
- **`created_date`** (`timestamp`) — Timestamp when the enhancement was created.
|
|
66
|
+
- **`description`** (`text`) — Description of the enhancement.
|
|
67
|
+
- **`display_id`** (`text`) — Display ID of the enhancement.
|
|
68
|
+
- **`modified_by`** (`composite`)
|
|
69
|
+
- Composite: `_gen:modified_by`
|
|
70
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the enhancement was last modified.
|
|
71
|
+
- **`name`** (`text`) **REQUIRED** — Name of the enhancement.
|
|
72
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
73
|
+
- Composite: `_gen:user-summary`
|
|
74
|
+
- **`stage_v2`** (`composite`) — Describes the current stage of a object.
|
|
75
|
+
- Composite: `_gen:stage_v2`
|
|
76
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
77
|
+
- Composite: `_gen:tags`
|
|
78
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
79
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
80
|
+
- **`id`** (`id`) **REQUIRED** — the id of the enhancement
|
|
81
|
+
- ID type: `enhancement`
|
|
82
|
+
- **`id`** (`id`) **REQUIRED** — ID of the enhancement.
|
|
83
|
+
- ID type: `enhancement`
|
|
84
|
+
- **`stage_v2`** (`composite`) — The stage of the enhancement.
|
|
85
|
+
- Composite: `_gen:stage_v2`
|
|
86
|
+
- **`stage`** (`composite`)
|
|
87
|
+
- Composite: `_gen:stage`
|
|
88
|
+
- **`state`** (`composite`)
|
|
89
|
+
- Composite: `_gen:state`
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# `evaluate_sentiment` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Takes the ID of the object and evaluates the sentiment. Currently supports tickets and conversations.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`object`** (`id`) **REQUIRED** — The ID of the ticket or conversation to evaluate sentiment for.
|
|
8
|
+
- ID type: `ticket`, `conversation`
|
|
9
|
+
|
|
10
|
+
## Output Port: `output`
|
|
11
|
+
|
|
12
|
+
- **`sentiment`** (`enum`) **REQUIRED** — The evaluated sentiment.
|
|
13
|
+
- Allowed: `delighted`, `frustrated`, `happy`, `neutral`, `unhappy`, `unknown`
|
|
14
|
+
- **`justification`** (`text`) — The justification for the evaluated sentiment.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# `execute_metric_action` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`action`** (`enum`) **REQUIRED**
|
|
6
|
+
- Allowed: `complete`, `pause`, `restart`, `resume`, `start`
|
|
7
|
+
- **`event_date`** (`timestamp`) **REQUIRED** — Timestamp of the event.
|
|
8
|
+
- **`metric`** (`id`) **REQUIRED** — The metric's ID for which the metric action is to be executed.
|
|
9
|
+
- ID type: `metric_definition`
|
|
10
|
+
- **`object`** (`id`) **REQUIRED** — The underlying object's ID on which the metric action is to be executed.
|
|
11
|
+
- ID type: `conversation`, `incident`, `issue`, `ticket`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# `feature_created` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`created_by`** (`composite`)
|
|
10
|
+
- Composite: `_gen:created_by`
|
|
11
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
12
|
+
- **`email`** (`text`) — Email address of the user.
|
|
13
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
14
|
+
- **`state`** (`enum`) — State of the user.
|
|
15
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
16
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
17
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
18
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
19
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
20
|
+
- **`created_date`** (`timestamp`) — Timestamp when the feature was created.
|
|
21
|
+
- **`description`** (`text`) — Description of the feature.
|
|
22
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
23
|
+
- **`name`** (`text`) **REQUIRED** — Name of the feature.
|
|
24
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
25
|
+
- Composite: `_gen:user-summary`
|
|
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
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
32
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
33
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
34
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
35
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
36
|
+
- Composite: `_gen:tags`
|
|
37
|
+
- **`tag`** (`composite`)
|
|
38
|
+
- Composite: `_gen:tag`
|
|
39
|
+
- **`id`** (`id`) **REQUIRED** — ID of the feature.
|
|
40
|
+
- ID type: `feature`
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# `for_each` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Iterate over a list of items. Executes a block of steps for each item in the list.
|
|
4
|
+
|
|
5
|
+
**WARNING:** `for_each` has a **dynamic schema** (populated by a schema handler at runtime). Its `items_to_iterate` field has `field_type: "array"` but requires a `base_type` discriminator that is resolved dynamically. This makes `for_each` **unreliable in templates** — it often causes `"discriminator not set: base_type"` errors on import.
|
|
6
|
+
|
|
7
|
+
**Prefer `loop_over_*` operations** for iterating over native DevRev objects. Available:
|
|
8
|
+
- `loop_over_issues`, `loop_over_tickets`, `loop_over_accounts`, `loop_over_articles`
|
|
9
|
+
- `loop_over_customers`, `loop_over_dev_users`, `loop_over_enhancements`
|
|
10
|
+
- `loop_over_incidents`, `loop_over_meetings`, `loop_over_opportunity`, `loop_over_sprints`
|
|
11
|
+
|
|
12
|
+
Only use `for_each` when no dedicated `loop_over_*` operation exists for the data you need to iterate.
|
|
13
|
+
|
|
14
|
+
## Input Port: `input`
|
|
15
|
+
|
|
16
|
+
Schema is **dynamic** (populated by schema handler). Typically includes the list/array to iterate over.
|
|
17
|
+
|
|
18
|
+
## Input Port: `block_callback`
|
|
19
|
+
|
|
20
|
+
- Type: BlockCallback
|
|
21
|
+
- Schema: empty (receives data back from the loop body block).
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{"name": "block_callback", "schema": {"type": "field_descriptor"}, "type": "block_callback"}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Output Port: `output`
|
|
28
|
+
|
|
29
|
+
Schema is **dynamic** (populated by schema handler). Contains aggregated results after iteration completes.
|
|
30
|
+
|
|
31
|
+
## Output Port: `block_start`
|
|
32
|
+
|
|
33
|
+
Schema is **dynamic** (populated by schema handler). Contains the current item from the list being iterated. This port connects to the body of the loop. Uses `type: "block_start"` (NOT `"default"`).
|
|
34
|
+
|
|
35
|
+
```json
|
|
36
|
+
{"name": "block_start", "schema": {"type": "field_descriptor"}, "type": "block_start"}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Access current item: `$get('for_each_1', 'block_start').item`
|
|
40
|
+
|
|
41
|
+
## Block Body Pattern
|
|
42
|
+
|
|
43
|
+
Steps inside the loop body MUST:
|
|
44
|
+
1. Set `"block_step_reference_key": "for_each_1"` on each body step
|
|
45
|
+
2. The `for_each` step must have `next_steps` with both `block_start` (to body) and `output` (after loop)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# `get_account` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
6
|
+
- ID type: `account`
|
|
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
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
19
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
20
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
21
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
22
|
+
- **`created_date`** (`timestamp`) — Timestamp when the account was created.
|
|
23
|
+
- **`description`** (`text`) — Description of the corresponding Account.
|
|
24
|
+
- **`display_id`** (`text`) — Human-readable account ID unique to the Dev organization.
|
|
25
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
26
|
+
- **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
|
|
27
|
+
- **`external_refs`** (`[]text`) — External refs are unique identifiers from your customer system of records, stored as a list.
|
|
28
|
+
- **`modified_by`** (`composite`)
|
|
29
|
+
- Composite: `_gen:modified_by`
|
|
30
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
31
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
32
|
+
- **`email`** (`text`) — Email address of the user.
|
|
33
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
34
|
+
- **`state`** (`enum`) — State of the user.
|
|
35
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
36
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
37
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
38
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
39
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
40
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the account was modified.
|
|
41
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
42
|
+
- Composite: `_gen:user-summary`
|
|
43
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
44
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
45
|
+
- **`email`** (`text`) — Email address of the user.
|
|
46
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
47
|
+
- **`state`** (`enum`) — State of the user.
|
|
48
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
49
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
50
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
51
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
52
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
53
|
+
- **`tags`** (`[]composite`) — Tags associated with an object.
|
|
54
|
+
- Composite: `_gen:tags`
|
|
55
|
+
- **`tag`** (`composite`)
|
|
56
|
+
- Composite: `_gen:tag`
|
|
57
|
+
- **`tier`** (`text`) — The Tier of the corresponding Account.
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
59
|
+
- ID type: `account`
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# `get_airdrop_sync_unit` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The Sync Unit ID
|
|
6
|
+
- ID type: `sync_unit`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`created_date`** (`timestamp`) — Timestamp when the Airdrop Sync was created.
|
|
11
|
+
- **`external_sync_unit_name`** (`text`) — The name of the sync unit in the external system.
|
|
12
|
+
- **`external_system_id`** (`text`) — The ID of the external system.
|
|
13
|
+
- **`external_system_name`** (`text`) — The name of the external system.
|
|
14
|
+
- **`external_system_type`** (`enum`)
|
|
15
|
+
- Allowed: `adaas`, `confluence`, `github`, `hubspot`, `jira`, `jira_data_center`, `linear`, `rocketlane`, `s3`, `salesforce_sales`... (13 total)
|
|
16
|
+
- **`is_archived`** (`bool`) — The flag signaling if sync unit is archived.
|
|
17
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the Airdrop Sync was last modified.
|
|
18
|
+
- **`name`** (`text`) — The name of the sync unit.
|
|
19
|
+
- **`sync_run`** (`composite`) — Object for holding run-specific data.
|
|
20
|
+
- Composite: `_gen:sync_run`
|
|
21
|
+
- **`ended_at`** (`timestamp`) — The time when a sync was ended.
|
|
22
|
+
- **`item_analytics_artifact`** (`composite`)
|
|
23
|
+
- Composite: `_gen:item_analytics_artifact`
|
|
24
|
+
- **`mode`** (`enum`) — The direction/mode of a sync run.
|
|
25
|
+
- Allowed: `initial`, `sync_from_devrev`, `sync_to_devrev`
|
|
26
|
+
- **`progress`** (`composite`) — Progress.
|
|
27
|
+
- Composite: `_gen:progress`
|
|
28
|
+
- **`started_at`** (`timestamp`) — The time when a sync was started.
|
|
29
|
+
- **`sync_type`** (`enum`) — Type of sync preferences.
|
|
30
|
+
- Allowed: `manual`, `periodic`
|
|
31
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
32
|
+
- ID type: `sync_unit`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# `get_brand` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the brand to be retrieved.
|
|
6
|
+
- ID type: `brand`
|
|
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** — Globally unique object ID.
|
|
19
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
20
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
21
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
22
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
23
|
+
- **`description`** (`text`) — The description of the brand.
|
|
24
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
25
|
+
- **`modified_by`** (`composite`)
|
|
26
|
+
- Composite: `_gen:modified_by`
|
|
27
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
28
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
29
|
+
- **`email`** (`text`) — Email address of the user.
|
|
30
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
31
|
+
- **`state`** (`enum`) — State of the user.
|
|
32
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
33
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
34
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
35
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
36
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
37
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
38
|
+
- **`name`** (`text`) — The name of the brand.
|
|
39
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique Brand ID.
|
|
40
|
+
- ID type: `brand`
|
package/skills/create-workflow-template/operations/schemas/get_complete_enhancement_details.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# `get_complete_enhancement_details` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`object_id`** (`id`) **REQUIRED** — Object to fetch context for.
|
|
6
|
+
- ID type: `enhancement`, `issue`
|
|
7
|
+
- **`duration`** (`enum`) **REQUIRED** — Number of days to look back for timeline entries, comments, and linked work items
|
|
8
|
+
- Allowed: `7`, `14`, `21`, `30`
|
|
9
|
+
- Default: `7`
|
|
10
|
+
|
|
11
|
+
## Output Port: `output`
|
|
12
|
+
|
|
13
|
+
- **`context`** (`text`) — Fetches context on this object.
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# `get_conversation` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the conversation.
|
|
6
|
+
- ID type: `conversation`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`account`** (`composite`)
|
|
11
|
+
- Composite: `_gen:account`
|
|
12
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
13
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
14
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
15
|
+
- ID type: `account`
|
|
16
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
17
|
+
- Composite: `_gen:part-summary`
|
|
18
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
19
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
20
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
21
|
+
- Composite: `_gen:user-summary`
|
|
22
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
23
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
24
|
+
- **`id`** (`id`) **REQUIRED** — ID of the part attached to the conversation.
|
|
25
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
26
|
+
- **`created_by`** (`composite`)
|
|
27
|
+
- Composite: `_gen:created_by`
|
|
28
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
29
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
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
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
38
|
+
- ID type: `revu`, `svcacc`
|
|
39
|
+
- **`created_date`** (`timestamp`) — Timestamp when the conversation was created.
|
|
40
|
+
- **`description`** (`text`) — The description of the conversation.
|
|
41
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
42
|
+
- **`group`** (`composite`)
|
|
43
|
+
- Composite: `_gen:group`
|
|
44
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
45
|
+
- **`id`** (`id`) **REQUIRED** — ID of the group
|
|
46
|
+
- ID type: `group`
|
|
47
|
+
- **`is_frozen`** (`bool`) — Whether the object is frozen or not.
|
|
48
|
+
- **`last_external_message_date`** (`timestamp`) — Timestamp of the last message in external discussion.
|
|
49
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
50
|
+
- Composite: `_gen:user-summary`
|
|
51
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
52
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
53
|
+
- **`email`** (`text`) — Email address of the user.
|
|
54
|
+
- **`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.
|
|
55
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
56
|
+
- **`rev_org`** (`composite`)
|
|
57
|
+
- Composite: `_gen:rev_org`
|
|
58
|
+
- **`state`** (`enum`) — State of the user.
|
|
59
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
60
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
61
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
62
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
63
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
64
|
+
- **`metadata`** (`composite`) — Metadata on conversation.
|
|
65
|
+
- Composite: `_gen:metadata`
|
|
66
|
+
- **`url_context`** (`text`) — URL from which the conversation was created if the conversation was created via PLuG.
|
|
67
|
+
- **`modified_by`** (`composite`)
|
|
68
|
+
- Composite: `_gen:modified_by`
|
|
69
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
70
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
71
|
+
- **`display_picture`** (`composite`)
|
|
72
|
+
- Composite: `_gen:display_picture`
|
|
73
|
+
- **`email`** (`text`) — Email address of the user.
|
|
74
|
+
- **`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.
|
|
75
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
76
|
+
- **`rev_org`** (`composite`)
|
|
77
|
+
- Composite: `_gen:rev_org`
|
|
78
|
+
- **`state`** (`enum`) — State of the user.
|
|
79
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
80
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
81
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
82
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
83
|
+
- ID type: `devu`, `revu`, `sysu`, `svcacc`
|
|
84
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the conversation was modified.
|
|
85
|
+
- **`owned_by`** (`[]composite`)
|
|
86
|
+
- Composite: `_gen:user-summary`
|
|
87
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
88
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
89
|
+
- **`email`** (`text`) — Email address of the user.
|
|
90
|
+
- **`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.
|
|
91
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
92
|
+
- **`rev_org`** (`composite`)
|
|
93
|
+
- Composite: `_gen:rev_org`
|
|
94
|
+
- **`state`** (`enum`) — State of the user.
|
|
95
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
96
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
97
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
98
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
99
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
100
|
+
- **`sentiment`** (`composite`) — The properties of an enum value.
|
|
101
|
+
- Composite: `_gen:sentiment`
|
|
102
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
103
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
104
|
+
- **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
|
|
105
|
+
- Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
|
|
106
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
|
|
107
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
|
|
108
|
+
- **`source_channel`** (`text`) — Source channel for the conversation.
|
|
109
|
+
- **`stage`** (`composite`) — The stage of the conversation.
|
|
110
|
+
- Composite: `_gen:conversation-properties.stage`
|
|
111
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
112
|
+
- **`name`** (`enum`) — The stage of the conversation.
|
|
113
|
+
- Allowed: `new`, `suspended`, `needs_response`, `waiting_on_user`, `hold`, `resolved`, `archived`
|
|
114
|
+
- **`tags`** (`[]composite`) — The tags associated with the conversation.
|
|
115
|
+
- Composite: `_gen:tags`
|
|
116
|
+
- **`tag`** (`composite`)
|
|
117
|
+
- Composite: `_gen:tag`
|
|
118
|
+
- **`title`** (`text`) — The title of the conversation.
|
|
119
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the conversation
|
|
120
|
+
- ID type: `conversation`
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# `get_customer` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the customer.
|
|
6
|
+
- ID type: `revu`
|
|
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
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
17
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
18
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
19
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
20
|
+
- **`created_date`** (`timestamp`) — Timestamp when the contact was created.
|
|
21
|
+
- **`description`** (`text`) — The description of the contact.
|
|
22
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
23
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
24
|
+
- **`display_picture`** (`composite`)
|
|
25
|
+
- Composite: `_gen:user-base-properties.display_picture`
|
|
26
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
27
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
28
|
+
- ID type: `artifact`
|
|
29
|
+
- **`email`** (`text`) — Email address of the user.
|
|
30
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
31
|
+
- **`is_verified`** (`bool`) — Whether the customer is verified or not.
|
|
32
|
+
- **`modified_by`** (`composite`)
|
|
33
|
+
- Composite: `_gen:modified_by`
|
|
34
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
35
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
36
|
+
- **`email`** (`text`) — Email address of the user.
|
|
37
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
38
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
39
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
40
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
41
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
42
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the contact was last modified.
|
|
43
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
44
|
+
- **`rev_org`** (`composite`)
|
|
45
|
+
- Composite: `_gen:rev_org`
|
|
46
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
47
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
48
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
49
|
+
- Allowed: `account`, `rev_org`
|
|
50
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
51
|
+
- ID type: `revo`
|
|
52
|
+
- **`state`** (`enum`) — State of the user.
|
|
53
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
54
|
+
- **`tags`** (`[]composite`) — Tags associated with the contact.
|
|
55
|
+
- Composite: `_gen:tags`
|
|
56
|
+
- **`tag`** (`composite`)
|
|
57
|
+
- Composite: `_gen:tag`
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
59
|
+
- ID type: `revu`
|
|
60
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Customer 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.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# `get_enhancement` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the enhancement.
|
|
6
|
+
- ID type: `enhancement`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
11
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
12
|
+
- **`created_by`** (`composite`)
|
|
13
|
+
- Composite: `_gen:created_by`
|
|
14
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
15
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
16
|
+
- **`email`** (`text`) — Email address of the user.
|
|
17
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
18
|
+
- **`state`** (`enum`) — State of the user.
|
|
19
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
20
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
21
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
22
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
23
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
24
|
+
- **`created_date`** (`timestamp`) — Timestamp when the Enhancement was created.
|
|
25
|
+
- **`description`** (`text`) — Description of the Enhancement.
|
|
26
|
+
- **`display_id`** (`text`) — Human-readable Enhancement ID unique to the Dev organization.
|
|
27
|
+
- **`modified_by`** (`composite`)
|
|
28
|
+
- Composite: `_gen:modified_by`
|
|
29
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
30
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
31
|
+
- **`email`** (`text`) — Email address of the user.
|
|
32
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
33
|
+
- **`state`** (`enum`) — State of the user.
|
|
34
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
35
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
36
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
39
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the Enhancement was modified.
|
|
40
|
+
- **`name`** (`text`) **REQUIRED** — Name of the Enhancement.
|
|
41
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
42
|
+
- Composite: `_gen:user-summary`
|
|
43
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
44
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
45
|
+
- **`email`** (`text`) — Email address of the user.
|
|
46
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
47
|
+
- **`state`** (`enum`) — State of the user.
|
|
48
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
50
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
51
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
52
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
53
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
54
|
+
- Composite: `_gen:tags`
|
|
55
|
+
- **`tag`** (`composite`)
|
|
56
|
+
- Composite: `_gen:tag`
|
|
57
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
58
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
59
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the Enhancement
|
|
60
|
+
- ID type: `enhancement`
|
|
61
|
+
- **`stage_v2`** (`composite`) — The stage of the enhancement.
|
|
62
|
+
- Composite: `_gen:stage_v2`
|
|
63
|
+
- **`stage`** (`composite`)
|
|
64
|
+
- Composite: `_gen:stage`
|
|
65
|
+
- **`state`** (`composite`)
|
|
66
|
+
- Composite: `_gen:state`
|