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
20 changes: 0 additions & 20 deletions packages/types/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -656,26 +656,6 @@ components:
type: object
additionalProperties: { type: string }
body: { type: string }
options:
type: object
description: |
Generic options bag for backend features on terminal
RestAPI nodes. `summarize: true` opts a SendGrid /v3/mail/send
or Telegram /sendMessage node into the aggregator's
context-memory summarizer, which composes a subject + HTML
body from the workflow's execution context and injects them
into the outgoing request. Without this field set, the
aggregator falls back to the deterministic summarizer (no
LLM polish).
properties:
summarize:
type: boolean
description: |
When true on a terminal SendGrid or Telegram node,
ComposeSummarySmart runs at execution time and fills
in the empty content.value / text slot with an
AI-generated body. No-op on non-notification URLs.
additionalProperties: true

CustomCodeNodeConfig:
type: object
Expand Down
21 changes: 0 additions & 21 deletions packages/types/src/openapi.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -955,27 +955,6 @@ export interface components {
readonly [key: string]: string;
};
readonly body?: string;
/**
* @description Generic options bag for backend features on terminal
* RestAPI nodes. `summarize: true` opts a SendGrid /v3/mail/send
* or Telegram /sendMessage node into the aggregator's
* context-memory summarizer, which composes a subject + HTML
* body from the workflow's execution context and injects them
* into the outgoing request. Without this field set, the
* aggregator falls back to the deterministic summarizer (no
* LLM polish).
*/
readonly options?: {
/**
* @description When true on a terminal SendGrid or Telegram node,
* ComposeSummarySmart runs at execution time and fills
* in the empty content.value / text slot with an
* AI-generated body. No-op on non-notification URLs.
*/
readonly summarize?: boolean;
} & {
readonly [key: string]: unknown;
};
};
readonly CustomCodeNodeConfig: {
readonly lang: components["schemas"]["Lang"];
Expand Down
Loading