@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,106 @@
|
|
|
1
|
+
# `loop_over_accounts` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`created_by`** (`[]id`) — Filters for accounts created by the specified user(s).
|
|
6
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
7
|
+
- **`created_date`** (`composite`)
|
|
8
|
+
- Composite: `_gen:created_date`
|
|
9
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
10
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
11
|
+
- **`display_name`** (`[]text`) — Array of display names of accounts to be filtered.
|
|
12
|
+
- **`domains`** (`[]text`) — Domains for accounts to be filtered.
|
|
13
|
+
- **`external_refs`** (`[]text`) — Array of references of accounts to be filtered.
|
|
14
|
+
- **`modified_date`** (`composite`)
|
|
15
|
+
- Composite: `_gen:modified_date`
|
|
16
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
17
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
18
|
+
- **`owned_by`** (`[]id`) — Filters for accounts owned by the specified user(s).
|
|
19
|
+
- ID type: `devu`, `sysu`
|
|
20
|
+
- **`stage`** (`[]id`) — Filters for accounts on specified stages.
|
|
21
|
+
- ID type: `custom_stage`
|
|
22
|
+
- **`tier`** (`[]text`) — Tier of the accounts to be filtered.
|
|
23
|
+
- **`websites`** (`[]text`) — Array of websites of accounts to be filtered.
|
|
24
|
+
- **`tags`** (`[]id`) — Filters for accounts with any of the provided tags.
|
|
25
|
+
- ID type: `tag`
|
|
26
|
+
- **`limit`** (`int`) — The maximum number of accounts to return. Maximum is 1000.
|
|
27
|
+
|
|
28
|
+
## Input Port: `block_callback`
|
|
29
|
+
|
|
30
|
+
_No input fields (trigger or system-provided)._
|
|
31
|
+
|
|
32
|
+
## Output Port: `block_start`
|
|
33
|
+
|
|
34
|
+
- **`artifacts`** (`[]composite`)
|
|
35
|
+
- Composite: `_gen:artifact-summary`
|
|
36
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
37
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
38
|
+
- Composite: `_gen:file`
|
|
39
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
40
|
+
- ID type: `artifact`
|
|
41
|
+
- **`created_by`** (`composite`)
|
|
42
|
+
- Composite: `_gen:created_by`
|
|
43
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
44
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
45
|
+
- **`display_picture`** (`composite`)
|
|
46
|
+
- Composite: `_gen:display_picture`
|
|
47
|
+
- **`email`** (`text`) — Email address of the user.
|
|
48
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
49
|
+
- **`state`** (`enum`) — State of the user.
|
|
50
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
51
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
52
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
53
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
54
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
55
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
56
|
+
- **`description`** (`text`) — Description of the corresponding Account.
|
|
57
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
58
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
59
|
+
- **`domains`** (`[]text`) — Company's domain names. Example - 'devrev.ai'.
|
|
60
|
+
- **`external_refs`** (`[]text`) — External refs are unique identifiers from your customer system of records, stored as a list.
|
|
61
|
+
- **`modified_by`** (`composite`)
|
|
62
|
+
- Composite: `_gen:modified_by`
|
|
63
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
64
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
65
|
+
- **`display_picture`** (`composite`)
|
|
66
|
+
- Composite: `_gen:display_picture`
|
|
67
|
+
- **`email`** (`text`) — Email address of the user.
|
|
68
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
69
|
+
- **`state`** (`enum`) — State of the user.
|
|
70
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
71
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
72
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
73
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
74
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
75
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
76
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
77
|
+
- Composite: `_gen:user-summary`
|
|
78
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
79
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
80
|
+
- **`display_picture`** (`composite`)
|
|
81
|
+
- Composite: `_gen:display_picture`
|
|
82
|
+
- **`email`** (`text`) — Email address of the user.
|
|
83
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
84
|
+
- **`state`** (`enum`) — State of the user.
|
|
85
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
86
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
87
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
88
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
89
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
90
|
+
- **`primary_account`** (`composite`)
|
|
91
|
+
- Composite: `_gen:primary_account`
|
|
92
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
93
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
94
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique Account ID.
|
|
95
|
+
- ID type: `account`
|
|
96
|
+
- **`stock_schema_fragment`** (`id`) — Stock schema fragment.
|
|
97
|
+
- ID type: `app_fragment`, `custom_type_fragment`, `stock_sf`, `tenant_fragment`
|
|
98
|
+
- **`tags`** (`[]composite`) — Tags associated with an object.
|
|
99
|
+
- Composite: `_gen:tags`
|
|
100
|
+
- **`tag`** (`composite`)
|
|
101
|
+
- Composite: `_gen:tag`
|
|
102
|
+
- **`value`** (`text`) — The value for the object's association with the tag.
|
|
103
|
+
- **`tier`** (`text`) — The Tier of the corresponding Account.
|
|
104
|
+
- **`websites`** (`[]text`) — Company's website links. Filling in this property will also fill in domain. Example - 'www.devrev.ai'.
|
|
105
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique Account ID.
|
|
106
|
+
- ID type: `account`
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# `loop_over_articles` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`article_type`** (`[]enum`) — Filter for the type of articles.
|
|
6
|
+
- Allowed: `article`, `content_block`, `page`
|
|
7
|
+
- **`limit`** (`int`) — The maximum number of articles to return. The default is '50'.
|
|
8
|
+
- **`parent`** (`[]id`) — Filters for articles with the provided parent directories.
|
|
9
|
+
- ID type: `directory`
|
|
10
|
+
- **`shared_with`** (`[]composite`) — Filter for articles based on intended audience.
|
|
11
|
+
- Composite: `_gen:shared_with`
|
|
12
|
+
- **`member`** (`id`) — ID of the group/member with whom the item is shared.
|
|
13
|
+
- ID type: `devu`, `group`, `revu`, `sysu`
|
|
14
|
+
- **`role`** (`id`) — Role ID of the group/member with whom the item is shared.
|
|
15
|
+
- ID type: `role`
|
|
16
|
+
- **`status`** (`[]enum`) — Filters for status of the articles.
|
|
17
|
+
- Allowed: `archived`, `draft`, `published`, `review_needed`
|
|
18
|
+
- **`sync_metadata`** (`composite`)
|
|
19
|
+
- Composite: `_gen:sync_metadata`
|
|
20
|
+
- **`external_reference`** (`[]text`) — Filters for issues with this specific external reference.
|
|
21
|
+
- **`last_sync_in`** (`composite`)
|
|
22
|
+
- Composite: `_gen:last_sync_in`
|
|
23
|
+
- **`last_sync_out`** (`composite`)
|
|
24
|
+
- Composite: `_gen:last_sync_out`
|
|
25
|
+
- **`origin_system`** (`[]text`) — Filters for issues synced from this specific origin system.
|
|
26
|
+
- **`tags`** (`[]id`) — Filters for article with any of the provided tags.
|
|
27
|
+
- ID type: `tag`
|
|
28
|
+
- **`applies_to_parts`** (`[]id`) — Filters for articles belonging to any parts.
|
|
29
|
+
- ID type: `product`, `feature`, `capability`, `enhancement`, `runnable`, `linkable`
|
|
30
|
+
- **`owned_by`** (`[]id`) — Filters for articles owned by internal users only.
|
|
31
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
32
|
+
- **`created_by`** (`[]id`) — Filters for articles created by internal users only.
|
|
33
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
34
|
+
- **`modified_by`** (`[]id`) — Filters for articles modified by internal users only.
|
|
35
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
36
|
+
- **`authored_by`** (`[]id`) — Filters for articles authored by internal users only.
|
|
37
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
38
|
+
|
|
39
|
+
## Input Port: `block_callback`
|
|
40
|
+
|
|
41
|
+
_No input fields (trigger or system-provided)._
|
|
42
|
+
|
|
43
|
+
## Output Port: `block_start`
|
|
44
|
+
|
|
45
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
46
|
+
- Composite: `_gen:part-summary`
|
|
47
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
48
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
49
|
+
- Composite: `_gen:user-summary`
|
|
50
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
51
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
52
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
53
|
+
- ID type: `product`, `feature`, `capability`, `enhancement`, `runnable`, `linkable`
|
|
54
|
+
- **`article_type`** (`enum`) — Type of the article.
|
|
55
|
+
- Allowed: `article`, `content_block`, `page`
|
|
56
|
+
- **`authored_by`** (`[]composite`)
|
|
57
|
+
- Composite: `_gen:user-summary`
|
|
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
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
61
|
+
- **`state`** (`enum`) — State of the user.
|
|
62
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
63
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
64
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
65
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
66
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
67
|
+
- **`created_by`** (`composite`)
|
|
68
|
+
- Composite: `_gen:created_by`
|
|
69
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
70
|
+
- **`email`** (`text`) — Email address of the user.
|
|
71
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
72
|
+
- **`state`** (`enum`) — State of the user.
|
|
73
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
74
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
75
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
76
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
77
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
78
|
+
- **`created_date`** (`timestamp`) — Timestamp when the article was created.
|
|
79
|
+
- **`description`** (`text`) — Description of the article.
|
|
80
|
+
- **`modified_by`** (`composite`)
|
|
81
|
+
- Composite: `_gen:modified_by`
|
|
82
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
83
|
+
- **`email`** (`text`) — Email address of the user.
|
|
84
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
85
|
+
- **`state`** (`enum`) — State of the user.
|
|
86
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
87
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
88
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
89
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
90
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
91
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the article was last modified.
|
|
92
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
93
|
+
- Composite: `_gen:user-summary`
|
|
94
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
95
|
+
- **`email`** (`text`) — Email address of the user.
|
|
96
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
97
|
+
- **`state`** (`enum`) — State of the user.
|
|
98
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
99
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
100
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
101
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
102
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
103
|
+
- **`parent`** (`composite`)
|
|
104
|
+
- Composite: `_gen:parent`
|
|
105
|
+
- **`title`** (`text`) — Title of the directory.
|
|
106
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
107
|
+
- ID type: `directory`
|
|
108
|
+
- **`resource`** (`composite`) — Resource details.
|
|
109
|
+
- Composite: `_gen:resource`
|
|
110
|
+
- **`artifacts`** (`[]composite`)
|
|
111
|
+
- Composite: `_gen:artifact-summary`
|
|
112
|
+
- **`url`** (`text`) — URL of the resource (relevant only for type url).
|
|
113
|
+
- **`scope`** (`composite`) — The properties of an enum value.
|
|
114
|
+
- Composite: `_gen:scope`
|
|
115
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
116
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
117
|
+
- **`status`** (`enum`) — Status of the article.
|
|
118
|
+
- Allowed: `archived`, `draft`, `published`, `review_needed`
|
|
119
|
+
- **`tags`** (`[]composite`) — Tags associated with the article.
|
|
120
|
+
- Composite: `_gen:tags`
|
|
121
|
+
- **`tag`** (`composite`)
|
|
122
|
+
- Composite: `_gen:tag`
|
|
123
|
+
- **`value`** (`text`) — The value for the object's association with the tag.
|
|
124
|
+
- **`title`** (`text`) — Title of the article.
|
|
125
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
126
|
+
- ID type: `article`
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# `loop_over_customers` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`associations`** (`[]id`) — Filters for customers with specified associations (account/workspace).
|
|
6
|
+
- ID type: `account`, `revo`
|
|
7
|
+
- **`created_by`** (`[]id`) — Filters for customers that were created by the specified user(s).
|
|
8
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
9
|
+
- **`created_date`** (`composite`)
|
|
10
|
+
- Composite: `_gen:created_date`
|
|
11
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
12
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
13
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
14
|
+
- Allowed: `range`
|
|
15
|
+
- **`email`** (`[]text`) — List of emails of customers to be filtered.
|
|
16
|
+
- **`external_ref`** (`[]text`) — List of external refs to filter customers for.
|
|
17
|
+
- **`external_refs`** (`[]text`) — Filters for customers with the provided external_refs.
|
|
18
|
+
- **`is_verified`** (`bool`) — Value of is_verified field to filter the customers.
|
|
19
|
+
- **`modified_date`** (`composite`)
|
|
20
|
+
- Composite: `_gen:modified_date`
|
|
21
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
22
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
23
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
24
|
+
- Allowed: `range`
|
|
25
|
+
- **`phone_numbers`** (`[]text`) — List of phone numbers, in E.164 format, to filter customers on.
|
|
26
|
+
- **`rev_org`** (`[]id`) — List of IDs of customer organizations to be filtered.
|
|
27
|
+
- ID type: `revo`
|
|
28
|
+
- **`limit`** (`int`) — The maximum number of customers to return. Maximum is 1000.
|
|
29
|
+
- **`tags`** (`[]id`) — List of tags to be filtered.
|
|
30
|
+
- ID type: `tag`
|
|
31
|
+
|
|
32
|
+
## Input Port: `block_callback`
|
|
33
|
+
|
|
34
|
+
_No input fields (trigger or system-provided)._
|
|
35
|
+
|
|
36
|
+
## Output Port: `block_start`
|
|
37
|
+
|
|
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
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
45
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
46
|
+
- **`type`** (`enum`) **REQUIRED** — The type of the user.
|
|
47
|
+
- Allowed: `devu`, `sysu`, `svcacc`
|
|
48
|
+
- **`created_date`** (`timestamp`) — Timestamp when the contact was created.
|
|
49
|
+
- **`description`** (`text`) — The description of the contact.
|
|
50
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
51
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
52
|
+
- **`display_picture`** (`composite`)
|
|
53
|
+
- Composite: `_gen:user-base-properties.display_picture`
|
|
54
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
55
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
56
|
+
- ID type: `artifact`
|
|
57
|
+
- **`email`** (`text`) — Email address of the user.
|
|
58
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
59
|
+
- **`is_verified`** (`bool`) — Whether the customer is verified or not.
|
|
60
|
+
- **`modified_by`** (`composite`)
|
|
61
|
+
- Composite: `_gen:modified_by`
|
|
62
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
63
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
64
|
+
- **`email`** (`text`) — Email address of the user.
|
|
65
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
66
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
67
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
68
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
69
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
70
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the contact was last modified.
|
|
71
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
72
|
+
- **`rev_org`** (`composite`)
|
|
73
|
+
- Composite: `_gen:rev_org`
|
|
74
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
75
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
76
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
77
|
+
- Allowed: `account`, `rev_org`
|
|
78
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
79
|
+
- ID type: `revo`
|
|
80
|
+
- **`state`** (`enum`) — State of the user.
|
|
81
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
82
|
+
- **`tags`** (`[]composite`) — Tags associated with the contact.
|
|
83
|
+
- Composite: `_gen:tags`
|
|
84
|
+
- **`tag`** (`composite`)
|
|
85
|
+
- Composite: `_gen:tag`
|
|
86
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
87
|
+
- ID type: `revu`
|
|
88
|
+
- **`external_ref`** (`text`) — External ref is a mutable unique identifier for a user within the Customer organization from your primary customer record. If none is available, a good alternative is the email address/phone number which could uniquely identify the user. If none is specified, a system-generated identifier will be assigned to the user.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# `loop_over_dev_users` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
6
|
+
- Composite: `_gen:created_date`
|
|
7
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
8
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
9
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
10
|
+
- Allowed: `range`
|
|
11
|
+
- **`email`** (`[]text`) — Filters Dev users based on email addresses.
|
|
12
|
+
- **`modified_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
13
|
+
- Composite: `_gen:modified_date`
|
|
14
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
15
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
16
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
17
|
+
- Allowed: `range`
|
|
18
|
+
- **`phone_numbers`** (`[]text`) — List of phone numbers, in E.164 format, to filter Dev users on.
|
|
19
|
+
- **`state`** (`[]enum`) — Filters Dev users based on state.
|
|
20
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
21
|
+
- **`timezone`** (`[]text`) — Filters for Dev users in the specified time zone in IANA format (e.g., 'America/Los_Angeles').
|
|
22
|
+
- **`limit`** (`int`) — The maximum number of dev users to return. Maximum is 1000.
|
|
23
|
+
|
|
24
|
+
## Input Port: `block_callback`
|
|
25
|
+
|
|
26
|
+
_No input fields (trigger or system-provided)._
|
|
27
|
+
|
|
28
|
+
## Output Port: `block_start`
|
|
29
|
+
|
|
30
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the current dev user.
|
|
31
|
+
- ID type: `devu`
|
|
32
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
33
|
+
- **`display_name`** (`text`) — The display name of the current dev user.
|
|
34
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
35
|
+
- **`email`** (`text`) — Email address of the user.
|
|
36
|
+
- **`state`** (`enum`) — State of the user.
|
|
37
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
38
|
+
- **`availability_modes`** (`[]composite`) — The availability modes of the user. Stock allowed values: ``` { "id": 1, "label": "Ticket", "ordinal": 1, "overridable": false }, { "id": 2, "label": "Conversation", "ordinal": 2, "overridable": false }, { "id": 3, "label": "Issue", "ordinal": 3, "overridable": false }, { "id": 4, "label": "Incident", "ordinal": 4, "overridable": false }, { "id": 5, "label": "Away", "ordinal": 5, "overridable": false }, { "id": 6, "label": "Sick", "ordinal": 6, "overridable": false }, { "id": 7, "label": "Lunch", "ordinal": 7, "overridable": false }, { "id": 8, "label": "Travel", "ordinal": 8, "overridable": false }, { "id": 9, "label": "Vacation", "ordinal": 9, "overridable": false } ```
|
|
39
|
+
- Composite: `_gen:availability_modes`
|
|
40
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
41
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
42
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
43
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
44
|
+
- **`display_picture`** (`composite`)
|
|
45
|
+
- Composite: `_gen:user-base-properties.display_picture`
|
|
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
|
+
- **`experience_start_date`** (`timestamp`) — Start date of the user's employment.
|
|
50
|
+
- **`job_history`** (`[]composite`) — Job history of the user.
|
|
51
|
+
- Composite: `_gen:job_history`
|
|
52
|
+
- **`employment_status`** (`composite`) — The properties of an enum value.
|
|
53
|
+
- Composite: `_gen:employment_status`
|
|
54
|
+
- **`end_date`** (`timestamp`) — The end date of the job, or not specified if current.
|
|
55
|
+
- **`is_current`** (`bool`) — Is this the current active job for the user.
|
|
56
|
+
- **`location`** (`text`) — The job location for the user.
|
|
57
|
+
- **`start_date`** (`timestamp`) — The start date of the job.
|
|
58
|
+
- **`title`** (`text`) — The job title for the user.
|
|
59
|
+
- **`phone_numbers`** (`[]text`) — Phone numbers of the user.
|
|
60
|
+
- **`reports_to`** (`composite`)
|
|
61
|
+
- Composite: `_gen:reports_to`
|
|
62
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
63
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
64
|
+
- **`email`** (`text`) — Email address of the user.
|
|
65
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
66
|
+
- **`state`** (`enum`) — State of the user.
|
|
67
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
68
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
69
|
+
- ID type: `devu`
|
|
70
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
71
|
+
- Allowed: `dev_user`
|
|
72
|
+
- **`skills`** (`[]composite`) — Array of skills of the user.
|
|
73
|
+
- Composite: `_gen:skills`
|
|
74
|
+
- **`name`** (`text`) — Name of the skill.
|
|
75
|
+
- **`timezone`** (`text`) — The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata', 'America/New_York').
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# `loop_over_enhancements` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`accounts`** (`[]id`) — Filters for enhancement by its accounts.
|
|
6
|
+
- ID type: `account`
|
|
7
|
+
- **`actual_close_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
8
|
+
- Composite: `_gen:actual_close_date_v2`
|
|
9
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
10
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
11
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
12
|
+
- Allowed: `range`
|
|
13
|
+
- **`actual_start_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
14
|
+
- Composite: `_gen:actual_start_date_v2`
|
|
15
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
16
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
17
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
18
|
+
- Allowed: `range`
|
|
19
|
+
- **`opportunities`** (`[]id`) — Filters for enhancement by its opportunities.
|
|
20
|
+
- ID type: `opportunity`
|
|
21
|
+
- **`stage_v2`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
|
|
22
|
+
- ID type: `custom_stage`
|
|
23
|
+
- **`target_close_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
24
|
+
- Composite: `_gen:target_close_date_v2`
|
|
25
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
26
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
27
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
28
|
+
- Allowed: `range`
|
|
29
|
+
- **`target_start_date_v2`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
30
|
+
- Composite: `_gen:target_start_date_v2`
|
|
31
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
32
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
33
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
34
|
+
- Allowed: `range`
|
|
35
|
+
- **`tickets`** (`[]id`) — Filters for enhancement by its tickets.
|
|
36
|
+
- ID type: `ticket`
|
|
37
|
+
- **`parent_part`** (`composite`) — The filter for specifying parent part.
|
|
38
|
+
- Composite: `_gen:parent_part`
|
|
39
|
+
- **`level`** (`int`) — Number of levels to fetch the part hierarchy up to.
|
|
40
|
+
- **`parts`** (`[]id`) **REQUIRED** — Part IDs to fetch the hierarchy for.
|
|
41
|
+
- ID type: `capability`, `enhancement`, `feature`, `product`
|
|
42
|
+
- **`tags`** (`[]id`) — Filters for part with any of the provided tags.
|
|
43
|
+
- ID type: `tag`
|
|
44
|
+
- **`owned_by`** (`[]id`) — Filters for enhancements owned by any of these users.
|
|
45
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
46
|
+
- **`created_by`** (`[]id`) — Filters for enhancements created by any of these users.
|
|
47
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
48
|
+
- **`limit`** (`int`) — The maximum number of enhancements to return.Maximum is 1000.
|
|
49
|
+
|
|
50
|
+
## Input Port: `block_callback`
|
|
51
|
+
|
|
52
|
+
_No input fields (trigger or system-provided)._
|
|
53
|
+
|
|
54
|
+
## Output Port: `block_start`
|
|
55
|
+
|
|
56
|
+
- **`actual_close_date`** (`timestamp`) — Actual close date for the object.
|
|
57
|
+
- **`actual_start_date`** (`timestamp`) — Actual start date for the object.
|
|
58
|
+
- **`created_by`** (`composite`)
|
|
59
|
+
- Composite: `_gen:created_by`
|
|
60
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
61
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
62
|
+
- **`email`** (`text`) — Email address of the user.
|
|
63
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
64
|
+
- **`state`** (`enum`) — State of the user.
|
|
65
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
66
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user
|
|
67
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
68
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
69
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
70
|
+
- **`created_date`** (`timestamp`) — Timestamp when the Enhancement was created.
|
|
71
|
+
- **`description`** (`text`) — Description of the Enhancement.
|
|
72
|
+
- **`display_id`** (`text`) — Human-readable Enhancement ID unique to the Dev organization.
|
|
73
|
+
- **`modified_by`** (`composite`)
|
|
74
|
+
- Composite: `_gen:modified_by`
|
|
75
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
76
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
77
|
+
- **`email`** (`text`) — Email address of the user.
|
|
78
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
79
|
+
- **`state`** (`enum`) — State of the user.
|
|
80
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
81
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
82
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
83
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
84
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
85
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the Enhancement was modified.
|
|
86
|
+
- **`name`** (`text`) **REQUIRED** — Name of the Enhancement.
|
|
87
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
88
|
+
- Composite: `_gen:user-summary`
|
|
89
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
90
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
91
|
+
- **`email`** (`text`) — Email address of the user.
|
|
92
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
93
|
+
- **`state`** (`enum`) — State of the user.
|
|
94
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
95
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
96
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
97
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
98
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
99
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
100
|
+
- Composite: `_gen:tags`
|
|
101
|
+
- **`tag`** (`composite`)
|
|
102
|
+
- Composite: `_gen:tag`
|
|
103
|
+
- **`target_close_date`** (`timestamp`) — Target close date for the object.
|
|
104
|
+
- **`target_start_date`** (`timestamp`) — Target start date for the object.
|
|
105
|
+
- **`id`** (`id`) **REQUIRED** — The ID of the Enhancement
|
|
106
|
+
- ID type: `enhancement`
|
|
107
|
+
- **`stage_v2`** (`composite`) — The stage of the enhancement.
|
|
108
|
+
- Composite: `_gen:stage_v2`
|
|
109
|
+
- **`stage`** (`composite`)
|
|
110
|
+
- Composite: `_gen:stage`
|
|
111
|
+
- **`state`** (`composite`)
|
|
112
|
+
- Composite: `_gen:state`
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# `loop_over_incidents` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
6
|
+
- Composite: `_gen:created_date`
|
|
7
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
8
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
9
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
10
|
+
- Allowed: `range`
|
|
11
|
+
- **`include_child_parts`** (`bool`) — Whether to include items belonging to children of any of the provided parts.
|
|
12
|
+
- **`mitigated_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
13
|
+
- Composite: `_gen:mitigated_date`
|
|
14
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
15
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
16
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
17
|
+
- Allowed: `range`
|
|
18
|
+
- **`stage`** (`[]id`) — Filters for incidents in any of the provided stages.
|
|
19
|
+
- ID type: `custom_stage`
|
|
20
|
+
- **`owned_by`** (`[]id`) — Filters for incidents owned by internal users only.
|
|
21
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
22
|
+
- **`created_by`** (`[]id`) — Filters for incidents created by internal users only.
|
|
23
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
24
|
+
- **`applies_to_parts`** (`[]id`) — Filters for incidents that apply to any of the provided parts.
|
|
25
|
+
- ID type: `product`, `feature`, `capability`, `enhancement`, `runnable`, `linkable`
|
|
26
|
+
- **`stages`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
|
|
27
|
+
- ID type: `custom_stage`
|
|
28
|
+
- **`limit`** (`int`) — The maximum number of incidents to return. Maximum is 1000.
|
|
29
|
+
|
|
30
|
+
## Input Port: `block_callback`
|
|
31
|
+
|
|
32
|
+
_No input fields (trigger or system-provided)._
|
|
33
|
+
|
|
34
|
+
## Output Port: `block_start`
|
|
35
|
+
|
|
36
|
+
- **`acknowledged_date`** (`timestamp`) — Timestamp when the incident was acknowledged.
|
|
37
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the incident was actually resolved.
|
|
38
|
+
- **`applies_to_parts`** (`[]composite`)
|
|
39
|
+
- Composite: `_gen:part-summary`
|
|
40
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
41
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
42
|
+
- Composite: `_gen:user-summary`
|
|
43
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
44
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
45
|
+
- **`id`** (`id`) **REQUIRED** — ID of the part attached to the incident.
|
|
46
|
+
- ID type: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
47
|
+
- **`body`** (`text`) — Body of the incident.
|
|
48
|
+
- **`created_by`** (`composite`)
|
|
49
|
+
- Composite: `_gen:created_by`
|
|
50
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
51
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
52
|
+
- **`email`** (`text`) — Email address of the user.
|
|
53
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
54
|
+
- **`state`** (`enum`) — State of the user.
|
|
55
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
56
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
57
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
59
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
60
|
+
- **`created_date`** (`timestamp`) — Timestamp when the incident was created.
|
|
61
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
62
|
+
- **`identified_date`** (`timestamp`) — Time when the incident was identified/reported.
|
|
63
|
+
- **`impact`** (`composite`) — Details of the impact due to the incident.
|
|
64
|
+
- Composite: `_gen:impact`
|
|
65
|
+
- **`mitigated_date`** (`timestamp`) — Timestamp when the incident was mitigated.
|
|
66
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the incident was last modified.
|
|
67
|
+
- **`owned_by`** (`[]composite`)
|
|
68
|
+
- Composite: `_gen:user-summary`
|
|
69
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
70
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
71
|
+
- **`email`** (`text`) — Email address of the user.
|
|
72
|
+
- **`id`** (`id`) **REQUIRED** — ID of the user.
|
|
73
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
74
|
+
- **`pia`** (`[]composite`)
|
|
75
|
+
- Composite: `_gen:article-summary`
|
|
76
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
77
|
+
- **`resource`** (`composite`) — Resource details.
|
|
78
|
+
- Composite: `_gen:resource`
|
|
79
|
+
- **`title`** (`text`) — Title of the article.
|
|
80
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
81
|
+
- ID type: `article`
|
|
82
|
+
- **`playbooks`** (`[]composite`)
|
|
83
|
+
- Composite: `_gen:article-summary_95fca9c7`
|
|
84
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
85
|
+
- **`resource`** (`composite`) — Resource details.
|
|
86
|
+
- Composite: `_gen:resource`
|
|
87
|
+
- **`title`** (`text`) — Title of the article.
|
|
88
|
+
- **`id`** (`id`) **REQUIRED** — ID of the article.
|
|
89
|
+
- ID type: `article`
|
|
90
|
+
- **`reported_by`** (`composite`) — The properties of an enum value.
|
|
91
|
+
- Composite: `_gen:reported_by`
|
|
92
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
93
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
94
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
95
|
+
- **`severity`** (`composite`) — The properties of an enum value.
|
|
96
|
+
- Composite: `_gen:severity`
|
|
97
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
98
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
99
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
100
|
+
- **`stage`** (`composite`) — Describes the current stage of a object.
|
|
101
|
+
- Composite: `_gen:stage`
|
|
102
|
+
- **`state`** (`composite`) — The state of the incident
|
|
103
|
+
- Composite: `_gen:state`
|
|
104
|
+
- **`stage`** (`composite`) — The stage of the incident.
|
|
105
|
+
- Composite: `stage.stage`
|
|
106
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
107
|
+
- Composite: `_gen:tags`
|
|
108
|
+
- **`tag`** (`composite`)
|
|
109
|
+
- Composite: `_gen:tag`
|
|
110
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the incident is expected to be resolved.
|
|
111
|
+
- **`title`** (`text`) **REQUIRED** — Title of the incident.
|
|
112
|
+
- **`id`** (`id`) **REQUIRED** — ID of the incident.
|
|
113
|
+
- ID type: `incident`
|