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
2 changes: 1 addition & 1 deletion .oagen-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": 1,
"language": "python",
"generatedAt": "2026-04-13T15:44:50.450Z",
"generatedAt": "2026-04-14T16:36:59.471Z",
"files": [
"src/workos/_client.py",
"src/workos/admin_portal/__init__.py",
Expand Down
11 changes: 11 additions & 0 deletions src/workos/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@
from .webhooks._resource import Webhooks, AsyncWebhooks
from .widgets._resource import Widgets, AsyncWidgets
from .audit_logs._resource import AuditLogs, AsyncAuditLogs

# @oagen-ignore-start — non-spec service imports (hand-maintained)
from .passwordless import AsyncPasswordless, Passwordless
from .vault import AsyncVault, Vault
from .actions import Actions, AsyncActions
from .pkce import PKCE
# @oagen-ignore-end


class WorkOSClient(_SyncBase):
Expand Down Expand Up @@ -127,6 +130,8 @@ def mfa(self) -> MultiFactorAuth:
"""Alias for multi_factor_auth."""
return self.multi_factor_auth

# @oagen-ignore-start — non-spec service accessors (hand-maintained)

@functools.cached_property
def passwordless(self) -> Passwordless:
"""Passwordless authentication sessions."""
Expand All @@ -147,6 +152,8 @@ def pkce(self) -> PKCE:
"""PKCE (Proof Key for Code Exchange) utilities."""
return PKCE()

# @oagen-ignore-end


class AsyncWorkOSClient(_AsyncBase):
"""Asynchronous WorkOS API client with service accessors."""
Expand Down Expand Up @@ -241,6 +248,8 @@ def mfa(self) -> AsyncMultiFactorAuth:
"""Alias for multi_factor_auth."""
return self.multi_factor_auth

# @oagen-ignore-start — non-spec service accessors (hand-maintained)

@functools.cached_property
def passwordless(self) -> AsyncPasswordless:
"""Passwordless authentication sessions."""
Expand All @@ -260,3 +269,5 @@ def actions(self) -> AsyncActions:
def pkce(self) -> PKCE:
"""PKCE (Proof Key for Code Exchange) utilities."""
return PKCE()

# @oagen-ignore-end
Loading