Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions pkg/entities/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,8 @@ var AiNotificationsChannelTypeTypes = struct {
SLACK_LEGACY AiNotificationsChannelType
// Webhook channel type
WEBHOOK AiNotificationsChannelType
// Workflow Automation channel type
WORKFLOW_AUTOMATION AiNotificationsChannelType
}{
// Email channel type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -276,6 +278,8 @@ var AiNotificationsChannelTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// Webhook channel type
WEBHOOK: "WEBHOOK",
// Workflow Automation channel type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiNotificationsDestinationStatus - Destination statuses
Expand Down Expand Up @@ -379,6 +383,8 @@ var AiNotificationsDestinationTypeTypes = struct {
SLACK_LEGACY AiNotificationsDestinationType
// WebHook destination type
WEBHOOK AiNotificationsDestinationType
// Workflow Automation destination type
WORKFLOW_AUTOMATION AiNotificationsDestinationType
}{
// Email destination type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -406,6 +412,8 @@ var AiNotificationsDestinationTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// WebHook destination type
WEBHOOK: "WEBHOOK",
// Workflow Automation destination type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiNotificationsProduct - Product types
Expand Down Expand Up @@ -555,6 +563,8 @@ var AiWorkflowsDestinationTypeTypes = struct {
SLACK_LEGACY AiWorkflowsDestinationType
// Webhook Destination Configuration type
WEBHOOK AiWorkflowsDestinationType
// Workflow Automation Destination Configuration type
WORKFLOW_AUTOMATION AiWorkflowsDestinationType
}{
// Email Destination Configuration type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -582,6 +592,8 @@ var AiWorkflowsDestinationTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// Webhook Destination Configuration type
WEBHOOK: "WEBHOOK",
// Workflow Automation Destination Configuration type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiWorkflowsEnrichmentType - Type of Enrichment
Expand Down
8 changes: 8 additions & 0 deletions pkg/notifications/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ var AiNotificationsChannelTypeTypes = struct {
SLACK_LEGACY AiNotificationsChannelType
// Webhook channel type
WEBHOOK AiNotificationsChannelType
// Workflow Automation channel type
WORKFLOW_AUTOMATION AiNotificationsChannelType
}{
// Email channel type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -183,6 +185,8 @@ var AiNotificationsChannelTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// Webhook channel type
WEBHOOK: "WEBHOOK",
// Workflow Automation channel type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiNotificationsDestinationFields - Destination fields
Expand Down Expand Up @@ -329,6 +333,8 @@ var AiNotificationsDestinationTypeTypes = struct {
SLACK_LEGACY AiNotificationsDestinationType
// WebHook destination type
WEBHOOK AiNotificationsDestinationType
// Workflow Automation destination type
WORKFLOW_AUTOMATION AiNotificationsDestinationType
}{
// Email destination type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -356,6 +362,8 @@ var AiNotificationsDestinationTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// WebHook destination type
WEBHOOK: "WEBHOOK",
// Workflow Automation destination type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiNotificationsErrorType - Error types
Expand Down
4 changes: 4 additions & 0 deletions pkg/workflows/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ var AiWorkflowsDestinationTypeTypes = struct {
SLACK_LEGACY AiWorkflowsDestinationType
// Webhook Destination Configuration type
WEBHOOK AiWorkflowsDestinationType
// Workflow Automation Destination Configuration type
WORKFLOW_AUTOMATION AiWorkflowsDestinationType
}{
// Email Destination Configuration type
EMAIL: "EMAIL",
Expand Down Expand Up @@ -124,6 +126,8 @@ var AiWorkflowsDestinationTypeTypes = struct {
SLACK_LEGACY: "SLACK_LEGACY",
// Webhook Destination Configuration type
WEBHOOK: "WEBHOOK",
// Workflow Automation Destination Configuration type
WORKFLOW_AUTOMATION: "WORKFLOW_AUTOMATION",
}

// AiWorkflowsEnrichmentType - Type of Enrichment
Expand Down
Loading