mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
chore: fix ARI documentation
This commit is contained in:
parent
ebeffdbc40
commit
b728cc4922
8 changed files with 7 additions and 40 deletions
|
|
@ -656,9 +656,7 @@ class ARIConnection:
|
|||
# pending bridge entry regardless of ordering.
|
||||
await self._mark_ext_channel(ext_channel_id)
|
||||
await self._set_channel_run(ext_channel_id, workflow_run_id)
|
||||
await self._set_pending_bridge(
|
||||
ext_channel_id, channel_id, workflow_run_id
|
||||
)
|
||||
await self._set_pending_bridge(ext_channel_id, channel_id, workflow_run_id)
|
||||
await db_client.update_workflow_run(
|
||||
run_id=int(workflow_run_id),
|
||||
gathered_context={"ext_channel_id": ext_channel_id},
|
||||
|
|
|
|||
|
|
@ -36,12 +36,6 @@ class CustomHeaderDTO(BaseModel):
|
|||
value: str
|
||||
|
||||
|
||||
class RetryConfigDTO(BaseModel):
|
||||
enabled: bool = False
|
||||
max_retries: int = 3
|
||||
retry_delay_seconds: int = 5
|
||||
|
||||
|
||||
# ─────────────────────────────────────────────────────────────────────────
|
||||
# Per-type node data classes.
|
||||
#
|
||||
|
|
@ -130,7 +124,6 @@ class WebhookNodeData(_NodeDataBase):
|
|||
credential_uuid: Optional[str] = None
|
||||
custom_headers: Optional[list[CustomHeaderDTO]] = None
|
||||
payload_template: Optional[dict] = None
|
||||
retry_config: Optional[RetryConfigDTO] = None
|
||||
|
||||
|
||||
class QANodeData(_NodeDataBase):
|
||||
|
|
|
|||
|
|
@ -108,15 +108,6 @@ SPEC = NodeSpec(
|
|||
"transcript_url": "{{transcript_url}}",
|
||||
},
|
||||
),
|
||||
PropertySpec(
|
||||
name="retry_config",
|
||||
type=PropertyType.json,
|
||||
display_name="Retry Configuration",
|
||||
description=(
|
||||
"Optional retry settings: `enabled` (bool), `max_retries` "
|
||||
"(int), `retry_delay_seconds` (int)."
|
||||
),
|
||||
),
|
||||
],
|
||||
examples=[
|
||||
NodeExample(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue