@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,203 @@
|
|
|
1
|
+
# `loop_over_tickets` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`applies_to_part`** (`[]id`) — Filters for tickets belonging to any of the provided parts.
|
|
6
|
+
- ID type: `capability`, `component`, `custom_part`, `enhancement`, `feature`, `linkable`, `microservice`, `product`, `runnable`
|
|
7
|
+
- **`created_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
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
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
12
|
+
- Allowed: `range`
|
|
13
|
+
- **`external_ref`** (`[]text`) — Filters for work with any of the provided external references.
|
|
14
|
+
- **`modified_by`** (`[]id`) — Filters for work modified by any of these users.
|
|
15
|
+
- ID type: `devu`, `revu`, `svcacc`, `sysu`
|
|
16
|
+
- **`modified_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
17
|
+
- Composite: `_gen:modified_date`
|
|
18
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
19
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
20
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
21
|
+
- Allowed: `range`
|
|
22
|
+
- **`reported_by`** (`[]id`) — Filters for work reported by any of these users.
|
|
23
|
+
- ID type: `devu`, `revu`, `svcacc`, `sysu`
|
|
24
|
+
- **`sync_metadata`** (`composite`)
|
|
25
|
+
- Composite: `_gen:sync_metadata`
|
|
26
|
+
- **`external_reference`** (`[]text`) — Filters for issues with this specific external reference.
|
|
27
|
+
- **`last_sync_in`** (`composite`)
|
|
28
|
+
- Composite: `_gen:last_sync_in`
|
|
29
|
+
- **`last_sync_out`** (`composite`)
|
|
30
|
+
- Composite: `_gen:last_sync_out`
|
|
31
|
+
- **`origin_system`** (`[]text`) — Filters for issues synced from this specific origin system.
|
|
32
|
+
- **`tags`** (`[]id`) — Filters for work with any of the provided tags.
|
|
33
|
+
- ID type: `tag`
|
|
34
|
+
- **`target_close_date`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
35
|
+
- Composite: `_gen:target_close_date`
|
|
36
|
+
- **`after`** (`timestamp`) — Filters for objects created after the provided timestamp (inclusive).
|
|
37
|
+
- **`before`** (`timestamp`) — Filters for objects created before the provided timestamp (inclusive).
|
|
38
|
+
- **`type`** (`enum`) **REQUIRED** — Type of date filter.
|
|
39
|
+
- Allowed: `range`
|
|
40
|
+
- **`account`** (`[]id`) — Filters for tickets with any of the provided accounts.
|
|
41
|
+
- ID type: `account`
|
|
42
|
+
- **`brand`** (`[]id`) — Filters for tickets that are associated with any of the brands.
|
|
43
|
+
- ID type: `brand`
|
|
44
|
+
- **`group`** (`[]id`) — Filters for tickets belonging to specific groups.
|
|
45
|
+
- ID type: `group`
|
|
46
|
+
- **`is_frozen`** (`bool`) — Filters for frozen tickets.
|
|
47
|
+
- **`is_spam`** (`bool`) — Filters for tickets that are spam.
|
|
48
|
+
- **`needs_response`** (`bool`) — Filters for tickets that need response.
|
|
49
|
+
- **`rev_org`** (`[]id`) — Filters for tickets that are associated with any of the provided Rev organizations.
|
|
50
|
+
- ID type: `revo`
|
|
51
|
+
- **`severity`** (`[]enum`) — Filters for tickets with any of the provided severities.
|
|
52
|
+
- Allowed: `blocker`, `high`, `low`, `medium`
|
|
53
|
+
- **`sla_summary`** (`composite`) — The filter for SLA summary.
|
|
54
|
+
- Composite: `_gen:sla_summary`
|
|
55
|
+
- **`stage`** (`[]enum`) — Filters for records with any of the provided SLA stages.
|
|
56
|
+
- Allowed: `breached`, `completed`, `paused`, `running`, `warning`
|
|
57
|
+
- **`target_time`** (`composite`) — Provides ways to specify date ranges on objects.
|
|
58
|
+
- Composite: `_gen:target_time`
|
|
59
|
+
- **`vista`** (`id`) — Filters for work belonging to the given vista.
|
|
60
|
+
- ID type: `vista`, `vista_group_item`
|
|
61
|
+
- **`owned_by`** (`[]id`) — Filters for tickets owned by any of these users.
|
|
62
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
63
|
+
- **`created_by`** (`[]id`) — Filters for tickets created by any of these users.
|
|
64
|
+
- ID type: `devu`, `svcacc`, `sysu`
|
|
65
|
+
- **`stages`** (`[]id`) — List of IDs of the custom stages which will be used for filtering.
|
|
66
|
+
- ID type: `custom_stage`
|
|
67
|
+
- **`limit`** (`int`) — The maximum number of tickets to return. Maximum is 1000.
|
|
68
|
+
|
|
69
|
+
## Input Port: `block_callback`
|
|
70
|
+
|
|
71
|
+
_No input fields (trigger or system-provided)._
|
|
72
|
+
|
|
73
|
+
## Output Port: `block_start`
|
|
74
|
+
|
|
75
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the work was actually completed.
|
|
76
|
+
- **`applies_to_part`** (`composite`)
|
|
77
|
+
- Composite: `_gen:applies_to_part`
|
|
78
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
79
|
+
- **`name`** (`text`) **REQUIRED** — Name of the part.
|
|
80
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
81
|
+
- Composite: `_gen:user-summary`
|
|
82
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
83
|
+
- Allowed: `capability`, `enhancement`, `feature`, `linkable`, `product`, `runnable`
|
|
84
|
+
- **`id`** (`id`) **REQUIRED** — The id of the part.
|
|
85
|
+
- ID type: `capability`, `feature`, `product`, `runnable`, `linkable`, `enhancement`
|
|
86
|
+
- **`body`** (`text`) — The body of the ticket.
|
|
87
|
+
- **`channels`** (`[]enum`) — Channels of the ticket.
|
|
88
|
+
- Allowed: `email`, `plug`, `slack`, `twilio`, `twilio_sms`
|
|
89
|
+
- **`created_by`** (`composite`)
|
|
90
|
+
- Composite: `_gen:created_by`
|
|
91
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
92
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
93
|
+
- **`display_picture`** (`composite`)
|
|
94
|
+
- Composite: `_gen:display_picture`
|
|
95
|
+
- **`email`** (`text`) — Email address of the user.
|
|
96
|
+
- **`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.
|
|
97
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
98
|
+
- **`rev_org`** (`composite`)
|
|
99
|
+
- Composite: `_gen:rev_org`
|
|
100
|
+
- **`state`** (`enum`) — State of the user.
|
|
101
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
102
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
103
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
104
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user
|
|
105
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
106
|
+
- **`created_date`** (`timestamp`) — Timestamp when the ticket was created.
|
|
107
|
+
- **`display_id`** (`text`) — Display ID of the ticket.
|
|
108
|
+
- **`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).
|
|
109
|
+
- **`group`** (`composite`)
|
|
110
|
+
- Composite: `_gen:group`
|
|
111
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
112
|
+
- **`id`** (`id`) **REQUIRED** — The id of the group
|
|
113
|
+
- ID type: `group`
|
|
114
|
+
- **`is_frozen`** (`bool`) — Whether the object is frozen or not.
|
|
115
|
+
- **`is_spam`** (`bool`) — Whether the ticket is spam.
|
|
116
|
+
- **`modified_by`** (`composite`)
|
|
117
|
+
- Composite: `_gen:modified_by`
|
|
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
|
+
- **`display_picture`** (`composite`)
|
|
121
|
+
- Composite: `_gen:display_picture`
|
|
122
|
+
- **`email`** (`text`) — Email address of the user.
|
|
123
|
+
- **`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.
|
|
124
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
125
|
+
- **`rev_org`** (`composite`)
|
|
126
|
+
- Composite: `_gen:rev_org`
|
|
127
|
+
- **`state`** (`enum`) — State of the user.
|
|
128
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
129
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
130
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
131
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
132
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
133
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the ticket was modified.
|
|
134
|
+
- **`needs_response`** (`bool`) — Whether the ticket needs a response.
|
|
135
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
136
|
+
- Composite: `_gen:user-summary`
|
|
137
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
138
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
139
|
+
- **`display_picture`** (`composite`)
|
|
140
|
+
- Composite: `_gen:display_picture`
|
|
141
|
+
- **`email`** (`text`) — Email address of the user.
|
|
142
|
+
- **`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.
|
|
143
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
144
|
+
- **`rev_org`** (`composite`)
|
|
145
|
+
- Composite: `_gen:rev_org`
|
|
146
|
+
- **`state`** (`enum`) — State of the user.
|
|
147
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
148
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
149
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
150
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
151
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
152
|
+
- **`reported_by`** (`[]composite`)
|
|
153
|
+
- Composite: `_gen:user-summary`
|
|
154
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
155
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
156
|
+
- **`display_picture`** (`composite`)
|
|
157
|
+
- Composite: `_gen:display_picture`
|
|
158
|
+
- **`email`** (`text`) — Email address of the user.
|
|
159
|
+
- **`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.
|
|
160
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
161
|
+
- **`rev_org`** (`composite`)
|
|
162
|
+
- Composite: `_gen:rev_org`
|
|
163
|
+
- **`state`** (`enum`) — State of the user.
|
|
164
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
165
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
166
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
167
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
168
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
169
|
+
- **`rev_org`** (`composite`)
|
|
170
|
+
- Composite: `_gen:rev_org`
|
|
171
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
172
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
173
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
174
|
+
- Allowed: `account`, `rev_org`
|
|
175
|
+
- **`id`** (`id`) **REQUIRED** — The id of the workspace.
|
|
176
|
+
- ID type: `revo`
|
|
177
|
+
- **`severity`** (`enum`) — Severity of the ticket.
|
|
178
|
+
- Allowed: `blocker`, `high`, `low`, `medium`
|
|
179
|
+
- **`source_channel`** (`text`) — Source channel of the ticket.
|
|
180
|
+
- **`stage`** (`composite`) — Current stage of the ticket.
|
|
181
|
+
- Composite: `_gen:stage`
|
|
182
|
+
- **`name`** (`text`) **REQUIRED** — Current stage name of the work item.
|
|
183
|
+
- **`stage`** (`composite`) — The stage of the ticket.
|
|
184
|
+
- Composite: `stage.stage`
|
|
185
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
186
|
+
- **`sync_metadata`** (`composite`) — Sync information for records synced into/from DevRev.
|
|
187
|
+
- Composite: `_gen:work-base-properties.sync_metadata`
|
|
188
|
+
- **`external_record_id`** (`text`) — ID of the record in the external system.
|
|
189
|
+
- **`external_record_type`** (`text`) — Type of the external record in the external system.
|
|
190
|
+
- **`external_reference`** (`text`) — External record URL.
|
|
191
|
+
- **`last_sync_in`** (`composite`) — Information about the sync to DevRev.
|
|
192
|
+
- Composite: `_gen:work-base-properties.sync_metadata.last_sync_in`
|
|
193
|
+
- **`last_sync_out`** (`composite`) — Information about the sync from DevRev.
|
|
194
|
+
- Composite: `_gen:last_sync_out`
|
|
195
|
+
- **`origin_system`** (`text`) — Where the record was first created.
|
|
196
|
+
- **`tags`** (`[]composite`) — Tags associated with the ticket.
|
|
197
|
+
- Composite: `_gen:tags`
|
|
198
|
+
- **`tag`** (`composite`)
|
|
199
|
+
- Composite: `_gen:tag`
|
|
200
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the ticket is expected to be complete.
|
|
201
|
+
- **`title`** (`text`) **REQUIRED** — Title of the ticket.
|
|
202
|
+
- **`id`** (`id`) **REQUIRED** — The id of the ticket.
|
|
203
|
+
- ID type: `ticket`
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# `manual_trigger` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Manually triggers the workflow. This is a trigger operation with no automatic event source -- it must be invoked manually or via API.
|
|
4
|
+
|
|
5
|
+
## Input Port
|
|
6
|
+
|
|
7
|
+
No input ports defined. (Manual triggers have no input schema.)
|
|
8
|
+
|
|
9
|
+
## Output Port: `output`
|
|
10
|
+
|
|
11
|
+
Schema is **dynamic** (`HasDynamicSchema: true`). The output schema is defined at design time based on the workflow's configuration.
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# `meeting_created` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`artifacts`** (`[]composite`)
|
|
10
|
+
- Composite: `_gen:artifact-summary`
|
|
11
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
12
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
13
|
+
- Composite: `_gen:file`
|
|
14
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique artifact ID.
|
|
15
|
+
- ID type: `artifact`
|
|
16
|
+
- **`channel`** (`enum`) — The channel of meeting.
|
|
17
|
+
- Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
|
|
18
|
+
- **`created_by`** (`composite`)
|
|
19
|
+
- Composite: `_gen:created_by`
|
|
20
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
21
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
22
|
+
- **`email`** (`text`) — Email address of the user.
|
|
23
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
24
|
+
- **`state`** (`enum`) — State of the user.
|
|
25
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
26
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
27
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
28
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
29
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
30
|
+
- **`created_date`** (`timestamp`) — Timestamp when the meeting was created.
|
|
31
|
+
- **`description`** (`text`) — Description of the meeting.
|
|
32
|
+
- **`direction`** (`enum`) — Direction of meeting - meetings within an organization are internal. Meetings with external customers can be incoming or outgoing depending on who initiates them.
|
|
33
|
+
- Allowed: `incoming`, `internal`, `outgoing`
|
|
34
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
35
|
+
- **`ended_date`** (`timestamp`) — Time at which meeting ended.
|
|
36
|
+
- **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
|
|
37
|
+
- **`external_url`** (`text`) — External URL associated with the meeting.
|
|
38
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
39
|
+
- Composite: `_gen:user-summary`
|
|
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
|
+
- **`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.
|
|
44
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
45
|
+
- **`rev_org`** (`composite`)
|
|
46
|
+
- Composite: `_gen:rev_org`
|
|
47
|
+
- **`state`** (`enum`) — State of the user.
|
|
48
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
49
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
50
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
51
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
52
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
53
|
+
- **`modified_by`** (`composite`)
|
|
54
|
+
- Composite: `_gen:modified_by`
|
|
55
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
56
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
57
|
+
- **`email`** (`text`) — Email address of the user.
|
|
58
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
59
|
+
- **`state`** (`enum`) — State of the user.
|
|
60
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
61
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
62
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
63
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
64
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
65
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the meeting was last modified.
|
|
66
|
+
- **`organizer`** (`composite`)
|
|
67
|
+
- Composite: `_gen:organizer`
|
|
68
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
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
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
75
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
76
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
77
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
78
|
+
- **`parent`** (`composite`)
|
|
79
|
+
- Composite: `_gen:parent`
|
|
80
|
+
- **`account`** (`composite`)
|
|
81
|
+
- Composite: `_gen:account`
|
|
82
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
83
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
84
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
85
|
+
- Composite: `_gen:user-summary`
|
|
86
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
87
|
+
- Composite: `_gen:stage`
|
|
88
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
89
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
90
|
+
- Allowed: `account`, `opportunity`
|
|
91
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
92
|
+
- ID type: `account`, `opportunity`
|
|
93
|
+
- **`recording_url`** (`text`) — Recording URL of the meeting.
|
|
94
|
+
- **`scheduled_date`** (`timestamp`) — Timestamp when the meeting is expected to be closed.
|
|
95
|
+
- **`state`** (`enum`) — The state of meeting.
|
|
96
|
+
- Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
|
|
97
|
+
- **`tags`** (`[]composite`) — Tags associated with the meeting.
|
|
98
|
+
- Composite: `_gen:tags`
|
|
99
|
+
- **`tag`** (`composite`)
|
|
100
|
+
- Composite: `_gen:tag`
|
|
101
|
+
- **`title`** (`text`) — Title of the meeting.
|
|
102
|
+
- **`transcript`** (`composite`)
|
|
103
|
+
- Composite: `_gen:transcript`
|
|
104
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
105
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
106
|
+
- Composite: `_gen:file`
|
|
107
|
+
- **`id`** (`id`) **REQUIRED** — ID of the artifact containing the transcript.
|
|
108
|
+
- ID type: `artifact`
|
|
109
|
+
- **`visibility`** (`composite`) — The properties of an enum value.
|
|
110
|
+
- Composite: `_gen:visibility`
|
|
111
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
112
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
113
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
114
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
115
|
+
- **`id`** (`id`) **REQUIRED** — The meeting which was created.
|
|
116
|
+
- ID type: `meeting`
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
# `meeting_updated` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
- **`fields_to_watch`** (`[]enum`) **REQUIRED** — Fields to watch for changes. The trigger will only be fired if any of these fields are updated.
|
|
6
|
+
- Allowed: `description`, `title`, `scheduled_date`, `members`, `parent`, `transcript`, `artifacts`, `state`
|
|
7
|
+
|
|
8
|
+
## Output Port: `output`
|
|
9
|
+
|
|
10
|
+
- **`artifacts`** (`[]composite`)
|
|
11
|
+
- Composite: `_gen:artifact-summary`
|
|
12
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
13
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
14
|
+
- Composite: `_gen:file`
|
|
15
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique artifact ID.
|
|
16
|
+
- ID type: `artifact`
|
|
17
|
+
- **`channel`** (`enum`) — The channel of meeting.
|
|
18
|
+
- Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
|
|
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
|
+
- **`state`** (`enum`) — State of the user.
|
|
26
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
27
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
28
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
29
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
30
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
31
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
32
|
+
- **`description`** (`text`) — Description of the meeting.
|
|
33
|
+
- **`direction`** (`enum`) — Direction of meeting - meetings within an organization are internal. Meetings with external customers can be incoming or outgoing depending on who initiates them.
|
|
34
|
+
- Allowed: `incoming`, `internal`, `outgoing`
|
|
35
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
36
|
+
- **`ended_date`** (`timestamp`) — Time at which meeting ended.
|
|
37
|
+
- **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
|
|
38
|
+
- **`external_url`** (`text`) — External URL associated with the meeting.
|
|
39
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
40
|
+
- Composite: `_gen:user-summary`
|
|
41
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
42
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
43
|
+
- **`email`** (`text`) — Email address of the user.
|
|
44
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
45
|
+
- **`state`** (`enum`) — State of the user.
|
|
46
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
47
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
48
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
49
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
50
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
51
|
+
- **`modified_by`** (`composite`)
|
|
52
|
+
- Composite: `_gen:modified_by`
|
|
53
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
54
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
55
|
+
- **`email`** (`text`) — Email address of the user.
|
|
56
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
57
|
+
- **`state`** (`enum`) — State of the user.
|
|
58
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
59
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
60
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
61
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
62
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
63
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
64
|
+
- **`organizer`** (`composite`)
|
|
65
|
+
- Composite: `_gen:organizer`
|
|
66
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
67
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
68
|
+
- **`email`** (`text`) — Email address of the user.
|
|
69
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
70
|
+
- **`state`** (`enum`) — State of the user.
|
|
71
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
72
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
73
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
74
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
75
|
+
- ID type: `devu`, `sysu`, `svcacc`, `revu`
|
|
76
|
+
- **`parent`** (`composite`)
|
|
77
|
+
- Composite: `_gen:parent`
|
|
78
|
+
- **`account`** (`composite`)
|
|
79
|
+
- Composite: `_gen:account`
|
|
80
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
81
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
82
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
83
|
+
- Composite: `_gen:user-summary`
|
|
84
|
+
- **`stage`** (`composite`) — Describes the current stage of a work item.
|
|
85
|
+
- Composite: `_gen:stage`
|
|
86
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
87
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
88
|
+
- Allowed: `account`, `opportunity`
|
|
89
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
90
|
+
- ID type: `account`, `opportunity`
|
|
91
|
+
- **`recording_url`** (`text`) — Recording URL of the meeting.
|
|
92
|
+
- **`scheduled_date`** (`timestamp`) — Time at which meeting was scheduled to start.
|
|
93
|
+
- **`state`** (`enum`) — The state of meeting.
|
|
94
|
+
- Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
|
|
95
|
+
- **`tags`** (`[]composite`) — Tags associated with the meeting.
|
|
96
|
+
- Composite: `_gen:tags`
|
|
97
|
+
- **`tag`** (`composite`)
|
|
98
|
+
- Composite: `_gen:tag`
|
|
99
|
+
- **`title`** (`text`) — Title of the meeting object.
|
|
100
|
+
- **`transcript`** (`composite`)
|
|
101
|
+
- Composite: `_gen:transcript`
|
|
102
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
103
|
+
- **`file`** (`composite`) — Defines a file object.
|
|
104
|
+
- Composite: `_gen:file`
|
|
105
|
+
- **`id`** (`id`) **REQUIRED** — ID of the artifact containing the transcript.
|
|
106
|
+
- ID type: `artifact`
|
|
107
|
+
- **`visibility`** (`composite`) — The properties of an enum value.
|
|
108
|
+
- Composite: `_gen:visibility`
|
|
109
|
+
- **`id`** (`int`) **REQUIRED** — The unique ID of the enum value.
|
|
110
|
+
- **`label`** (`text`) **REQUIRED** — The display label of the enum value.
|
|
111
|
+
- **`ordinal`** (`int`) **REQUIRED** — Used for determining the relative order of the enum value.
|
|
112
|
+
- **`value`** (`json_value`) — The actual value of the enum value.
|
|
113
|
+
- **`old_meeting`** (`composite`) — Old meeting object
|
|
114
|
+
- Composite: `_gen:implicit:meeting`
|
|
115
|
+
- **`artifacts`** (`[]composite`)
|
|
116
|
+
- Composite: `_gen:artifact-summary`
|
|
117
|
+
- **`channel`** (`enum`) — The channel of meeting.
|
|
118
|
+
- Allowed: `amazon_connect`, `google_meet`, `offline`, `other`, `teams`, `zoom`
|
|
119
|
+
- **`created_by`** (`composite`)
|
|
120
|
+
- Composite: `_gen:created_by`
|
|
121
|
+
- **`created_date`** (`timestamp`) — Timestamp when the object was created.
|
|
122
|
+
- **`description`** (`text`) — Description of the meeting.
|
|
123
|
+
- **`direction`** (`enum`) — Direction of meeting - meetings within an organization are internal. Meetings with external customers can be incoming or outgoing depending on who initiates them.
|
|
124
|
+
- Allowed: `incoming`, `internal`, `outgoing`
|
|
125
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
126
|
+
- **`ended_date`** (`timestamp`) — Time at which meeting ended.
|
|
127
|
+
- **`external_ref`** (`text`) — External reference of the meeting. This is the identifier from the meeting channel/provider.
|
|
128
|
+
- **`external_url`** (`text`) — External URL associated with the meeting.
|
|
129
|
+
- **`members`** (`[]composite`) **REQUIRED**
|
|
130
|
+
- Composite: `_gen:user-summary`
|
|
131
|
+
- **`modified_by`** (`composite`)
|
|
132
|
+
- Composite: `_gen:modified_by`
|
|
133
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the object was last modified.
|
|
134
|
+
- **`organizer`** (`composite`)
|
|
135
|
+
- Composite: `_gen:organizer`
|
|
136
|
+
- **`parent`** (`composite`)
|
|
137
|
+
- Composite: `_gen:parent`
|
|
138
|
+
- **`recording_url`** (`text`) — Recording URL of the meeting.
|
|
139
|
+
- **`scheduled_date`** (`timestamp`) — Time at which meeting was scheduled to start.
|
|
140
|
+
- **`state`** (`enum`) — The state of meeting.
|
|
141
|
+
- Allowed: `canceled`, `completed`, `no_show`, `ongoing`, `rejected`, `rescheduled`, `scheduled`, `waiting`
|
|
142
|
+
- **`tags`** (`[]composite`) — Tags associated with the meeting.
|
|
143
|
+
- Composite: `_gen:tags`
|
|
144
|
+
- **`title`** (`text`) — Title of the meeting object.
|
|
145
|
+
- **`transcript`** (`composite`)
|
|
146
|
+
- Composite: `_gen:transcript`
|
|
147
|
+
- **`visibility`** (`composite`) — The properties of an enum value.
|
|
148
|
+
- Composite: `_gen:visibility`
|
|
149
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
150
|
+
- ID type: `meeting`
|
|
151
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
152
|
+
- ID type: `meeting`
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# `oasis_sql_execute` — Schema Reference
|
|
2
|
+
|
|
3
|
+
Executes a SQL query on an Oasis dataset.
|
|
4
|
+
|
|
5
|
+
## Input Port: `input`
|
|
6
|
+
|
|
7
|
+
- **`sql_query`** (`text`) **REQUIRED** — SQL query to execute.
|
|
8
|
+
|
|
9
|
+
## Output Port: `output`
|
|
10
|
+
|
|
11
|
+
- **`data`** (`text`) — Data returned by the SQL query.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# `opportunity_created` — Schema Reference
|
|
2
|
+
|
|
3
|
+
## Input Port: `input`
|
|
4
|
+
|
|
5
|
+
_No input fields (trigger or system-provided)._
|
|
6
|
+
|
|
7
|
+
## Output Port: `output`
|
|
8
|
+
|
|
9
|
+
- **`id`** (`id`) **REQUIRED** — The opportunity which was created.
|
|
10
|
+
- ID type: `opportunity`
|
|
11
|
+
- **`body`** (`text`) — The description of the opportunity.
|
|
12
|
+
- **`created_date`** (`timestamp`) — Timestamp when the opportunity was created.
|
|
13
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
14
|
+
- **`modified_date`** (`timestamp`) — Timestamp when the opportunity was last modified.
|
|
15
|
+
- **`stage`** (`composite`) — Describes the current stage of a opportunity
|
|
16
|
+
- Composite: `_gen:stage`
|
|
17
|
+
- **`name`** (`text`) **REQUIRED** — Describes the current stage of a opportunity
|
|
18
|
+
- **`target_close_date`** (`timestamp`) — Timestamp when the opportunity is expected to be closed.
|
|
19
|
+
- **`title`** (`text`) **REQUIRED** — Title of the opportunity.
|
|
20
|
+
- **`account`** (`composite`)
|
|
21
|
+
- Composite: `_gen:account`
|
|
22
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
23
|
+
- **`display_name`** (`text`) — Name of the Organization.
|
|
24
|
+
- **`id`** (`id`) **REQUIRED** — The id of the account.
|
|
25
|
+
- ID type: `account`
|
|
26
|
+
- **`actual_close_date`** (`timestamp`) — Timestamp when the opportunity was actually closed.
|
|
27
|
+
- **`annual_contract_value`** (`composite`) — Annual contract value of an opportunity in USD
|
|
28
|
+
- Composite: `_gen:annual_contract_value`
|
|
29
|
+
- **`amount`** (`text`) — Amount of the money.
|
|
30
|
+
- **`currency`** (`text`) — Currency of the money.
|
|
31
|
+
- **`created_by`** (`composite`)
|
|
32
|
+
- Composite: `_gen:created_by`
|
|
33
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
34
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
35
|
+
- **`display_picture`** (`composite`)
|
|
36
|
+
- Composite: `_gen:display_picture`
|
|
37
|
+
- **`email`** (`text`) — Email address of the user.
|
|
38
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
39
|
+
- **`state`** (`enum`) — State of the user.
|
|
40
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
41
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
42
|
+
- Allowed: `dev_user`, `rev_user`, `service_account`, `sys_user`
|
|
43
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
44
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
45
|
+
- **`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).
|
|
46
|
+
- **`modified_by`** (`composite`)
|
|
47
|
+
- Composite: `_gen:modified_by`
|
|
48
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
49
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
50
|
+
- **`display_picture`** (`composite`)
|
|
51
|
+
- Composite: `_gen:display_picture`
|
|
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`, `rev_user`, `service_account`, `sys_user`
|
|
58
|
+
- **`id`** (`id`) **REQUIRED** — Globally unique object ID.
|
|
59
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
60
|
+
- **`owned_by`** (`[]composite`) **REQUIRED**
|
|
61
|
+
- Composite: `_gen:user-summary`
|
|
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** — The id of the user.
|
|
69
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
70
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
71
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
72
|
+
- **`reported_by`** (`[]composite`)
|
|
73
|
+
- Composite: `_gen:user-summary`
|
|
74
|
+
- **`display_id`** (`text`) — Human-readable object ID unique to the Dev organization.
|
|
75
|
+
- **`display_name`** (`text`) — The user's display name. The name is non-unique and mutable.
|
|
76
|
+
- **`email`** (`text`) — Email address of the user.
|
|
77
|
+
- **`full_name`** (`text`) — Full name of the user.
|
|
78
|
+
- **`state`** (`enum`) — State of the user.
|
|
79
|
+
- Allowed: `active`, `deactivated`, `deleted`, `locked`, `shadow`, `unassigned`
|
|
80
|
+
- **`id`** (`id`) **REQUIRED** — The id of the user.
|
|
81
|
+
- ID type: `devu`, `sysu`, `svcacc`
|
|
82
|
+
- **`type`** (`enum`) **REQUIRED**
|
|
83
|
+
- Allowed: `dev_user`, `service_account`, `sys_user`
|
|
84
|
+
- **`state_display_name`** (`text`) — Display name for current state.
|
|
85
|
+
- **`tags`** (`[]composite`) — Tags associated with the object.
|
|
86
|
+
- Composite: `_gen:tags`
|
|
87
|
+
- **`tag`** (`composite`)
|
|
88
|
+
- Composite: `_gen:tag`
|
|
89
|
+
- **`value`** (`composite`) — The value of the opportunity in USD.
|
|
90
|
+
- Composite: `_gen:value`
|
|
91
|
+
- **`amount`** (`text`) — Amount of the money.
|
|
92
|
+
- **`currency`** (`text`) — Currency of the money.
|