Some checks failed
CI / Clippy (push) Failing after 3m6s
CI / Rustfmt (push) Failing after 3m9s
CI / Cargo Audit & Deny (push) Successful in 5m2s
CI / Tests (push) Successful in 8m15s
CI / Security Blocking Checks (push) Successful in 10s
CI / Web Advisory Checks (push) Successful in 1m4s
CI / Web Blocking Checks (push) Failing after 4m52s
Publish Images And Chart / Resolve Publish Metadata (push) Successful in 2s
CI / Security Advisory Checks (push) Successful in 1m31s
Publish Images And Chart / Publish init-user (push) Failing after 30s
Publish Images And Chart / Publish init-packs (push) Failing after 1m41s
Publish Images And Chart / Publish migrations (push) Failing after 10s
Publish Images And Chart / Publish web (push) Failing after 11s
Publish Images And Chart / Publish sensor (push) Failing after 32s
Publish Images And Chart / Publish worker (push) Failing after 11s
Publish Images And Chart / Publish executor (push) Failing after 11s
Publish Images And Chart / Publish notifier (push) Failing after 9s
Publish Images And Chart / Publish api (push) Failing after 31s
Publish Images And Chart / Publish Helm Chart (push) Has been skipped
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Request DTO for creating a new workflow
|
|
*/
|
|
export type CreateWorkflowRequest = {
|
|
/**
|
|
* Workflow definition (complete workflow YAML structure as JSON)
|
|
*/
|
|
definition: Record<string, any>;
|
|
/**
|
|
* Workflow description
|
|
*/
|
|
description?: string | null;
|
|
/**
|
|
* Human-readable label
|
|
*/
|
|
label: string;
|
|
/**
|
|
* Output schema (flat format) defining expected outputs with inline required/secret
|
|
*/
|
|
out_schema: Record<string, any>;
|
|
/**
|
|
* Pack reference this workflow belongs to
|
|
*/
|
|
pack_ref: string;
|
|
/**
|
|
* Parameter schema (StackStorm-style) defining expected inputs with inline required/secret
|
|
*/
|
|
param_schema: Record<string, any>;
|
|
/**
|
|
* Unique reference identifier (e.g., "core.notify_on_failure", "slack.incident_workflow")
|
|
*/
|
|
ref: string;
|
|
/**
|
|
* Tags for categorization and search
|
|
*/
|
|
tags?: any[] | null;
|
|
/**
|
|
* Workflow version (semantic versioning recommended)
|
|
*/
|
|
version: string;
|
|
};
|
|
|