@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,44 @@
|
|
|
1
|
+
# `update_brand` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`description`** (`text`) — The updated description to set for the brand.
|
|
6
|
+
- Validation: max_len=65536
|
|
7
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the brand to be updated.
|
|
8
|
+
- ID type: `brand`
|
|
9
|
+
- **`name`** (`text`) — The updated name to set for the brand.
|
|
10
|
+
- Validation: min_len=1, max_len=255
|
|
11
|
+
|
|
12
|
+
## Output Port: `output`
|
|
13
|
+
|
|
14
|
+
- **`created_by`** (`composite`)
|
|
15
|
+
- Composite: `_gen:created_by`
|
|
16
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
17
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
18
|
+
- **`email`** (`text`) — Email address of the user.
|
|
19
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
20
|
+
- **`state`** (`enum`) — State of the user.
|
|
21
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
22
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
23
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
24
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
25
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
26
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
27
|
+
- **`description`** (`text`) — The description of the brand.
|
|
28
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
29
|
+
- **`modified_by`** (`composite`)
|
|
30
|
+
- Composite: `_gen:modified_by`
|
|
31
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
32
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
33
|
+
- **`email`** (`text`) — Email address of the user.
|
|
34
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
35
|
+
- **`state`** (`enum`) — State of the user.
|
|
36
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
37
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
38
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
39
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
40
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
41
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
42
|
+
- **`name`** (`text`) — The name of the brand.
|
|
43
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique Brand ID.
|
|
44
|
+
- ID type: `brand`
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# `update_contact` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`description`** (`text`) — The description of the contact.
|
|
6
|
+
- **`display_name`** (`text`) — The display name of the contact.
|
|
7
|
+
- **`email`** (`text`) — The email of the contact.
|
|
8
|
+
- **`external_refs`** (`[]text`) — External references associated with the contact.
|
|
9
|
+
- **`phone_numbers`** (`[]text`) — The phone numbers of the contact.
|
|
10
|
+
- **`tags`** (`[]composite`) — The tags of the contact.
|
|
11
|
+
- Composite: `_gen:tags`
|
|
12
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the tag.
|
|
13
|
+
- ID type: `tag`
|
|
14
|
+
- **`id`** (`id`) **REQUIRED** — ID of contact to be updated.
|
|
15
|
+
- ID type: `revu`
|
|
16
|
+
|
|
17
|
+
## Output Port: `output`
|
|
18
|
+
|
|
19
|
+
- **`created_by`** (`composite`)
|
|
20
|
+
- Composite: `_gen:created_by`
|
|
21
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
22
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
23
|
+
- **`email`** (`text`) — Email address of the user.
|
|
24
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
25
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
26
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
27
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
28
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
29
|
+
- **`created_date`** (`timestamp`) — Timestamp when the contact was created.
|
|
30
|
+
- **`description`** (`text`) — The description of the contact.
|
|
31
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
32
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
33
|
+
- **`email`** (`text`) — Email address of the user.
|
|
34
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
35
|
+
- **`is_verified`** (`bool`) — Whether the contact is verified.
|
|
36
|
+
- **`modified_by`** (`composite`)
|
|
37
|
+
- Composite: `_gen:modified_by`
|
|
38
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
39
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
40
|
+
- **`email`** (`text`) — Email address of the user.
|
|
41
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
42
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
43
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
44
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
45
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
46
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the contact was last modified.
|
|
47
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
48
|
+
- **`tags`** (`[]composite`) — Tags associated with the contact.
|
|
49
|
+
- Composite: `_gen:tags`
|
|
50
|
+
- **`tag`** (`composite`)
|
|
51
|
+
- Composite: `_gen:tag`
|
|
52
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
53
|
+
- ID type: `revu`
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# `update_conversation` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`id`** (`id`) **REQUIRED** — The id of the conversation.
|
|
6
|
+
- ID type: `conversation`
|
|
7
|
+
- **`title`** (`text`) — Updated title of the conversation, or unchanged if not provided.
|
|
8
|
+
- **`owned_by`** (`composite`)
|
|
9
|
+
- Composite: `_gen:owned_by`
|
|
10
|
+
- **`set`** (`[]id`) — Sets the owner IDs to the provided user IDs. This must not be empty.
|
|
11
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
12
|
+
- **`description`** (`text`) — The updated description for the conversation.
|
|
13
|
+
- **`stage_name`** (`enum`) — The stage of the conversation.
|
|
14
|
+
- Allowed: `suspended`, `needs_response`, `waiting_on_user`, `hold`, `resolved`, `archived`
|
|
15
|
+
- **`group`** (`id`) — The group that the conversation is associated with.
|
|
16
|
+
- ID type: `group`
|
|
17
|
+
- **`is_spam`** (`bool`) — Whether the conversation is spam.
|
|
18
|
+
- **`account`** (`id`) — The account associated with the conversation.
|
|
19
|
+
- ID type: `account`
|
|
20
|
+
- **`applies_to_parts`** (`composite`)
|
|
21
|
+
- Composite: `_gen:applies_to_parts`
|
|
22
|
+
- **`set`** (`[]id`) — Sets the part IDs to the provided part IDs. This must not be empty.
|
|
23
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
24
|
+
- **`is_frozen`** (`bool`) — Whether the conversation is frozen.
|
|
25
|
+
- **`owned_by_agent`** (`id`) — The ID of the AI agent that owns the conversation.
|
|
26
|
+
- ID type: `ai_agent`
|
|
27
|
+
- **`sentiment`** (`uenum`) — The sentiment of the conversation.
|
|
28
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp at which sentiment was last modified.
|
|
29
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the current sentiment.
|
|
30
|
+
- **`tags`** (`composite`)
|
|
31
|
+
- Composite: `_gen:tags`
|
|
32
|
+
- **`add`** (`[]composite`) — Adds the provided tags on the conversation. Note: Provide either 'add' or 'remove' but not both.
|
|
33
|
+
- Composite: `_gen:add`
|
|
34
|
+
- **`remove`** (`[]composite`) — Removes the provided tags on the conversation. Note: Provide either 'add' or 'remove' but not both.
|
|
35
|
+
- Composite: `_gen:remove`
|
|
36
|
+
|
|
37
|
+
## Output Port: `output`
|
|
38
|
+
|
|
39
|
+
- **`account`** (`composite`)
|
|
40
|
+
- Composite: `_gen:account`
|
|
41
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
42
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
43
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
44
|
+
- ID type: `account`
|
|
45
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
46
|
+
- Composite: `_gen:part-summary`
|
|
47
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
48
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
49
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
50
|
+
- Composite: `_gen:user-summary`
|
|
51
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
52
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
53
|
+
- **`id`** (`id`) **REQUIRED** — ID of the part attached to the conversation.
|
|
54
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
55
|
+
- **`created_by`** (`composite`)
|
|
56
|
+
- Composite: `_gen:created_by`
|
|
57
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
58
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
59
|
+
- **`email`** (`text`) — Email address of the user.
|
|
60
|
+
- **`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.
|
|
61
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
62
|
+
- **`rev_org`** (`composite`)
|
|
63
|
+
- Composite: `_gen:rev_org`
|
|
64
|
+
- **`state`** (`enum`) — State of the user.
|
|
65
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
66
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
67
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
68
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
69
|
+
- ID type: `revu`, `svcacc`
|
|
70
|
+
- **`created_date`** (`timestamp`) — Timestamp when the conversation was created.
|
|
71
|
+
- **`description`** (`text`) — The description of the conversation.
|
|
72
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
73
|
+
- **`group`** (`composite`)
|
|
74
|
+
- Composite: `_gen:group`
|
|
75
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
76
|
+
- **`id`** (`id`) **REQUIRED** — ID of the group
|
|
77
|
+
- ID type: `group`
|
|
78
|
+
- **`is_frozen`** (`bool`) — Whether the object is frozen or not.
|
|
79
|
+
- **`last_external_message_date`** (`timestamp`) — Timestamp of the last message in external discussion.
|
|
80
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
81
|
+
- Composite: `_gen:user-summary`
|
|
82
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
83
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
84
|
+
- **`email`** (`text`) — Email address of the user.
|
|
85
|
+
- **`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.
|
|
86
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
87
|
+
- **`rev_org`** (`composite`)
|
|
88
|
+
- Composite: `_gen:rev_org`
|
|
89
|
+
- **`state`** (`enum`) — State of the user.
|
|
90
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
91
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
92
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
93
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
94
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
95
|
+
- **`metadata`** (`composite`) — Metadata on conversation.
|
|
96
|
+
- Composite: `_gen:metadata`
|
|
97
|
+
- **`url_context`** (`text`) — URL from which the conversation was created if the conversation was created via PLuG.
|
|
98
|
+
- **`modified_by`** (`composite`)
|
|
99
|
+
- Composite: `_gen:modified_by`
|
|
100
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
101
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
102
|
+
- **`display_picture`** (`composite`)
|
|
103
|
+
- Composite: `_gen:display_picture`
|
|
104
|
+
- **`email`** (`text`) — Email address of the user.
|
|
105
|
+
- **`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.
|
|
106
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
107
|
+
- **`rev_org`** (`composite`)
|
|
108
|
+
- Composite: `_gen:rev_org`
|
|
109
|
+
- **`state`** (`enum`) — State of the user.
|
|
110
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
111
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
112
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
113
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
114
|
+
- ID type: `devu`, `revu`, `sysu`, `svcacc`
|
|
115
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the conversation was modified.
|
|
116
|
+
- **`owned_by`** (`[]composite`)
|
|
117
|
+
- Composite: `_gen:user-summary`
|
|
118
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
119
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
120
|
+
- **`email`** (`text`) — Email address of the user.
|
|
121
|
+
- **`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.
|
|
122
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
123
|
+
- **`rev_org`** (`composite`)
|
|
124
|
+
- Composite: `_gen:rev_org`
|
|
125
|
+
- **`state`** (`enum`) — State of the user.
|
|
126
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
127
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
128
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
129
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
130
|
+
- Allowed: `dev_user`, `sys_user`, `service_account`
|
|
131
|
+
- **`sentiment`** (`composite`) — The properties of an enum value.
|
|
132
|
+
- Composite: `_gen:sentiment`
|
|
133
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
134
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
135
|
+
- **`label`** (`enum`) **REQUIRED** — The display label of the enum value.
|
|
136
|
+
- Allowed: `Delighted`, `Happy`, `Neutral`, `Unhappy`, `Frustrated`
|
|
137
|
+
- **`sentiment_modified_date`** (`timestamp`) — Timestamp when the sentiment was last modified.
|
|
138
|
+
- **`sentiment_summary`** (`text`) — Summary justifying the sentiment.
|
|
139
|
+
- **`stage`** (`composite`) — The stage of the conversation.
|
|
140
|
+
- Composite: `_gen:conversation-properties.stage`
|
|
141
|
+
- **`name`** (`enum`) — The stage of the conversation.
|
|
142
|
+
- Allowed: `new`, `suspended`, `needs_response`, `waiting_on_user`, `hold`, `resolved`, `archived`
|
|
143
|
+
- **`tags`** (`[]composite`) — The tags associated with the conversation.
|
|
144
|
+
- Composite: `_gen:tags`
|
|
145
|
+
- **`tag`** (`composite`)
|
|
146
|
+
- Composite: `_gen:tag`
|
|
147
|
+
- **`title`** (`text`) — The title of the conversation.
|
|
148
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the updated conversation
|
|
149
|
+
- ID type: `conversation`
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# `update_enhancement` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`description`** (`text`) — The updated description of the enhancement.
|
|
6
|
+
- **`name`** (`text`) — The updated name of the enhancement.
|
|
7
|
+
- **`owned_by`** (`composite`)
|
|
8
|
+
- Composite: `_gen:owned_by`
|
|
9
|
+
- **`set`** (`[]id`) — The user that owns the enhancement.
|
|
10
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
11
|
+
- **`release_notes`** (`text`) — Updates the release notes of the enhancement.
|
|
12
|
+
- Validation: max_len=32768
|
|
13
|
+
- **`target_close_date`** (`timestamp`) — Updates the target close date of the enhancement.
|
|
14
|
+
- **`target_start_date`** (`timestamp`) — Updates the target start date of the enhancement.
|
|
15
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the enhancement
|
|
16
|
+
- ID type: `enhancement`
|
|
17
|
+
- **`stage_v2`** (`id`) — The stage of the enhancement.
|
|
18
|
+
- ID type: `custom_stage`
|
|
19
|
+
|
|
20
|
+
## Output Port: `output`
|
|
21
|
+
|
|
22
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
23
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
24
|
+
- **`created_by`** (`composite`)
|
|
25
|
+
- Composite: `_gen:created_by`
|
|
26
|
+
- **`display_id`** (`text`) — Display ID of the user who created the enhancement.
|
|
27
|
+
- **`display_name`** (`text`) — The display name of the user who created the enhancement.
|
|
28
|
+
- **`email`** (`text`) — Email address of the user.
|
|
29
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
30
|
+
- **`state`** (`enum`) — State of the user.
|
|
31
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
32
|
+
- **`id`** (`id`) — ID of the user.
|
|
33
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
34
|
+
- **`created_date`** (`timestamp`) — The date the enhancement was created.
|
|
35
|
+
- **`description`** (`text`) — The description of the enhancement.
|
|
36
|
+
- **`display_id`** (`text`) — The display ID of the enhancement.
|
|
37
|
+
- **`modified_by`** (`composite`)
|
|
38
|
+
- Composite: `_gen:modified_by`
|
|
39
|
+
- **`display_id`** (`text`) — Display ID of the user who modified the enhancement.
|
|
40
|
+
- **`display_name`** (`text`) — The display name of the user who modified the enhancement.
|
|
41
|
+
- **`email`** (`text`) — Email address of the user.
|
|
42
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
43
|
+
- **`state`** (`enum`) — State of the user.
|
|
44
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
45
|
+
- **`id`** (`id`) — ID of the user.
|
|
46
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
47
|
+
- **`modified_date`** (`timestamp`) — The date the enhancement was last modified.
|
|
48
|
+
- **`name`** (`text`) **REQUIRED** — The name of the enhancement.
|
|
49
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
50
|
+
- Composite: `_gen:user-summary`
|
|
51
|
+
- **`tags`** (`[]composite`) — The tags associated with the enhancement.
|
|
52
|
+
- Composite: `_gen:tags`
|
|
53
|
+
- **`tag`** (`composite`)
|
|
54
|
+
- Composite: `_gen:tag`
|
|
55
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
56
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
57
|
+
- **`id`** (`id`) **REQUIRED** — ID of the enhancement.
|
|
58
|
+
- ID type: `enhancement`
|
|
59
|
+
- **`stage_v2`** (`composite`) — The stage of the enhancement.
|
|
60
|
+
- Composite: `_gen:stage_v2`
|
|
61
|
+
- **`stage`** (`composite`)
|
|
62
|
+
- Composite: `_gen:stage`
|
|
63
|
+
- **`state`** (`composite`)
|
|
64
|
+
- Composite: `_gen:state`
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# `update_incident` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
|
|
6
|
+
- **`applies_to_parts`** (`composite`)
|
|
7
|
+
- Composite: `_gen:applies_to_parts`
|
|
8
|
+
- **`set`** (`[]id`) — Sets the parts to which the incident is applicable to
|
|
9
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
10
|
+
- **`body`** (`text`) — Body of the incident.
|
|
11
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the incident to be updated.
|
|
12
|
+
- ID type: `incident`
|
|
13
|
+
- **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
|
|
14
|
+
- **`impact`** (`composite`)
|
|
15
|
+
- Composite: `_gen:impact`
|
|
16
|
+
- **`count`** (`int`) — Count of customers impacted.
|
|
17
|
+
- **`customer_ids`** (`composite`)
|
|
18
|
+
- Composite: `_gen:customer_ids`
|
|
19
|
+
- **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
|
|
20
|
+
- **`owned_by`** (`composite`)
|
|
21
|
+
- Composite: `_gen:owned_by`
|
|
22
|
+
- **`set`** (`[]id`) — The users that own the incident
|
|
23
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
24
|
+
- **`pia`** (`composite`)
|
|
25
|
+
- Composite: `_gen:pia`
|
|
26
|
+
- **`set`** (`[]id`) — The article id of the Post-Incident Analysis(PIA) of the incident.
|
|
27
|
+
- ID type: `article`
|
|
28
|
+
- **`severity`** (`int`) — Severity of the incident.
|
|
29
|
+
- **`tags`** (`composite`)
|
|
30
|
+
- Composite: `_gen:tags`
|
|
31
|
+
- **`set`** (`[]composite`) — Sets the tags associated with the object.
|
|
32
|
+
- Composite: `_gen:set`
|
|
33
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
|
|
34
|
+
- **`title`** (`text`) — Title of the incident.
|
|
35
|
+
- **`stage`** (`id`) — The stage of the incident.
|
|
36
|
+
- ID type: `custom_stage`
|
|
37
|
+
|
|
38
|
+
## Output Port: `output`
|
|
39
|
+
|
|
40
|
+
- **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
|
|
41
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the incident was actually resolved.
|
|
42
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
43
|
+
- Composite: `_gen:part-summary`
|
|
44
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
45
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
46
|
+
- Composite: `_gen:user-summary`
|
|
47
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
48
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — ID of the part attached to the incident.
|
|
50
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
51
|
+
- **`body`** (`text`) — Body of the incident.
|
|
52
|
+
- **`created_by`** (`composite`)
|
|
53
|
+
- Composite: `_gen:created_by`
|
|
54
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
55
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
56
|
+
- **`display_picture`** (`composite`)
|
|
57
|
+
- Composite: `_gen:display_picture`
|
|
58
|
+
- **`email`** (`text`) — Email address of the user.
|
|
59
|
+
- **`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.
|
|
60
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
61
|
+
- **`rev_org`** (`composite`)
|
|
62
|
+
- Composite: `_gen:rev_org`
|
|
63
|
+
- **`state`** (`enum`) — State of the user.
|
|
64
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
65
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
66
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
67
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
68
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
69
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
70
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
71
|
+
- **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
|
|
72
|
+
- **`impact`** (`composite`) — Details of the impact due to the incident.
|
|
73
|
+
- Composite: `_gen:impact`
|
|
74
|
+
- **`count`** (`composite`) — The properties of an enum value.
|
|
75
|
+
- Composite: `_gen:count`
|
|
76
|
+
- **`customer_ids`** (`[]composite`)
|
|
77
|
+
- Composite: `_gen:account-summary`
|
|
78
|
+
- **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
|
|
79
|
+
- **`modified_by`** (`composite`)
|
|
80
|
+
- Composite: `_gen:modified_by`
|
|
81
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
82
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
83
|
+
- **`display_picture`** (`composite`)
|
|
84
|
+
- Composite: `_gen:display_picture`
|
|
85
|
+
- **`email`** (`text`) — Email address of the user.
|
|
86
|
+
- **`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.
|
|
87
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
88
|
+
- **`rev_org`** (`composite`)
|
|
89
|
+
- Composite: `_gen:rev_org`
|
|
90
|
+
- **`state`** (`enum`) — State of the user.
|
|
91
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
92
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
93
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
94
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
95
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
96
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
97
|
+
- **`owned_by`** (`[]composite`)
|
|
98
|
+
- Composite: `_gen:user-summary`
|
|
99
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
100
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
101
|
+
- **`display_picture`** (`composite`)
|
|
102
|
+
- Composite: `_gen:display_picture`
|
|
103
|
+
- **`email`** (`text`) — Email address of the user.
|
|
104
|
+
- **`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.
|
|
105
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
106
|
+
- **`rev_org`** (`composite`)
|
|
107
|
+
- Composite: `_gen:rev_org`
|
|
108
|
+
- **`state`** (`enum`) — State of the user.
|
|
109
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
110
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
111
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
112
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
113
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
114
|
+
- **`pia`** (`[]composite`)
|
|
115
|
+
- Composite: `_gen:article-summary`
|
|
116
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
117
|
+
- **`resource`** (`composite`) — Resource details.
|
|
118
|
+
- Composite: `_gen:resource`
|
|
119
|
+
- **`title`** (`text`) — Title of the article.
|
|
120
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
121
|
+
- ID type: `article`
|
|
122
|
+
- **`playbooks`** (`[]composite`)
|
|
123
|
+
- Composite: `_gen:article-summary_95fca9c7`
|
|
124
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
125
|
+
- **`resource`** (`composite`) — Resource details.
|
|
126
|
+
- Composite: `_gen:resource`
|
|
127
|
+
- **`title`** (`text`) — Title of the article.
|
|
128
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
129
|
+
- ID type: `article`
|
|
130
|
+
- **`reported_by`** (`composite`) — The entity that reported the incident.
|
|
131
|
+
- Composite: `_gen:reported_by`
|
|
132
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
133
|
+
- **`label`** (`text`) **REQUIRED** — The label for the entity that reported the incident. Use id instead as labels can change overtime.
|
|
134
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
135
|
+
- **`severity`** (`composite`) — Severity of the incident.
|
|
136
|
+
- Composite: `_gen:severity`
|
|
137
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
138
|
+
- **`label`** (`text`) **REQUIRED** — The label for the severity. Use id instead as labels can change overtime.
|
|
139
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
140
|
+
- **`source`** (`composite`) — The source of the incident.
|
|
141
|
+
- Composite: `_gen:source`
|
|
142
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
143
|
+
- **`label`** (`text`) **REQUIRED** — The label for the source. Use id instead as labels can change overtime.
|
|
144
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
145
|
+
- **`stage`** (`composite`) — Stage of the incident.
|
|
146
|
+
- Composite: `_gen:stage`
|
|
147
|
+
- **`stage`** (`composite`) — The stage of the incident.
|
|
148
|
+
- Composite: `stage.stage`
|
|
149
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
150
|
+
- Composite: `_gen:tags`
|
|
151
|
+
- **`tag`** (`composite`)
|
|
152
|
+
- Composite: `_gen:tag`
|
|
153
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
|
|
154
|
+
- **`title`** (`text`) **REQUIRED** — Title of the incident.
|
|
155
|
+
- **`id`** (`id`) **REQUIRED** — ID of the incident.
|
|
156
|
+
- ID type: `incident`
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# `update_issue` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`artifacts`** (`composite`)
|
|
6
|
+
- Composite: `_gen:artifacts`
|
|
7
|
+
- **`add`** (`[]id`) — Adds the provided artifacts (if not already present) to the field.
|
|
8
|
+
- ID type: `artifact`
|
|
9
|
+
- **`remove`** (`[]id`) — Removes the provided artifacts (if they exist) from the field.
|
|
10
|
+
- ID type: `artifact`
|
|
11
|
+
- **`set`** (`[]id`) — Sets the field to the provided artifacts.
|
|
12
|
+
- ID type: `artifact`
|
|
13
|
+
- **`body`** (`text`) — Updated body of the issue, or unchanged if not provided.
|
|
14
|
+
- Validation: max_len=65536
|
|
15
|
+
- **`developed_with`** (`composite`)
|
|
16
|
+
- Composite: `_gen:developed_with`
|
|
17
|
+
- **`set`** (`[]id`) — Sets the IDs of the parts associated with issue.
|
|
18
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
19
|
+
- **`owned_by`** (`composite`)
|
|
20
|
+
- Composite: `_gen:owned_by`
|
|
21
|
+
- **`set`** (`[]id`) — Sets the owner IDs to the provided user IDs. This must not be empty.
|
|
22
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
23
|
+
- **`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: ``` { "id": 1, "label": "P0", "ordinal": 1, "overridable": true }, { "id": 2, "label": "P1", "ordinal": 2, "overridable": true }, { "id": 3, "label": "P2", "ordinal": 3, "overridable": true }, { "id": 4, "label": "P3", "ordinal": 4, "overridable": true } ```
|
|
24
|
+
- **`reported_by`** (`composite`)
|
|
25
|
+
- Composite: `_gen:reported_by`
|
|
26
|
+
- **`set`** (`[]id`) — Sets the reported by user IDs to the provided user IDs.
|
|
27
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
28
|
+
- **`sprint`** (`id`) — Updates the sprint that the issue belongs to.
|
|
29
|
+
- ID type: `vista_group_item`
|
|
30
|
+
- **`tags`** (`composite`)
|
|
31
|
+
- Composite: `_gen:tags`
|
|
32
|
+
- **`add`** (`[]composite`) — Adds the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.
|
|
33
|
+
- Composite: `_gen:add`
|
|
34
|
+
- **`remove`** (`[]composite`) — Removes the provided tags on the issue. Note: Provide either 'add' or 'remove' but not both.
|
|
35
|
+
- Composite: `_gen:remove`
|
|
36
|
+
- **`target_close_date`** (`timestamp`) — Updates the timestamp for when the issue is expected to be complete.
|
|
37
|
+
- **`target_start_date`** (`timestamp`) — Updates the timestamp for when the issue is expected to start.
|
|
38
|
+
- **`title`** (`text`) — Updated title of the issue, or unchanged if not provided.
|
|
39
|
+
- Validation: min_len=1, max_len=256
|
|
40
|
+
- **`applies_to_part`** (`id`) — Updates the part that the issue applies to.
|
|
41
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
42
|
+
- **`id`** (`id`) **REQUIRED** — The ID of issue to update.
|
|
43
|
+
- ID type: `issue`
|
|
44
|
+
- **`stage`** (`id`) — The stage of the issue.
|
|
45
|
+
- ID type: `custom_stage`
|
|
46
|
+
|
|
47
|
+
## Output Port: `output`
|
|
48
|
+
|
|
49
|
+
- **`applies_to_part`** (`composite`)
|
|
50
|
+
- Composite: `_gen:applies_to_part`
|
|
51
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
52
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
53
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
54
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
55
|
+
- Composite: `_gen:user-summary`
|
|
56
|
+
- **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
|
|
57
|
+
- Composite: `_gen:sync_metadata`
|
|
58
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
59
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
60
|
+
- **`artifacts`** (`[]composite`)
|
|
61
|
+
- Composite: `_gen:artifact-summary`
|
|
62
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
63
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
64
|
+
- **`body`** (`text`) — Body of the work object.
|
|
65
|
+
- **`created_by`** (`composite`)
|
|
66
|
+
- Composite: `_gen:created_by`
|
|
67
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
68
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
69
|
+
- **`display_picture`** (`composite`)
|
|
70
|
+
- Composite: `_gen:display_picture`
|
|
71
|
+
- **`email`** (`text`) — Email address of the user.
|
|
72
|
+
- **`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.
|
|
73
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
74
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
75
|
+
- **`rev_org`** (`composite`)
|
|
76
|
+
- Composite: `_gen:rev_org`
|
|
77
|
+
- **`state`** (`enum`) — State of the user.
|
|
78
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
79
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
80
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
81
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
82
|
+
- **`developed_with`** (`[]composite`)
|
|
83
|
+
- Composite: `_gen:part-summary`
|
|
84
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
85
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
86
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
87
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
88
|
+
- Composite: `_gen:user-summary`
|
|
89
|
+
- **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
|
|
90
|
+
- Composite: `_gen:sync_metadata`
|
|
91
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
92
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
93
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
94
|
+
- **`estimated_effort`** (`double`) — Estimated effort to complete the issue.
|
|
95
|
+
- **`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).
|
|
96
|
+
- **`modified_by`** (`composite`)
|
|
97
|
+
- Composite: `_gen:modified_by`
|
|
98
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
99
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
100
|
+
- **`display_picture`** (`composite`)
|
|
101
|
+
- Composite: `_gen:display_picture`
|
|
102
|
+
- **`email`** (`text`) — Email address of the user.
|
|
103
|
+
- **`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.
|
|
104
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
105
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
106
|
+
- **`rev_org`** (`composite`)
|
|
107
|
+
- Composite: `_gen:rev_org`
|
|
108
|
+
- **`state`** (`enum`) — State of the user.
|
|
109
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
110
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
111
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
112
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
113
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
114
|
+
- Composite: `_gen:user-summary`
|
|
115
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
116
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
117
|
+
- **`display_picture`** (`composite`)
|
|
118
|
+
- Composite: `_gen:display_picture`
|
|
119
|
+
- **`email`** (`text`) — Email address of the user.
|
|
120
|
+
- **`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.
|
|
121
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
122
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
123
|
+
- **`rev_org`** (`composite`)
|
|
124
|
+
- Composite: `_gen:rev_org`
|
|
125
|
+
- **`state`** (`enum`) — State of the user.
|
|
126
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
127
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
128
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
129
|
+
- **`priority`** (`enum`) — Priority of the work based upon impact and criticality.
|
|
130
|
+
- Allowed: `p0`, `p1`, `p2`, `p3`
|
|
131
|
+
- **`reported_by`** (`[]composite`)
|
|
132
|
+
- Composite: `_gen:user-summary`
|
|
133
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
134
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
135
|
+
- **`display_picture`** (`composite`)
|
|
136
|
+
- Composite: `_gen:display_picture`
|
|
137
|
+
- **`email`** (`text`) — Email address of the user.
|
|
138
|
+
- **`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.
|
|
139
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
140
|
+
- **`id`** (`text`) **REQUIRED** — Globally unique object ID.
|
|
141
|
+
- **`rev_org`** (`composite`)
|
|
142
|
+
- Composite: `_gen:rev_org`
|
|
143
|
+
- **`state`** (`enum`) — State of the user.
|
|
144
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
145
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
146
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
147
|
+
- **`sprint`** (`composite`) — Vista group item.
|
|
148
|
+
- Composite: `_gen:sprint`
|
|
149
|
+
- **`end_date`** (`timestamp`) — Timestamp when the vista ends.
|
|
150
|
+
- **`id`** (`text`) **REQUIRED** — ID of the group item in don v2 format.
|
|
151
|
+
- **`name`** (`text`) **REQUIRED** — Name of the group.
|
|
152
|
+
- **`start_date`** (`timestamp`) — Timestamp when the vista starts.
|
|
153
|
+
- **`state`** (`enum`) — Defines the state of the group item.
|
|
154
|
+
- Allowed: `active`, `completed`, `planned`
|
|
155
|
+
- **`type`** (`enum`) **REQUIRED** — Type of the group object.
|
|
156
|
+
- Allowed: `curated`, `dynamic`
|
|
157
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
158
|
+
- Composite: `_gen:stage`
|
|
159
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
160
|
+
- **`stage`** (`composite`) — The stage of the issue.
|
|
161
|
+
- Composite: `stage.stage`
|
|
162
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
163
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
164
|
+
- Composite: `_gen:tags`
|
|
165
|
+
- **`tag`** (`composite`)
|
|
166
|
+
- Composite: `_gen:tag`
|
|
167
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the work is expected to be complete.
|
|
168
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
169
|
+
- **`title`** (`text`) **REQUIRED** — Title of the work object.
|
|
170
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
171
|
+
- Allowed: `issue`, `opportunity`, `task`, `ticket`
|
|
172
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
173
|
+
- ID type: `issue`
|