dify/web/app/components/workflow/nodes/trigger-webhook/utils/raw-variable.ts

14 lines
436 B
TypeScript

import type { Variable } from '@/app/components/workflow/types'
import { VarType } from '@/app/components/workflow/types'
export const WEBHOOK_RAW_VARIABLE_NAME = '_webhook_raw'
export const WEBHOOK_RAW_VARIABLE_LABEL = 'raw'
export const createWebhookRawVariable = (): Variable => ({
variable: WEBHOOK_RAW_VARIABLE_NAME,
label: WEBHOOK_RAW_VARIABLE_LABEL,
value_type: VarType.object,
value_selector: [],
required: true,
})