From bd6e6ee8bbb1cf9df7cc22f5694f9c504c403d9d Mon Sep 17 00:00:00 2001 From: "Joseph T. French" Date: Thu, 17 Sep 2026 20:28:20 -0500 Subject: [PATCH] =?UTF-8?q?chore(sdk):=20regenerate=20=E2=80=94=20three=20?= =?UTF-8?q?operation=20summaries=20lost=20a=20parenthetical?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docstrings only. Three RoboLedger operations carried a parenthetical in their OpenAPI summary that merely repeated the opening clause of their own description, so it was dropped upstream (robosystems#1428): Execute Event Block (publish to source-of-truth system) -> Execute Event Block Terminate Schedule Early (No Entry) -> Terminate Schedule Early Auto-Map Elements via AI (async) -> Auto-Map Elements via AI The generated summary line is the first line of each function's docstring, so that is the whole diff — no signature, model, parameter or return type moves. Generated tier, and cosmetic within it. Claude-Session: https://claude.ai/code/session_011KBrhQHzwrB39C4c4Vw9Pq --- .../api/extensions_robo_ledger/auto_map_elements.py | 8 ++++---- .../api/extensions_robo_ledger/execute_event_block.py | 8 ++++---- .../api/extensions_robo_ledger/terminate_schedule.py | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/robosystems_client/api/extensions_robo_ledger/auto_map_elements.py b/robosystems_client/api/extensions_robo_ledger/auto_map_elements.py index 178aebd..fc19995 100644 --- a/robosystems_client/api/extensions_robo_ledger/auto_map_elements.py +++ b/robosystems_client/api/extensions_robo_ledger/auto_map_elements.py @@ -109,7 +109,7 @@ def sync_detailed( body: AutoMapElementsOperation, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelope]: - """Auto-Map Elements via AI (async) + """Auto-Map Elements via AI Dispatches to the background worker — returns a `pending` envelope immediately. Monitor via SSE at `/v1/operations/{operation_id}/stream`. Confidence thresholds: ≥0.90 auto-approved, 0.70–0.89 @@ -158,7 +158,7 @@ def sync( body: AutoMapElementsOperation, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelope | None: - """Auto-Map Elements via AI (async) + """Auto-Map Elements via AI Dispatches to the background worker — returns a `pending` envelope immediately. Monitor via SSE at `/v1/operations/{operation_id}/stream`. Confidence thresholds: ≥0.90 auto-approved, 0.70–0.89 @@ -202,7 +202,7 @@ async def asyncio_detailed( body: AutoMapElementsOperation, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelope]: - """Auto-Map Elements via AI (async) + """Auto-Map Elements via AI Dispatches to the background worker — returns a `pending` envelope immediately. Monitor via SSE at `/v1/operations/{operation_id}/stream`. Confidence thresholds: ≥0.90 auto-approved, 0.70–0.89 @@ -249,7 +249,7 @@ async def asyncio( body: AutoMapElementsOperation, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelope | None: - """Auto-Map Elements via AI (async) + """Auto-Map Elements via AI Dispatches to the background worker — returns a `pending` envelope immediately. Monitor via SSE at `/v1/operations/{operation_id}/stream`. Confidence thresholds: ≥0.90 auto-approved, 0.70–0.89 diff --git a/robosystems_client/api/extensions_robo_ledger/execute_event_block.py b/robosystems_client/api/extensions_robo_ledger/execute_event_block.py index 0a4200f..5598c1c 100644 --- a/robosystems_client/api/extensions_robo_ledger/execute_event_block.py +++ b/robosystems_client/api/extensions_robo_ledger/execute_event_block.py @@ -111,7 +111,7 @@ def sync_detailed( body: ExecuteEventBlockRequest, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelopeExecuteEventBlockResponse]: - """Execute Event Block (publish to source-of-truth system) + """Execute Event Block For events on a connection with write_policy='qb_authoritative' or 'hybrid', publish the captured GL plan to the source-of-truth system (QuickBooks). Captures qb_txn_id on @@ -166,7 +166,7 @@ def sync( body: ExecuteEventBlockRequest, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelopeExecuteEventBlockResponse | None: - """Execute Event Block (publish to source-of-truth system) + """Execute Event Block For events on a connection with write_policy='qb_authoritative' or 'hybrid', publish the captured GL plan to the source-of-truth system (QuickBooks). Captures qb_txn_id on @@ -216,7 +216,7 @@ async def asyncio_detailed( body: ExecuteEventBlockRequest, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelopeExecuteEventBlockResponse]: - """Execute Event Block (publish to source-of-truth system) + """Execute Event Block For events on a connection with write_policy='qb_authoritative' or 'hybrid', publish the captured GL plan to the source-of-truth system (QuickBooks). Captures qb_txn_id on @@ -269,7 +269,7 @@ async def asyncio( body: ExecuteEventBlockRequest, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelopeExecuteEventBlockResponse | None: - """Execute Event Block (publish to source-of-truth system) + """Execute Event Block For events on a connection with write_policy='qb_authoritative' or 'hybrid', publish the captured GL plan to the source-of-truth system (QuickBooks). Captures qb_txn_id on diff --git a/robosystems_client/api/extensions_robo_ledger/terminate_schedule.py b/robosystems_client/api/extensions_robo_ledger/terminate_schedule.py index 5fcd300..5ff4d2a 100644 --- a/robosystems_client/api/extensions_robo_ledger/terminate_schedule.py +++ b/robosystems_client/api/extensions_robo_ledger/terminate_schedule.py @@ -111,7 +111,7 @@ def sync_detailed( body: TerminateScheduleRequest, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelopeTerminateScheduleResponse]: - """Terminate Schedule Early (No Entry) + """Terminate Schedule Early End a schedule early at a month-end cutoff without booking any entry. In one transaction: deletes forward facts past the cutoff (refusing when posted entries exist past it; stale drafts past it are @@ -173,7 +173,7 @@ def sync( body: TerminateScheduleRequest, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelopeTerminateScheduleResponse | None: - """Terminate Schedule Early (No Entry) + """Terminate Schedule Early End a schedule early at a month-end cutoff without booking any entry. In one transaction: deletes forward facts past the cutoff (refusing when posted entries exist past it; stale drafts past it are @@ -230,7 +230,7 @@ async def asyncio_detailed( body: TerminateScheduleRequest, idempotency_key: None | str | Unset = UNSET, ) -> Response[ErrorResponse | OperationEnvelopeTerminateScheduleResponse]: - """Terminate Schedule Early (No Entry) + """Terminate Schedule Early End a schedule early at a month-end cutoff without booking any entry. In one transaction: deletes forward facts past the cutoff (refusing when posted entries exist past it; stale drafts past it are @@ -290,7 +290,7 @@ async def asyncio( body: TerminateScheduleRequest, idempotency_key: None | str | Unset = UNSET, ) -> ErrorResponse | OperationEnvelopeTerminateScheduleResponse | None: - """Terminate Schedule Early (No Entry) + """Terminate Schedule Early End a schedule early at a month-end cutoff without booking any entry. In one transaction: deletes forward facts past the cutoff (refusing when posted entries exist past it; stale drafts past it are