@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,79 @@
|
|
|
1
|
+
# `create_article` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`description`** (`text`) — Description for the article.
|
|
6
|
+
- **`parent`** (`id`) — The parent directory of the article.
|
|
7
|
+
- ID type: `directory`
|
|
8
|
+
- **`shared_with`** (`[]composite`) — Information about the role the member receives due to the share.
|
|
9
|
+
- Composite: `_gen:shared_with`
|
|
10
|
+
- **`member`** (`id`) — ID of the member the object is shared with.
|
|
11
|
+
- ID type: `devu`, `group`, `revu`, `sysu`
|
|
12
|
+
- **`role`** (`id`) — ID of the role that describes what privileges the membership entails.
|
|
13
|
+
- ID type: `role`
|
|
14
|
+
- **`tags`** (`[]composite`) — Tags associated with the article.
|
|
15
|
+
- Composite: `_gen:tags`
|
|
16
|
+
- **`id`** (`id`) — The ID of the tag.
|
|
17
|
+
- ID type: `tag`
|
|
18
|
+
- **`title`** (`text`) **REQUIRED** — Name of the article.
|
|
19
|
+
- **`owned_by`** (`[]id`) **REQUIRED** — The users that own the article.
|
|
20
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
21
|
+
- **`status`** (`enum`) — Status of the article.
|
|
22
|
+
- Allowed: `draft`, `published`, `archived`, `review_needed`
|
|
23
|
+
- Default: `draft`
|
|
24
|
+
- **`applies_to_parts`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
25
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
26
|
+
- **`content`** (`text`) **REQUIRED** — The content of the article. Provide the content in HTML or Markdown format.
|
|
27
|
+
|
|
28
|
+
## Output Port: `output`
|
|
29
|
+
|
|
30
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
31
|
+
- Composite: `_gen:part-summary`
|
|
32
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
33
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
34
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
35
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
36
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
37
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
38
|
+
- **`created_by`** (`composite`)
|
|
39
|
+
- Composite: `_gen:created_by`
|
|
40
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
41
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
42
|
+
- **`email`** (`text`) — Email address of the user.
|
|
43
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
44
|
+
- **`state`** (`enum`) — State of the user.
|
|
45
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
46
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
47
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
48
|
+
- **`type`** (`enum`) **REQUIRED** — Type of the user.
|
|
49
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
50
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
51
|
+
- **`description`** (`text`) — Description of the article.
|
|
52
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
53
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
54
|
+
- Composite: `_gen:user-summary`
|
|
55
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
56
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
57
|
+
- **`email`** (`text`) — Email address of the user.
|
|
58
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
59
|
+
- **`state`** (`enum`) — State of the user.
|
|
60
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
61
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
62
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
63
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
64
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
65
|
+
- **`parent`** (`composite`)
|
|
66
|
+
- Composite: `_gen:parent`
|
|
67
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
68
|
+
- **`title`** (`text`) — Title of the directory.
|
|
69
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
70
|
+
- ID type: `directory`
|
|
71
|
+
- **`status`** (`enum`) — Status of the article.
|
|
72
|
+
- Allowed: `archived`, `draft`, `published`, `review_needed`
|
|
73
|
+
- **`tags`** (`[]composite`) — Tags associated with the article.
|
|
74
|
+
- Composite: `_gen:tags`
|
|
75
|
+
- **`tag`** (`composite`)
|
|
76
|
+
- Composite: `_gen:tag`
|
|
77
|
+
- **`title`** (`text`) — Title of the article.
|
|
78
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
79
|
+
- ID type: `article`
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# `create_brand` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`description`** (`text`) — Description of the brand to be created.
|
|
6
|
+
- Validation: max_len=65536
|
|
7
|
+
- **`name`** (`text`) **REQUIRED** — Name of the brand to be created.
|
|
8
|
+
- Validation: min_len=1, max_len=50
|
|
9
|
+
|
|
10
|
+
## Output Port: `output`
|
|
11
|
+
|
|
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** — Globally unique object ID.
|
|
21
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
22
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
23
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
24
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
25
|
+
- **`description`** (`text`) — The description of the brand.
|
|
26
|
+
- **`display_id`** (`text`) — Human-readable object 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** — Globally unique object ID.
|
|
36
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
39
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
40
|
+
- **`name`** (`text`) — The name of the brand.
|
|
41
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique Brand ID.
|
|
42
|
+
- ID type: `brand`
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# `create_contact` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`account`** (`id`) — The account that the contact is associated with.
|
|
6
|
+
- ID type: `account`
|
|
7
|
+
- **`description`** (`text`) — The description of the contact.
|
|
8
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
9
|
+
- **`email`** (`text`) — The email address of the contact.
|
|
10
|
+
- **`external_refs`** (`[]text`) — External references associated with the contact.
|
|
11
|
+
- **`phone_numbers`** (`[]text`) — The phone numbers of the contact.
|
|
12
|
+
- **`rev_org`** (`id`) — The workspace that the contact is associated with.
|
|
13
|
+
- ID type: `revo`
|
|
14
|
+
- **`tags`** (`[]composite`) — The tags associated with the contact.
|
|
15
|
+
- Composite: `_gen:tags`
|
|
16
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the tag.
|
|
17
|
+
- ID type: `tag`
|
|
18
|
+
|
|
19
|
+
## Output Port: `output`
|
|
20
|
+
|
|
21
|
+
- **`created_by`** (`composite`)
|
|
22
|
+
- Composite: `_gen:created_by`
|
|
23
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
24
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
25
|
+
- **`email`** (`text`) — Email address of the user.
|
|
26
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
27
|
+
- **`state`** (`enum`) — State of the user.
|
|
28
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
29
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
30
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
31
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
32
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
33
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
34
|
+
- **`description`** (`text`) — The description of the contact.
|
|
35
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
36
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
37
|
+
- **`email`** (`text`) — Email address of the user.
|
|
38
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
39
|
+
- **`is_verified`** (`bool`) — Whether the user is verified or not
|
|
40
|
+
- **`modified_by`** (`composite`)
|
|
41
|
+
- Composite: `_gen:modified_by`
|
|
42
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
43
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
44
|
+
- **`email`** (`text`) — Email address of the user.
|
|
45
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
46
|
+
- **`state`** (`enum`) — State of the user.
|
|
47
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
48
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
49
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
50
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
51
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
52
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
53
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
54
|
+
- **`rev_org`** (`composite`) — The workspace that the contact is associated with.
|
|
55
|
+
- Composite: `_gen:rev_org`
|
|
56
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
57
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
59
|
+
- ID type: `revo`
|
|
60
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
61
|
+
- Composite: `_gen:tags`
|
|
62
|
+
- **`tag`** (`composite`)
|
|
63
|
+
- Composite: `_gen:tag`
|
|
64
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
65
|
+
- ID type: `revu`
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# `create_dm` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`is_default`** (`bool`) — Whether this is the default DM for messaging the constituent users. If true, then this DM is always returned when opening a DM for the users. Note only one DM may be the default for a given set of users. By Default, this is true.
|
|
6
|
+
- **`title`** (`text`) — The title for the chat.
|
|
7
|
+
- **`users`** (`[]id`) **REQUIRED** — The users to send direct messages to. The authenticated user must be included in this list.
|
|
8
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
9
|
+
|
|
10
|
+
## Output Port: `output`
|
|
11
|
+
|
|
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** — Globally unique object ID.
|
|
21
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
22
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
23
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
24
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
25
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
26
|
+
- **`modified_by`** (`composite`)
|
|
27
|
+
- Composite: `_gen:modified_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
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
32
|
+
- **`state`** (`enum`) — State of the user.
|
|
33
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
34
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
35
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
36
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
37
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
38
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
39
|
+
- **`title`** (`text`) — The title given to the chat.
|
|
40
|
+
- **`users`** (`[]composite`) **REQUIRED**
|
|
41
|
+
- Composite: `_gen:user-summary`
|
|
42
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
43
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
44
|
+
- **`email`** (`text`) — Email address of the user.
|
|
45
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
46
|
+
- **`state`** (`enum`) — State of the user.
|
|
47
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
48
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
49
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
50
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
51
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
52
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
53
|
+
- ID type: `dm`
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# `create_enhancement` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`name`** (`text`) **REQUIRED** — The name of the enhancement.
|
|
6
|
+
- **`description`** (`text`) — Detailed description of what this enhancement will accomplish.
|
|
7
|
+
- **`owned_by`** (`[]id`) **REQUIRED** — The users that own the enhancement.
|
|
8
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
9
|
+
- **`parent_part`** (`id`) — The parent part that this enhancement belongs to (optional).
|
|
10
|
+
- ID type: `capability`, `component`, `custom_part`, `enhancement`, `feature`, `linkable`, `microservice`, `product`, `runnable`
|
|
11
|
+
- **`target_start_date`** (`timestamp`) — When development of this enhancement is expected to begin.
|
|
12
|
+
- **`target_close_date`** (`timestamp`) — When this enhancement is expected to be completed and delivered.
|
|
13
|
+
- **`stage_v2`** (`id`) — The initial stage of the enhancement.
|
|
14
|
+
- ID type: `custom_stage`
|
|
15
|
+
|
|
16
|
+
## Output Port: `output`
|
|
17
|
+
|
|
18
|
+
- **`created_by`** (`composite`)
|
|
19
|
+
- Composite: `_gen:created_by`
|
|
20
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
21
|
+
- **`display_name`** (`text`) — Name of the user who created the enhancement.
|
|
22
|
+
- **`email`** (`text`) — Email of the user who created the enhancement.
|
|
23
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
24
|
+
- **`state`** (`enum`) — State of the user.
|
|
25
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
26
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user who created the enhancement.
|
|
27
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
28
|
+
- **`created_date`** (`timestamp`) — When the enhancement was created.
|
|
29
|
+
- **`description`** (`text`) — Description of the enhancement.
|
|
30
|
+
- **`modified_by`** (`composite`)
|
|
31
|
+
- Composite: `_gen:modified_by`
|
|
32
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
33
|
+
- **`display_name`** (`text`) — Name of the user who last modified the enhancement.
|
|
34
|
+
- **`email`** (`text`) — Email of the user who last modified the enhancement.
|
|
35
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
36
|
+
- **`state`** (`enum`) — State of the user.
|
|
37
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
38
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user who last modified the enhancement.
|
|
39
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
40
|
+
- **`modified_date`** (`timestamp`) — When the enhancement was last modified.
|
|
41
|
+
- **`name`** (`text`) **REQUIRED** — The name of the created enhancement.
|
|
42
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
43
|
+
- Composite: `_gen:user-summary`
|
|
44
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
45
|
+
- **`display_name`** (`text`) — Name of the enhancement owner.
|
|
46
|
+
- **`email`** (`text`) — Email of the enhancement owner.
|
|
47
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
48
|
+
- **`state`** (`enum`) — State of the user.
|
|
49
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
50
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user who owns the enhancement.
|
|
51
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
52
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
53
|
+
- Composite: `_gen:tags`
|
|
54
|
+
- **`tag`** (`composite`)
|
|
55
|
+
- Composite: `_gen:tag`
|
|
56
|
+
- **`target_close_date`** (`timestamp`) — Planned completion date for the enhancement.
|
|
57
|
+
- **`target_start_date`** (`timestamp`) — Planned start date for the enhancement.
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — The enhancement that was created.
|
|
59
|
+
- ID type: `enhancement`
|
|
60
|
+
- **`stage_v2`** (`composite`) — The current stage of the enhancement.
|
|
61
|
+
- Composite: `_gen:stage_v2`
|
|
62
|
+
- **`stage`** (`composite`) — The current stage of the enhancement.
|
|
63
|
+
- Composite: `_gen:stage`
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# `create_incident` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`title`** (`text`) **REQUIRED** — Title of the incident.
|
|
6
|
+
- **`body`** (`text`) — Body of the incident.
|
|
7
|
+
- **`severity`** (`int`) — Severity of the incident.
|
|
8
|
+
- **`owned_by`** (`[]id`) — The users that own the incident.
|
|
9
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
10
|
+
- **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
|
|
11
|
+
- **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
|
|
12
|
+
- **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
|
|
13
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
|
|
14
|
+
- **`applies_to_parts`** (`[]id`) — The [parts](https://devrev.ai/docs/product/parts) that the incident applies to. Specifying a part is required when creating issues.
|
|
15
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
16
|
+
- **`impact`** (`composite`)
|
|
17
|
+
- Composite: `_gen:impact`
|
|
18
|
+
- **`count`** (`int`) — Count of customers impacted.
|
|
19
|
+
- **`customer_ids`** (`[]id`) — The IDs of the customers impacted by the incident.
|
|
20
|
+
- ID type: `account`
|
|
21
|
+
- **`pia`** (`[]id`) — The article ids of the Post-Incident Analysis(PIA) of the incident.
|
|
22
|
+
- ID type: `article`
|
|
23
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
24
|
+
- Composite: `_gen:tags`
|
|
25
|
+
- **`tag_id`** (`id`) **REQUIRED** — ID of the referenced tag
|
|
26
|
+
- ID type: `tag`
|
|
27
|
+
|
|
28
|
+
## Output Port: `output`
|
|
29
|
+
|
|
30
|
+
- **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
|
|
31
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the incident was actually resolved.
|
|
32
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
33
|
+
- Composite: `_gen:part-summary`
|
|
34
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
35
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
36
|
+
- Composite: `_gen:user-summary`
|
|
37
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
38
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
39
|
+
- **`id`** (`id`) **REQUIRED** — ID of the part attached to the incident.
|
|
40
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
41
|
+
- **`body`** (`text`) — Body of the incident.
|
|
42
|
+
- **`created_by`** (`composite`)
|
|
43
|
+
- Composite: `_gen:created_by`
|
|
44
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
45
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
46
|
+
- **`display_picture`** (`composite`)
|
|
47
|
+
- Composite: `_gen:display_picture`
|
|
48
|
+
- **`email`** (`text`) — Email address of the user.
|
|
49
|
+
- **`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.
|
|
50
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
51
|
+
- **`rev_org`** (`composite`)
|
|
52
|
+
- Composite: `_gen:rev_org`
|
|
53
|
+
- **`state`** (`enum`) — State of the user.
|
|
54
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
55
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
56
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
57
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
58
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
59
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
60
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
61
|
+
- **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
|
|
62
|
+
- **`impact`** (`composite`) — Details of the impact due to the incident.
|
|
63
|
+
- Composite: `_gen:impact`
|
|
64
|
+
- **`count`** (`composite`) — The properties of an enum value.
|
|
65
|
+
- Composite: `_gen:count`
|
|
66
|
+
- **`customer_ids`** (`[]composite`)
|
|
67
|
+
- Composite: `_gen:account-summary`
|
|
68
|
+
- **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
|
|
69
|
+
- **`modified_by`** (`composite`)
|
|
70
|
+
- Composite: `_gen:modified_by`
|
|
71
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
72
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
73
|
+
- **`display_picture`** (`composite`)
|
|
74
|
+
- Composite: `_gen:display_picture`
|
|
75
|
+
- **`email`** (`text`) — Email address of the user.
|
|
76
|
+
- **`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.
|
|
77
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
78
|
+
- **`rev_org`** (`composite`)
|
|
79
|
+
- Composite: `_gen:rev_org`
|
|
80
|
+
- **`state`** (`enum`) — State of the user.
|
|
81
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
82
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
83
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
84
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
85
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
86
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
87
|
+
- **`owned_by`** (`[]composite`)
|
|
88
|
+
- Composite: `_gen:user-summary`
|
|
89
|
+
- **`pia`** (`[]composite`)
|
|
90
|
+
- Composite: `_gen:article-summary`
|
|
91
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
92
|
+
- **`resource`** (`composite`) — Resource details.
|
|
93
|
+
- Composite: `_gen:resource`
|
|
94
|
+
- **`title`** (`text`) — Title of the article.
|
|
95
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
96
|
+
- ID type: `article`
|
|
97
|
+
- **`playbooks`** (`[]composite`)
|
|
98
|
+
- Composite: `_gen:article-summary_95fca9c7`
|
|
99
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
100
|
+
- **`resource`** (`composite`) — Resource details.
|
|
101
|
+
- Composite: `_gen:resource`
|
|
102
|
+
- **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
|
|
103
|
+
- Composite: `_gen:sync_metadata`
|
|
104
|
+
- **`title`** (`text`) — Title of the article.
|
|
105
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
106
|
+
- ID type: `article`
|
|
107
|
+
- **`reported_by`** (`composite`) — The entity that reported the incident.
|
|
108
|
+
- Composite: `_gen:reported_by`
|
|
109
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
110
|
+
- **`label`** (`text`) **REQUIRED** — The label for the entity that reported the incident. Use id instead as labels can change overtime.
|
|
111
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
112
|
+
- **`severity`** (`composite`) — Severity of the incident.
|
|
113
|
+
- Composite: `_gen:severity`
|
|
114
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
115
|
+
- **`label`** (`text`) **REQUIRED** — The label for the severity. Use id instead as labels can change overtime.
|
|
116
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
117
|
+
- **`source`** (`composite`) — The source of the incident.
|
|
118
|
+
- Composite: `_gen:source`
|
|
119
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
120
|
+
- **`label`** (`text`) **REQUIRED** — The label for the source. Use id instead as labels can change overtime.
|
|
121
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
122
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
123
|
+
- **`stage`** (`composite`) — Stage of the incident.
|
|
124
|
+
- Composite: `_gen:stage`
|
|
125
|
+
- **`stage`** (`composite`) — The stage of the incident.
|
|
126
|
+
- Composite: `stage.stage`
|
|
127
|
+
- **`state`** (`composite`) — The state of the incident
|
|
128
|
+
- Composite: `_gen:state`
|
|
129
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
130
|
+
- Composite: `_gen:tags`
|
|
131
|
+
- **`tag`** (`composite`)
|
|
132
|
+
- Composite: `_gen:tag`
|
|
133
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
|
|
134
|
+
- **`title`** (`text`) **REQUIRED** — Title of the incident.
|
|
135
|
+
- **`id`** (`id`) **REQUIRED** — ID of the incident.
|
|
136
|
+
- ID type: `incident`
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
# `create_issue` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`artifacts`** (`[]id`) — The IDs of the artifacts to associate with the work item.
|
|
6
|
+
- ID type: `artifact`
|
|
7
|
+
- **`body`** (`text`) — Body of the work object.
|
|
8
|
+
- Validation: max_len=65536
|
|
9
|
+
- **`external_ref`** (`text`) — The external reference for the work item. This must be unique within the type of work item.
|
|
10
|
+
- Validation: min_len=1, max_len=512
|
|
11
|
+
- **`sprint`** (`id`) — The sprint that the issue belongs to.
|
|
12
|
+
- ID type: `vista_group_item`
|
|
13
|
+
- **`stage`** (`composite`) — Sets an object's initial stage.
|
|
14
|
+
- Composite: `_gen:stage`
|
|
15
|
+
- **`name`** (`text`) — The name of the stage.
|
|
16
|
+
- **`tags`** (`[]composite`) — Tags associated with the work item.
|
|
17
|
+
- Composite: `_gen:tags`
|
|
18
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the tag.
|
|
19
|
+
- ID type: `tag`
|
|
20
|
+
- **`target_close_date`** (`timestamp`) — Timestamp for when the work is expected to be complete.
|
|
21
|
+
- **`target_start_date`** (`timestamp`) — Timestamp for when the work is expected to start.
|
|
22
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
23
|
+
- Validation: min_len=1, max_len=256
|
|
24
|
+
- **`priority_v2`** (`uenum`) — Priority enum id of the work based upon impact and criticality. The allowed ids can be extended by the user. Stock allowed values: 1 (P0), 2 (P1), 3 (P2), 4 (P3).
|
|
25
|
+
- **`applies_to_part`** (`id`) **REQUIRED** — The [part](https://devrev.ai/docs/product/parts) that the work applies to. Specifying a part is required when creating issues.
|
|
26
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
27
|
+
- **`owned_by`** (`[]id`) **REQUIRED** — The users that own the issue.
|
|
28
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
29
|
+
- **`reported_by`** (`[]id`) — The user that reported the issue.
|
|
30
|
+
- ID type: `revu`
|
|
31
|
+
- **`developed_with`** (`[]id`) — The IDs of the parts associated with issue.
|
|
32
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
33
|
+
|
|
34
|
+
## Output Port: `output`
|
|
35
|
+
|
|
36
|
+
- **`applies_to_part`** (`composite`)
|
|
37
|
+
- Composite: `_gen:applies_to_part`
|
|
38
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
39
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
40
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
41
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
42
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
43
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
44
|
+
- **`artifacts`** (`[]composite`)
|
|
45
|
+
- Composite: `_gen:artifact-summary`
|
|
46
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
47
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
48
|
+
- ID type: `artifact`
|
|
49
|
+
- **`body`** (`text`) — Body of the work object.
|
|
50
|
+
- **`created_by`** (`composite`)
|
|
51
|
+
- Composite: `_gen:created_by`
|
|
52
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
53
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
54
|
+
- **`display_picture`** (`composite`)
|
|
55
|
+
- Composite: `_gen:display_picture`
|
|
56
|
+
- **`email`** (`text`) — Email address of the user.
|
|
57
|
+
- **`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.
|
|
58
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
59
|
+
- **`state`** (`enum`) — State of the user.
|
|
60
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
61
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
62
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
63
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
64
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
65
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
66
|
+
- **`developed_with`** (`[]composite`)
|
|
67
|
+
- Composite: `_gen:part-summary`
|
|
68
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
69
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
70
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
71
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
72
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
73
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
74
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
75
|
+
- **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
|
|
76
|
+
- **`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).
|
|
77
|
+
- **`modified_by`** (`composite`)
|
|
78
|
+
- Composite: `_gen:modified_by`
|
|
79
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
80
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
81
|
+
- **`display_picture`** (`composite`)
|
|
82
|
+
- Composite: `_gen:display_picture`
|
|
83
|
+
- **`email`** (`text`) — Email address of the user.
|
|
84
|
+
- **`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.
|
|
85
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
86
|
+
- **`state`** (`enum`) — State of the user.
|
|
87
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
88
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
89
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
90
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
91
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
92
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
93
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
94
|
+
- Composite: `_gen:user-summary`
|
|
95
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
96
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
97
|
+
- **`display_picture`** (`composite`)
|
|
98
|
+
- Composite: `_gen:display_picture`
|
|
99
|
+
- **`email`** (`text`) — Email address of the user.
|
|
100
|
+
- **`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.
|
|
101
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
102
|
+
- **`state`** (`enum`) — State of the user.
|
|
103
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
104
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
105
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
106
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
107
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
108
|
+
- **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
|
|
109
|
+
- Allowed: `p0`, `p1`, `p2`, `p3`
|
|
110
|
+
- **`reported_by`** (`[]composite`)
|
|
111
|
+
- Composite: `_gen:user-summary`
|
|
112
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
113
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
114
|
+
- **`display_picture`** (`composite`)
|
|
115
|
+
- Composite: `_gen:display_picture`
|
|
116
|
+
- **`email`** (`text`) — Email address of the user.
|
|
117
|
+
- **`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.
|
|
118
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
119
|
+
- **`state`** (`enum`) — State of the user.
|
|
120
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
121
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
122
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
123
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
124
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
125
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
126
|
+
- Composite: `_gen:sprint`
|
|
127
|
+
- **`end_date`** (`timestamp`) — Timestamp when the vista ends.
|
|
128
|
+
- **`name`** (`text`) **REQUIRED** — Name of the group.
|
|
129
|
+
- **`start_date`** (`timestamp`) — Timestamp when the vista starts.
|
|
130
|
+
- **`state`** (`enum`) — Defines the state of the group item.
|
|
131
|
+
- Allowed: `active`, `completed`, `planned`
|
|
132
|
+
- **`type`** (`enum`) **REQUIRED** — Type of the group object.
|
|
133
|
+
- Allowed: `curated`, `dynamic`
|
|
134
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
135
|
+
- ID type: `vista_group_item`
|
|
136
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
137
|
+
- Composite: `_gen:stage`
|
|
138
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
139
|
+
- **`stage`** (`composite`) — The stage of the issue.
|
|
140
|
+
- Composite: `stage.stage`
|
|
141
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
142
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
143
|
+
- Composite: `_gen:tags`
|
|
144
|
+
- **`tag`** (`composite`)
|
|
145
|
+
- Composite: `_gen:tag`
|
|
146
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
|
|
147
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
148
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
149
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
150
|
+
- ID type: `issue`
|