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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading