From b34a6939a9a8802f6b02e42a4e39fc39a2de4658 Mon Sep 17 00:00:00 2001 From: "workos-sdk-automation[bot]" <255426317+workos-sdk-automation[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:04:43 +0000 Subject: [PATCH 1/8] chore(main): release 6.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 43c185cf..a3a12f49 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.46.0" + ".": "6.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3600e897..f6bb7756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [6.0.0](https://github.com/workos/workos-python/compare/v5.46.0...v6.0.0) (2026-04-13) + + +### ⚠ BREAKING CHANGES + +* release new version of Python SDK library ([#599](https://github.com/workos/workos-python/issues/599)) + +### Features + +* release new version of Python SDK library ([#599](https://github.com/workos/workos-python/issues/599)) ([9aaec74](https://github.com/workos/workos-python/commit/9aaec749b8646ecb5cea095f96ee701fcb2f71f7)) + ## [5.46.0](https://github.com/workos/workos-python/compare/v5.45.0...v5.46.0) (2026-03-16) diff --git a/pyproject.toml b/pyproject.toml index 7dfcfbda..dbdc52e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "workos" -version = "5.46.0" +version = "6.0.0" description = "WorkOS Python Client" readme = "README.md" license = "MIT" From 5e83fac318ae2d06f74c3d00eac76ac16dce8e42 Mon Sep 17 00:00:00 2001 From: "workos-bot[bot]" Date: Mon, 13 Apr 2026 15:04:52 +0000 Subject: [PATCH 2/8] chore: update uv.lock --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 27de01ef..297b9f0e 100644 --- a/uv.lock +++ b/uv.lock @@ -705,7 +705,7 @@ wheels = [ [[package]] name = "workos" -version = "5.46.0" +version = "6.0.0" source = { editable = "." } dependencies = [ { name = "cryptography" }, From f2d8a40490fea7ba81b7b8da5d68647a3c72e7d3 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:11:14 -0400 Subject: [PATCH 3/8] test: restore smoke_test.py for release CI The smoke test was deleted during the SDK regeneration (#604) but the CI workflow still invokes it, causing all release-PR smoke checks to fail with "No such file or directory". Restore it, rewritten against the current post-regeneration surface (dataclass models, *Error exception names, updated module accessors, no pydantic dep). Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/smoke_test.py | 252 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 252 insertions(+) create mode 100644 tests/smoke_test.py diff --git a/tests/smoke_test.py b/tests/smoke_test.py new file mode 100644 index 00000000..51ac21ca --- /dev/null +++ b/tests/smoke_test.py @@ -0,0 +1,252 @@ +#!/usr/bin/env python3 +"""Smoke tests to verify the built package works correctly. + +These tests run against the installed package (wheel or sdist) to verify: +- All imports work correctly +- Dependencies are properly bundled +- Type markers are present +- Both sync and async clients can be instantiated +- All module properties are accessible + +Run with: uv run --isolated --no-project --with dist/*.whl tests/smoke_test.py +""" + +# ruff: noqa: F401 - imports are intentionally unused; this file tests import functionality + +import sys +from pathlib import Path + + +# Service accessors exposed on both WorkOSClient and AsyncWorkOSClient. +CLIENT_MODULES = [ + "actions", + "admin_portal", + "api_keys", + "audit_logs", + "authorization", + "connect", + "directory_sync", + "events", + "feature_flags", + "mfa", + "multi_factor_auth", + "organization_domains", + "organizations", + "passwordless", + "pipes", + "pkce", + "radar", + "sso", + "user_management", + "vault", + "webhooks", + "widgets", +] + + +def test_basic_import() -> None: + """Verify the package can be imported.""" + import workos + + assert workos is not None + print("✓ Basic import works") + + +def test_version_accessible() -> None: + """Verify version metadata is accessible.""" + from importlib.metadata import version + + pkg_version = version("workos") + assert pkg_version is not None + assert len(pkg_version) > 0 + print(f"✓ Version accessible: {pkg_version}") + + +def test_py_typed_marker() -> None: + """Verify py.typed marker is included for type checking support.""" + import workos + + package_path = Path(workos.__file__).parent + py_typed = package_path / "py.typed" + assert py_typed.exists(), f"py.typed marker not found at {py_typed}" + print(f"✓ py.typed marker present at {py_typed}") + + +def test_sync_client_import_and_instantiate() -> None: + """Verify sync client can be imported and instantiated.""" + from workos import WorkOSClient + + client = WorkOSClient(api_key="sk_test_smoke", client_id="client_smoke") + assert client is not None + print("✓ WorkOSClient imports and instantiates") + + +def test_async_client_import_and_instantiate() -> None: + """Verify async client can be imported and instantiated.""" + from workos import AsyncWorkOSClient + + client = AsyncWorkOSClient(api_key="sk_test_smoke", client_id="client_smoke") + assert client is not None + print("✓ AsyncWorkOSClient imports and instantiates") + + +def test_sync_client_modules_accessible() -> None: + """Verify all service accessors are reachable on the sync client.""" + from workos import WorkOSClient + + client = WorkOSClient(api_key="sk_test_smoke", client_id="client_smoke") + + for module_name in CLIENT_MODULES: + module = getattr(client, module_name, None) + assert module is not None, f"Module {module_name} not accessible" + print(f" ✓ client.{module_name}") + + print(f"✓ All {len(CLIENT_MODULES)} sync client modules accessible") + + +def test_async_client_modules_accessible() -> None: + """Verify all service accessors are reachable on the async client.""" + from workos import AsyncWorkOSClient + + client = AsyncWorkOSClient(api_key="sk_test_smoke", client_id="client_smoke") + + for module_name in CLIENT_MODULES: + module = getattr(client, module_name, None) + assert module is not None, f"Module {module_name} not accessible" + print(f" ✓ async_client.{module_name}") + + print(f"✓ All {len(CLIENT_MODULES)} async client modules accessible") + + +def test_core_types_importable() -> None: + """Verify a representative sample of feature models can be imported.""" + from workos.sso.models import Connection, ConnectionDomain, Profile + + assert Connection is not None + assert ConnectionDomain is not None + assert Profile is not None + + from workos.organizations.models import Organization + + assert Organization is not None + + from workos.directory_sync.models import ( + Directory, + DirectoryGroup, + DirectoryUserWithGroups, + ) + + assert Directory is not None + assert DirectoryGroup is not None + assert DirectoryUserWithGroups is not None + + from workos.user_management.models import ( + AuthenticateResponse, + Invitation, + OrganizationMembership, + User, + ) + + assert AuthenticateResponse is not None + assert Invitation is not None + assert OrganizationMembership is not None + assert User is not None + + from workos.events.models import EventSchema + + assert EventSchema is not None + + from workos.feature_flags.models import FeatureFlag + + assert FeatureFlag is not None + + print("✓ Core types importable") + + +def test_errors_importable() -> None: + """Verify error classes can be imported from the top-level package.""" + from workos import ( + AuthenticationError, + AuthorizationError, + BadRequestError, + ConflictError, + NotFoundError, + RateLimitExceededError, + ServerError, + UnprocessableEntityError, + WorkOSError, + ) + + assert issubclass(AuthenticationError, WorkOSError) + assert issubclass(AuthorizationError, WorkOSError) + assert issubclass(BadRequestError, WorkOSError) + assert issubclass(ConflictError, WorkOSError) + assert issubclass(NotFoundError, WorkOSError) + assert issubclass(RateLimitExceededError, WorkOSError) + assert issubclass(ServerError, WorkOSError) + assert issubclass(UnprocessableEntityError, WorkOSError) + + print("✓ Error classes importable") + + +def test_pagination_importable() -> None: + """Verify pagination primitives are exported at the top level.""" + from workos import AsyncPage, ListMetadata, RequestOptions, SyncPage + + assert AsyncPage is not None + assert ListMetadata is not None + assert RequestOptions is not None + assert SyncPage is not None + print("✓ Pagination and RequestOptions importable") + + +def test_dependencies_available() -> None: + """Verify core runtime dependencies are installed and importable.""" + import cryptography + import httpx + import jwt + + print("✓ Core dependencies available (httpx, cryptography, pyjwt)") + + +def main() -> int: + """Run all smoke tests.""" + print("=" * 60) + print("WorkOS Python SDK - Smoke Tests") + print("=" * 60) + print() + + tests = [ + test_basic_import, + test_version_accessible, + test_py_typed_marker, + test_sync_client_import_and_instantiate, + test_async_client_import_and_instantiate, + test_sync_client_modules_accessible, + test_async_client_modules_accessible, + test_core_types_importable, + test_errors_importable, + test_pagination_importable, + test_dependencies_available, + ] + + failed = 0 + for test in tests: + try: + test() + except Exception as e: + print(f"✗ {test.__name__} FAILED: {e}") + failed += 1 + print() + + print("=" * 60) + if failed == 0: + print(f"All {len(tests)} smoke tests passed!") + return 0 + else: + print(f"FAILED: {failed}/{len(tests)} tests failed") + return 1 + + +if __name__ == "__main__": + sys.exit(main()) From d7af4695b6c38e7f99f1abf5aec566f194d233d9 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:13:13 -0400 Subject: [PATCH 4/8] fix: declare typing_extensions as a runtime dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generated model files across the SDK import `TypeAlias` (and other symbols) from `typing_extensions`, but it was not declared in pyproject.toml. On Python 3.10–3.12 it was pulled in transitively, but on 3.13/3.14 the smoke test against the built wheel failed with `No module named 'typing_extensions'`. Add it to runtime deps and assert on it in the smoke test so this regresses loudly. Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 7 ++++++- tests/smoke_test.py | 5 ++++- uv.lock | 2 ++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dbdc52e4..e1597237 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,12 @@ license = "MIT" authors = [{ name = "WorkOS", email = "sdk@workos.com" }] requires-python = ">=3.10" -dependencies = ["cryptography~=46.0", "httpx~=0.28", "pyjwt~=2.12"] +dependencies = [ + "cryptography~=46.0", + "httpx~=0.28", + "pyjwt~=2.12", + "typing_extensions~=4.0", +] [project.urls] Homepage = "https://workos.com/docs/sdks/python" diff --git a/tests/smoke_test.py b/tests/smoke_test.py index 51ac21ca..b08eae55 100644 --- a/tests/smoke_test.py +++ b/tests/smoke_test.py @@ -205,8 +205,11 @@ def test_dependencies_available() -> None: import cryptography import httpx import jwt + import typing_extensions - print("✓ Core dependencies available (httpx, cryptography, pyjwt)") + print( + "✓ Core dependencies available (httpx, cryptography, pyjwt, typing_extensions)" + ) def main() -> int: diff --git a/uv.lock b/uv.lock index bd5a362a..389abc8b 100644 --- a/uv.lock +++ b/uv.lock @@ -711,6 +711,7 @@ dependencies = [ { name = "cryptography" }, { name = "httpx" }, { name = "pyjwt" }, + { name = "typing-extensions" }, ] [package.dev-dependencies] @@ -746,6 +747,7 @@ requires-dist = [ { name = "cryptography", specifier = "~=46.0" }, { name = "httpx", specifier = "~=0.28" }, { name = "pyjwt", specifier = "~=2.12" }, + { name = "typing-extensions", specifier = "~=4.0" }, ] [package.metadata.requires-dev] From 7ab455fbb5ca0ce61a5b0fc67e8eee4788424ab6 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:32:02 -0400 Subject: [PATCH 5/8] update CHANGELOG --- CHANGELOG.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6bb7756..38ef5a8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,19 @@ ## [6.0.0](https://github.com/workos/workos-python/compare/v5.46.0...v6.0.0) (2026-04-13) -### ⚠ BREAKING CHANGES +### Top-level notices -* release new version of Python SDK library ([#599](https://github.com/workos/workos-python/issues/599)) +- v6 is a breaking release and now requires Python 3.10 or newer. +- The SDK now uses generated sync and async clients with top-level imports from `workos`. +- `client.portal` has been renamed to `client.admin_portal`, and `client.fga` is not available in v6. -### Features +### What's changed + +- Rebuilt the Python SDK around a generated client/runtime with updated request handling, pagination, typed models, and error surfaces. +- Reorganized package exports and service modules to support the new v6 client shape across the SDK. +- Added release validation coverage, including package smoke tests and the runtime dependency updates needed for packaged installs. -* release new version of Python SDK library ([#599](https://github.com/workos/workos-python/issues/599)) ([9aaec74](https://github.com/workos/workos-python/commit/9aaec749b8646ecb5cea095f96ee701fcb2f71f7)) +See the [V6 migration guide](docs/V6_MIGRATION_GUIDE.md) before upgrading from v5. ## [5.46.0](https://github.com/workos/workos-python/compare/v5.45.0...v5.46.0) (2026-03-16) From c8ed37735a8109b6589b63cd438aaf5d6f16e816 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:44:42 -0400 Subject: [PATCH 6/8] fix: make typing_extensions a conditional runtime dep for Py 3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `src/workos/_types.py` imports `Self`, which landed in stdlib `typing` only in Python 3.11. Use a `sys.version_info` conditional so 3.11+ uses stdlib and 3.10 falls back to `typing_extensions`, matching the SDK's `requires-python = '>=3.10'`. Mark `typing_extensions~=4.0` as `python_version < '3.11'` in the dependency list so pip/uv only install it on 3.10 — 3.11+ users don't pay the transitive-dep cost. Drop the now-unconditional typing_extensions check from the smoke test (the conditional import is exercised whenever workos itself is imported). Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 2 +- src/workos/_types.py | 8 ++++++-- tests/smoke_test.py | 5 +---- uv.lock | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e1597237..2034d904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "cryptography~=46.0", "httpx~=0.28", "pyjwt~=2.12", - "typing_extensions~=4.0", + "typing_extensions~=4.0; python_version < '3.11'", ] [project.urls] diff --git a/src/workos/_types.py b/src/workos/_types.py index ed83003c..3ae131ec 100644 --- a/src/workos/_types.py +++ b/src/workos/_types.py @@ -5,8 +5,12 @@ import sys from datetime import datetime from enum import Enum -from typing import Any, Dict, NoReturn, Protocol, TypeVar -from typing_extensions import Self, TypedDict +from typing import Any, Dict, NoReturn, Protocol, TypedDict, TypeVar + +if sys.version_info >= (3, 11): + from typing import Self +else: + from typing_extensions import Self class RequestOptions(TypedDict, total=False): diff --git a/tests/smoke_test.py b/tests/smoke_test.py index b08eae55..51ac21ca 100644 --- a/tests/smoke_test.py +++ b/tests/smoke_test.py @@ -205,11 +205,8 @@ def test_dependencies_available() -> None: import cryptography import httpx import jwt - import typing_extensions - print( - "✓ Core dependencies available (httpx, cryptography, pyjwt, typing_extensions)" - ) + print("✓ Core dependencies available (httpx, cryptography, pyjwt)") def main() -> int: diff --git a/uv.lock b/uv.lock index 389abc8b..305724fb 100644 --- a/uv.lock +++ b/uv.lock @@ -711,7 +711,7 @@ dependencies = [ { name = "cryptography" }, { name = "httpx" }, { name = "pyjwt" }, - { name = "typing-extensions" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] [package.dev-dependencies] @@ -747,7 +747,7 @@ requires-dist = [ { name = "cryptography", specifier = "~=46.0" }, { name = "httpx", specifier = "~=0.28" }, { name = "pyjwt", specifier = "~=2.12" }, - { name = "typing-extensions", specifier = "~=4.0" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'", specifier = "~=4.0" }, ] [package.metadata.requires-dev] From e31a469933b46f40b9fd036e9bb7ded0c16bf7c7 Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:48:09 -0400 Subject: [PATCH 7/8] chore: regenerate Python SDK via oagen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drops the `typing_extensions` import from generated model/enum files in favor of the stdlib `typing` module — `TypeAlias` has been in stdlib typing since Python 3.10, which matches the SDK's minimum supported version. Also removes 347 stale files left behind by prior regens (alias/dedup targets that are no longer produced by the current IR). Co-Authored-By: Claude Opus 4.6 (1M context) --- src/workos/api_keys/models/api_key_owner.py | 2 +- .../models/api_key_with_value_owner.py | 2 +- .../models/organizations_api_keys_order.py | 2 +- .../models/audit_log_event_target.py | 2 +- .../models/audit_log_schema_json_actor.py | 2 +- .../models/audit_log_schema_target.py | 2 +- .../audit_logs/models/audit_logs_order.py | 2 +- .../models/authorization_assignment.py | 2 +- .../models/authorization_order.py | 2 +- .../authorization/models/create_role.py | 2 +- src/workos/authorization/models/list.py | 40 ----- src/workos/authorization/models/list_data.py | 6 - src/workos/authorization/models/permission.py | 2 +- .../authorization/models/permissions_order.py | 2 +- .../authorization/models/remove_role.py | 2 +- src/workos/authorization/models/slim_role.py | 2 +- .../models/update_organization_role.py | 2 +- .../authorization/models/update_role.py | 2 +- .../action_authentication_denied_context.py | 80 --------- ...ion_authentication_denied_context_actor.py | 50 ------ ...hentication_denied_context_actor_source.py | 33 ---- ...denied_context_google_analytics_session.py | 45 ------ ...action_user_registration_denied_context.py | 6 - ..._user_registration_denied_context_actor.py | 10 -- ...egistration_denied_context_actor_source.py | 11 -- ...denied_context_google_analytics_session.py | 10 -- .../common/models/api_key_created_context.py | 6 - .../models/api_key_created_context_actor.py | 8 - .../api_key_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/api_key_revoked_context.py | 6 - .../models/api_key_revoked_context_actor.py | 8 - .../api_key_revoked_context_actor_source.py | 11 -- ...evoked_context_google_analytics_session.py | 10 -- .../common/models/api_key_revoked_data.py | 2 +- .../models/api_key_revoked_data_owner.py | 2 +- ...udit_log_configuration_log_stream_state.py | 2 +- ...audit_log_configuration_log_stream_type.py | 2 +- .../models/audit_log_configuration_state.py | 2 +- .../models/audit_log_export_json_state.py | 2 +- ...enticate_response_authentication_method.py | 2 +- ...ation_email_verification_failed_context.py | 8 - ...email_verification_failed_context_actor.py | 10 -- ...erification_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- ...on_email_verification_succeeded_context.py | 8 - ...il_verification_succeeded_context_actor.py | 10 -- ...fication_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_factor_enrolled_type.py | 2 +- .../models/authentication_factor_type.py | 2 +- ...hentication_factors_create_request_type.py | 2 +- ...uthentication_magic_auth_failed_context.py | 6 - ...ication_magic_auth_failed_context_actor.py | 10 -- ..._magic_auth_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- ...entication_magic_auth_failed_data_error.py | 2 +- ...entication_magic_auth_succeeded_context.py | 6 - ...tion_magic_auth_succeeded_context_actor.py | 10 -- ...gic_auth_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_mfa_failed_context.py | 6 - ...authentication_mfa_failed_context_actor.py | 8 - ...ication_mfa_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- .../authentication_mfa_failed_data_error.py | 2 +- .../authentication_mfa_succeeded_context.py | 6 - ...hentication_mfa_succeeded_context_actor.py | 10 -- ...tion_mfa_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_oauth_failed_context.py | 6 - ...thentication_oauth_failed_context_actor.py | 10 -- ...ation_oauth_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- .../authentication_oauth_failed_data_error.py | 2 +- .../authentication_oauth_succeeded_context.py | 6 - ...ntication_oauth_succeeded_context_actor.py | 10 -- ...on_oauth_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_passkey_failed_context.py | 6 - ...entication_passkey_failed_context_actor.py | 10 -- ...ion_passkey_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- ...uthentication_passkey_failed_data_error.py | 2 +- ...uthentication_passkey_succeeded_context.py | 6 - ...ication_passkey_succeeded_context_actor.py | 10 -- ..._passkey_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_password_failed_context.py | 6 - ...ntication_password_failed_context_actor.py | 10 -- ...on_password_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- ...thentication_password_failed_data_error.py | 2 +- ...thentication_password_succeeded_context.py | 6 - ...cation_password_succeeded_context_actor.py | 10 -- ...password_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- ...hentication_radar_risk_detected_context.py | 6 - ...ation_radar_risk_detected_context_actor.py | 10 -- ...adar_risk_detected_context_actor_source.py | 11 -- ...tected_context_google_analytics_session.py | 10 -- ...ication_radar_risk_detected_data_action.py | 2 +- .../authentication_sso_failed_context.py | 6 - ...authentication_sso_failed_context_actor.py | 8 - ...ication_sso_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- .../authentication_sso_failed_data_error.py | 2 +- .../authentication_sso_started_context.py | 6 - ...uthentication_sso_started_context_actor.py | 8 - ...cation_sso_started_context_actor_source.py | 11 -- ...tarted_context_google_analytics_session.py | 10 -- .../authentication_sso_started_data_sso.py | 2 +- .../authentication_sso_succeeded_context.py | 6 - ...hentication_sso_succeeded_context_actor.py | 10 -- ...tion_sso_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../authentication_sso_succeeded_data_sso.py | 2 +- .../authentication_sso_timed_out_context.py | 6 - ...hentication_sso_timed_out_context_actor.py | 10 -- ...tion_sso_timed_out_context_actor_source.py | 11 -- ...ed_out_context_google_analytics_session.py | 10 -- ...authentication_sso_timed_out_data_error.py | 2 +- .../authentication_sso_timed_out_data_sso.py | 2 +- .../common/models/connected_account_state.py | 2 +- .../models/connection_activated_context.py | 6 - .../connection_activated_context_actor.py | 8 - ...nnection_activated_context_actor_source.py | 11 -- ...ivated_context_google_analytics_session.py | 10 -- ...nnection_activated_data_connection_type.py | 2 +- .../models/connection_activated_data_state.py | 2 +- .../connection_activated_data_status.py | 2 +- .../models/connection_deactivated_context.py | 6 - .../connection_deactivated_context_actor.py | 8 - ...ection_deactivated_context_actor_source.py | 11 -- ...ivated_context_google_analytics_session.py | 10 -- .../models/connection_deactivated_data.py | 2 +- ...ection_deactivated_data_connection_type.py | 2 +- .../connection_deactivated_data_domain.py | 2 +- .../connection_deactivated_data_state.py | 2 +- .../connection_deactivated_data_status.py | 2 +- .../models/connection_deleted_context.py | 6 - .../connection_deleted_context_actor.py | 8 - ...connection_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- ...connection_deleted_data_connection_type.py | 2 +- .../models/connection_deleted_data_state.py | 2 +- ...ml_certificate_renewal_required_context.py | 8 - ...tificate_renewal_required_context_actor.py | 10 -- ...e_renewal_required_context_actor_source.py | 11 -- ...quired_context_google_analytics_session.py | 10 -- ...uired_data_certificate_certificate_type.py | 2 +- ...ection_saml_certificate_renewed_context.py | 6 - ..._saml_certificate_renewed_context_actor.py | 10 -- ...ertificate_renewed_context_actor_source.py | 11 -- ...enewed_context_google_analytics_session.py | 10 -- ...newed_data_certificate_certificate_type.py | 2 +- ...aml_certificate_renewed_data_connection.py | 2 +- src/workos/common/models/connection_state.py | 2 +- src/workos/common/models/connection_status.py | 2 +- src/workos/common/models/connection_type.py | 2 +- .../create_user_invite_options_locale.py | 2 +- .../models/create_user_password_hash_type.py | 2 +- .../models/create_webhook_endpoint_events.py | 2 +- ...t_response_data_connected_account_state.py | 2 +- ...tegrations_list_response_data_ownership.py | 2 +- src/workos/common/models/directory_state.py | 2 +- src/workos/common/models/directory_type.py | 2 +- .../common/models/directory_user_state.py | 2 +- .../directory_user_with_groups_state.py | 2 +- .../common/models/dsync_activated_context.py | 6 - .../models/dsync_activated_context_actor.py | 8 - .../dsync_activated_context_actor_source.py | 11 -- ...ivated_context_google_analytics_session.py | 10 -- .../models/dsync_activated_data_state.py | 2 +- .../models/dsync_activated_data_type.py | 2 +- .../models/dsync_deactivated_context.py | 6 - .../models/dsync_deactivated_context_actor.py | 8 - .../dsync_deactivated_context_actor_source.py | 11 -- ...ivated_context_google_analytics_session.py | 10 -- .../common/models/dsync_deactivated_data.py | 2 +- .../models/dsync_deactivated_data_domain.py | 2 +- .../models/dsync_deactivated_data_state.py | 2 +- .../models/dsync_deactivated_data_type.py | 2 +- .../common/models/dsync_deleted_context.py | 6 - .../models/dsync_deleted_context_actor.py | 8 - .../dsync_deleted_context_actor_source.py | 9 -- ...eleted_context_google_analytics_session.py | 10 -- .../common/models/dsync_deleted_data_state.py | 2 +- .../common/models/dsync_deleted_data_type.py | 2 +- .../models/dsync_group_created_context.py | 6 - .../dsync_group_created_context_actor.py | 8 - ...sync_group_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/dsync_group_created_data.py | 6 - .../models/dsync_group_deleted_context.py | 6 - .../dsync_group_deleted_context_actor.py | 8 - ...sync_group_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../common/models/dsync_group_deleted_data.py | 6 - .../models/dsync_group_updated_context.py | 6 - .../dsync_group_updated_context_actor.py | 8 - ...sync_group_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../models/dsync_group_user_added_context.py | 6 - .../dsync_group_user_added_context_actor.py | 8 - ...c_group_user_added_context_actor_source.py | 11 -- ..._added_context_google_analytics_session.py | 10 -- .../dsync_group_user_added_data_group.py | 6 - .../dsync_group_user_added_data_user.py | 152 ------------------ .../dsync_group_user_added_data_user_email.py | 8 - .../dsync_group_user_added_data_user_role.py | 6 - .../dsync_group_user_added_data_user_state.py | 7 - .../dsync_group_user_removed_context.py | 6 - .../dsync_group_user_removed_context_actor.py | 8 - ...group_user_removed_context_actor_source.py | 11 -- ...emoved_context_google_analytics_session.py | 10 -- .../models/dsync_group_user_removed_data.py | 2 +- .../dsync_group_user_removed_data_group.py | 6 - .../dsync_group_user_removed_data_user.py | 6 - ...sync_group_user_removed_data_user_email.py | 8 - ...dsync_group_user_removed_data_user_role.py | 6 - ...sync_group_user_removed_data_user_state.py | 7 - .../models/dsync_user_created_context.py | 6 - .../dsync_user_created_context_actor.py | 8 - ...dsync_user_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/dsync_user_created_data.py | 6 - .../models/dsync_user_created_data_email.py | 8 - .../models/dsync_user_created_data_role.py | 6 - .../models/dsync_user_created_data_state.py | 7 - .../models/dsync_user_deleted_context.py | 6 - .../dsync_user_deleted_context_actor.py | 8 - ...dsync_user_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../common/models/dsync_user_deleted_data.py | 6 - .../models/dsync_user_deleted_data_email.py | 8 - .../models/dsync_user_deleted_data_role.py | 6 - .../models/dsync_user_deleted_data_state.py | 7 - .../models/dsync_user_updated_context.py | 6 - .../dsync_user_updated_context_actor.py | 8 - ...dsync_user_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../models/dsync_user_updated_data_email.py | 2 +- .../models/dsync_user_updated_data_role.py | 6 - .../models/dsync_user_updated_data_state.py | 2 +- .../email_verification_created_context.py | 6 - ...mail_verification_created_context_actor.py | 8 - ...rification_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../models/event_context_actor_source.py | 2 +- .../models/flag_created_context_actor.py | 2 +- .../flag_created_context_actor_source.py | 2 +- .../common/models/flag_created_data_owner.py | 2 +- .../common/models/flag_deleted_context.py | 2 +- .../models/flag_deleted_context_actor.py | 2 +- .../flag_deleted_context_actor_source.py | 2 +- src/workos/common/models/flag_deleted_data.py | 2 +- .../common/models/flag_deleted_data_owner.py | 2 +- .../flag_rule_updated_context_access_type.py | 2 +- .../models/flag_rule_updated_context_actor.py | 2 +- .../flag_rule_updated_context_actor_source.py | 2 +- ..._previous_attribute_context_access_type.py | 2 +- ...ous_attribute_context_configured_target.py | 2 +- ..._context_configured_target_organization.py | 2 +- ...ttribute_context_configured_target_user.py | 2 +- .../common/models/flag_rule_updated_data.py | 2 +- .../models/flag_rule_updated_data_owner.py | 2 +- .../models/flag_updated_context_actor.py | 2 +- .../flag_updated_context_actor_source.py | 2 +- src/workos/common/models/flag_updated_data.py | 2 +- .../common/models/flag_updated_data_owner.py | 2 +- .../common/models/generate_link_intent.py | 2 +- .../models/invitation_accepted_context.py | 6 - .../invitation_accepted_context_actor.py | 8 - ...nvitation_accepted_context_actor_source.py | 11 -- ...cepted_context_google_analytics_session.py | 10 -- .../models/invitation_accepted_data_state.py | 2 +- .../models/invitation_created_context.py | 6 - .../invitation_created_context_actor.py | 8 - ...invitation_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/invitation_created_data.py | 2 +- .../models/invitation_created_data_state.py | 2 +- .../models/invitation_resent_context.py | 6 - .../models/invitation_resent_context_actor.py | 8 - .../invitation_resent_context_actor_source.py | 11 -- ...resent_context_google_analytics_session.py | 10 -- .../common/models/invitation_resent_data.py | 2 +- .../models/invitation_resent_data_state.py | 2 +- .../models/invitation_revoked_context.py | 6 - .../invitation_revoked_context_actor.py | 8 - ...invitation_revoked_context_actor_source.py | 11 -- ...evoked_context_google_analytics_session.py | 10 -- .../common/models/invitation_revoked_data.py | 2 +- .../models/invitation_revoked_data_state.py | 2 +- src/workos/common/models/invitation_state.py | 2 +- src/workos/common/models/list_data_type.py | 28 ---- .../models/magic_auth_created_context.py | 6 - .../magic_auth_created_context_actor.py | 8 - ...magic_auth_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../models/organization_created_context.py | 6 - .../organization_created_context_actor.py | 8 - ...ganization_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../organization_created_data_domain.py | 2 +- .../organization_created_data_domain_state.py | 2 +- ...eated_data_domain_verification_strategy.py | 2 +- .../models/organization_deleted_context.py | 6 - .../organization_deleted_context_actor.py | 8 - ...ganization_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../models/organization_deleted_data.py | 2 +- .../organization_deleted_data_domain.py | 2 +- .../organization_deleted_data_domain_state.py | 2 +- ...leted_data_domain_verification_strategy.py | 2 +- .../organization_domain_created_context.py | 6 - ...ganization_domain_created_context_actor.py | 10 -- ...ion_domain_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../organization_domain_created_data.py | 2 +- .../organization_domain_created_data_state.py | 2 +- ...main_created_data_verification_strategy.py | 2 +- .../models/organization_domain_data_state.py | 2 +- .../organization_domain_deleted_context.py | 6 - ...ganization_domain_deleted_context_actor.py | 10 -- ...ion_domain_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../organization_domain_deleted_data.py | 2 +- .../organization_domain_deleted_data_state.py | 2 +- ...main_deleted_data_verification_strategy.py | 2 +- .../organization_domain_stand_alone_state.py | 2 +- ...omain_stand_alone_verification_strategy.py | 2 +- .../models/organization_domain_state.py | 2 +- .../organization_domain_updated_context.py | 6 - ...ganization_domain_updated_context_actor.py | 10 -- ...ion_domain_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../organization_domain_updated_data.py | 2 +- .../organization_domain_updated_data_state.py | 2 +- ...main_updated_data_verification_strategy.py | 2 +- ...tion_domain_verification_failed_context.py | 8 - ...omain_verification_failed_context_actor.py | 10 -- ...erification_failed_context_actor_source.py | 11 -- ...failed_context_google_analytics_session.py | 10 -- ...ication_failed_data_organization_domain.py | 2 +- ...n_failed_data_organization_domain_state.py | 2 +- ...ganization_domain_verification_strategy.py | 2 +- ..._domain_verification_failed_data_reason.py | 2 +- ...ganization_domain_verification_strategy.py | 2 +- .../organization_domain_verified_context.py | 6 - ...anization_domain_verified_context_actor.py | 10 -- ...on_domain_verified_context_actor_source.py | 11 -- ...rified_context_google_analytics_session.py | 10 -- .../organization_domain_verified_data.py | 2 +- ...organization_domain_verified_data_state.py | 2 +- ...ain_verified_data_verification_strategy.py | 2 +- ...organization_membership_created_context.py | 6 - ...zation_membership_created_context_actor.py | 10 -- ...membership_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- ...nization_membership_created_data_status.py | 2 +- ...organization_membership_deleted_context.py | 6 - ...zation_membership_deleted_context_actor.py | 10 -- ...membership_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../organization_membership_deleted_data.py | 2 +- ...nization_membership_deleted_data_status.py | 2 +- .../models/organization_membership_status.py | 2 +- ...organization_membership_updated_context.py | 6 - ...zation_membership_updated_context_actor.py | 10 -- ...membership_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../organization_membership_updated_data.py | 2 +- ...nization_membership_updated_data_status.py | 2 +- .../organization_role_created_context.py | 6 - ...organization_role_created_context_actor.py | 8 - ...ation_role_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../organization_role_deleted_context.py | 6 - ...organization_role_deleted_context_actor.py | 8 - ...ation_role_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../models/organization_role_deleted_data.py | 2 +- .../organization_role_updated_context.py | 6 - ...organization_role_updated_context_actor.py | 8 - ...ation_role_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../models/organization_role_updated_data.py | 2 +- .../models/organization_updated_context.py | 6 - .../organization_updated_context_actor.py | 8 - ...ganization_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../models/organization_updated_data.py | 2 +- .../organization_updated_data_domain.py | 2 +- .../organization_updated_data_domain_state.py | 2 +- ...dated_data_domain_verification_strategy.py | 2 +- .../models/password_reset_created_context.py | 6 - .../password_reset_created_context_actor.py | 8 - ...word_reset_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../password_reset_succeeded_context.py | 6 - .../password_reset_succeeded_context_actor.py | 8 - ...rd_reset_succeeded_context_actor_source.py | 11 -- ...ceeded_context_google_analytics_session.py | 10 -- .../models/password_reset_succeeded_data.py | 2 +- .../models/permission_created_context.py | 6 - .../permission_created_context_actor.py | 8 - ...permission_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../models/permission_deleted_context.py | 6 - .../permission_deleted_context_actor.py | 8 - ...permission_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../common/models/permission_deleted_data.py | 2 +- .../models/permission_updated_context.py | 6 - .../permission_updated_context_actor.py | 8 - ...permission_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../common/models/permission_updated_data.py | 2 +- .../common/models/profile_connection_type.py | 2 +- .../radar_standalone_assess_request_action.py | 2 +- ...r_standalone_assess_request_auth_method.py | 2 +- ...adar_standalone_response_blocklist_type.py | 2 +- .../radar_standalone_response_control.py | 2 +- .../radar_standalone_response_verdict.py | 2 +- .../resend_user_invite_options_locale.py | 2 +- .../common/models/role_created_context.py | 6 - .../models/role_created_context_actor.py | 8 - .../role_created_context_actor_source.py | 9 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/role_deleted_context.py | 6 - .../models/role_deleted_context_actor.py | 8 - .../role_deleted_context_actor_source.py | 9 -- ...eleted_context_google_analytics_session.py | 10 -- src/workos/common/models/role_deleted_data.py | 2 +- src/workos/common/models/role_type.py | 2 +- .../common/models/role_updated_context.py | 6 - .../models/role_updated_context_actor.py | 8 - .../role_updated_context_actor_source.py | 9 -- ...pdated_context_google_analytics_session.py | 10 -- src/workos/common/models/role_updated_data.py | 2 +- .../common/models/session_created_context.py | 6 - .../models/session_created_context_actor.py | 8 - .../session_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../common/models/session_created_data.py | 2 +- .../session_created_data_auth_method.py | 2 +- .../session_created_data_impersonator.py | 2 +- .../models/session_created_data_status.py | 2 +- .../common/models/session_revoked_context.py | 6 - .../models/session_revoked_context_actor.py | 8 - .../session_revoked_context_actor_source.py | 11 -- ...evoked_context_google_analytics_session.py | 10 -- .../common/models/session_revoked_data.py | 2 +- .../session_revoked_data_auth_method.py | 2 +- .../session_revoked_data_impersonator.py | 2 +- .../models/session_revoked_data_status.py | 2 +- .../models/update_user_password_hash_type.py | 2 +- .../models/update_webhook_endpoint_events.py | 2 +- .../models/update_webhook_endpoint_status.py | 2 +- .../common/models/user_created_context.py | 6 - .../models/user_created_context_actor.py | 8 - .../user_created_context_actor_source.py | 9 -- ...reated_context_google_analytics_session.py | 10 -- src/workos/common/models/user_created_data.py | 6 - .../common/models/user_deleted_context.py | 6 - .../models/user_deleted_context_actor.py | 8 - .../user_deleted_context_actor_source.py | 9 -- ...eleted_context_google_analytics_session.py | 10 -- src/workos/common/models/user_deleted_data.py | 6 - .../user_identities_get_item_provider.py | 2 +- src/workos/common/models/user_invite_state.py | 2 +- ...zation_membership_base_list_data_status.py | 2 +- .../user_organization_membership_status.py | 2 +- .../models/user_sessions_auth_method.py | 2 +- .../common/models/user_sessions_status.py | 2 +- .../common/models/user_updated_context.py | 6 - .../models/user_updated_context_actor.py | 8 - .../user_updated_context_actor_source.py | 9 -- ...pdated_context_google_analytics_session.py | 10 -- src/workos/common/models/user_updated_data.py | 6 - ...byok_key_verification_completed_context.py | 6 - ...ey_verification_completed_context_actor.py | 10 -- ...fication_completed_context_actor_source.py | 11 -- ...pleted_context_google_analytics_session.py | 10 -- ...erification_completed_data_key_provider.py | 2 +- .../models/vault_data_created_context.py | 6 - .../vault_data_created_context_actor.py | 8 - ...vault_data_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../vault_data_created_data_actor_source.py | 2 +- .../models/vault_data_deleted_context.py | 6 - .../vault_data_deleted_context_actor.py | 8 - ...vault_data_deleted_context_actor_source.py | 11 -- ...eleted_context_google_analytics_session.py | 10 -- .../vault_data_deleted_data_actor_source.py | 2 +- .../common/models/vault_data_read_context.py | 6 - .../models/vault_data_read_context_actor.py | 8 - .../vault_data_read_context_actor_source.py | 11 -- ...a_read_context_google_analytics_session.py | 10 -- .../vault_data_read_data_actor_source.py | 2 +- .../models/vault_data_updated_context.py | 6 - .../vault_data_updated_context_actor.py | 8 - ...vault_data_updated_context_actor_source.py | 11 -- ...pdated_context_google_analytics_session.py | 10 -- .../common/models/vault_data_updated_data.py | 2 +- .../vault_data_updated_data_actor_source.py | 2 +- .../models/vault_dek_decrypted_context.py | 6 - .../vault_dek_decrypted_context_actor.py | 8 - ...ault_dek_decrypted_context_actor_source.py | 11 -- ...rypted_context_google_analytics_session.py | 10 -- .../vault_dek_decrypted_data_actor_source.py | 2 +- .../common/models/vault_dek_read_context.py | 6 - .../models/vault_dek_read_context_actor.py | 8 - .../vault_dek_read_context_actor_source.py | 9 -- ...k_read_context_google_analytics_session.py | 10 -- .../vault_dek_read_data_actor_source.py | 2 +- .../models/vault_kek_created_context.py | 6 - .../models/vault_kek_created_context_actor.py | 8 - .../vault_kek_created_context_actor_source.py | 11 -- ...reated_context_google_analytics_session.py | 10 -- .../vault_kek_created_data_actor_source.py | 2 +- .../models/vault_metadata_read_context.py | 6 - .../vault_metadata_read_context_actor.py | 8 - ...ault_metadata_read_context_actor_source.py | 11 -- ...a_read_context_google_analytics_session.py | 10 -- .../common/models/vault_metadata_read_data.py | 2 +- .../vault_metadata_read_data_actor_source.py | 2 +- .../models/vault_names_listed_context.py | 6 - .../vault_names_listed_context_actor.py | 8 - ...vault_names_listed_context_actor_source.py | 11 -- ...listed_context_google_analytics_session.py | 10 -- .../vault_names_listed_data_actor_source.py | 2 +- .../models/webhook_endpoint_json_status.py | 2 +- .../models/widget_session_token_scopes.py | 2 +- .../connect/models/applications_order.py | 2 +- .../models/directories_order.py | 2 +- .../models/directory_groups_order.py | 2 +- .../directory_user_with_groups_email.py | 2 +- .../models/directory_users_order.py | 2 +- src/workos/events/models/events_order.py | 2 +- .../models/feature_flags_order.py | 2 +- src/workos/feature_flags/models/flag.py | 2 +- src/workos/feature_flags/models/flag_owner.py | 2 +- .../organizations_feature_flags_order.py | 2 +- ...er_management_users_feature_flags_order.py | 2 +- .../models/authentication_factor_sms.py | 2 +- ...ement_multi_factor_authentication_order.py | 2 +- .../models/organization_domain_stand_alone.py | 2 +- .../models/organizations_order.py | 2 +- src/workos/radar/models/radar_action.py | 2 +- ...ar_standalone_update_radar_list_request.py | 2 +- src/workos/radar/models/radar_type.py | 2 +- src/workos/sso/models/connection_domain.py | 2 +- .../sso/models/connections_connection_type.py | 2 +- src/workos/sso/models/connections_order.py | 2 +- src/workos/sso/models/sso_provider.py | 2 +- .../models/sso_token_response_oauth_token.py | 2 +- .../models/confirm_email_change.py | 2 +- .../models/email_change_confirmation_user.py | 2 +- .../send_verification_email_response.py | 2 +- .../user_management/models/user_invite.py | 2 +- ...user_management_authentication_provider.py | 2 +- ...r_management_authentication_screen_hint.py | 2 +- .../user_management_invitations_order.py | 2 +- ...anagement_organization_membership_order.py | 2 +- ...gement_organization_membership_statuses.py | 2 +- ...ent_users_authorized_applications_order.py | 2 +- .../models/user_management_users_order.py | 2 +- .../models/user_organization_membership.py | 2 +- .../models/user_sessions_impersonator.py | 2 +- .../models/verify_email_address.py | 2 +- .../models/verify_email_response.py | 2 +- src/workos/webhooks/models/webhooks_order.py | 2 +- 575 files changed, 228 insertions(+), 3621 deletions(-) delete mode 100644 src/workos/authorization/models/list.py delete mode 100644 src/workos/authorization/models/list_data.py delete mode 100644 src/workos/common/models/action_authentication_denied_context.py delete mode 100644 src/workos/common/models/action_authentication_denied_context_actor.py delete mode 100644 src/workos/common/models/action_authentication_denied_context_actor_source.py delete mode 100644 src/workos/common/models/action_authentication_denied_context_google_analytics_session.py delete mode 100644 src/workos/common/models/action_user_registration_denied_context.py delete mode 100644 src/workos/common/models/action_user_registration_denied_context_actor.py delete mode 100644 src/workos/common/models/action_user_registration_denied_context_actor_source.py delete mode 100644 src/workos/common/models/action_user_registration_denied_context_google_analytics_session.py delete mode 100644 src/workos/common/models/api_key_created_context.py delete mode 100644 src/workos/common/models/api_key_created_context_actor.py delete mode 100644 src/workos/common/models/api_key_created_context_actor_source.py delete mode 100644 src/workos/common/models/api_key_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/api_key_revoked_context.py delete mode 100644 src/workos/common/models/api_key_revoked_context_actor.py delete mode 100644 src/workos/common/models/api_key_revoked_context_actor_source.py delete mode 100644 src/workos/common/models/api_key_revoked_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_email_verification_failed_context.py delete mode 100644 src/workos/common/models/authentication_email_verification_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_email_verification_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_email_verification_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_email_verification_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_email_verification_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_email_verification_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_email_verification_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_magic_auth_failed_context.py delete mode 100644 src/workos/common/models/authentication_magic_auth_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_magic_auth_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_magic_auth_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_magic_auth_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_magic_auth_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_magic_auth_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_magic_auth_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_mfa_failed_context.py delete mode 100644 src/workos/common/models/authentication_mfa_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_mfa_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_mfa_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_mfa_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_mfa_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_mfa_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_mfa_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_oauth_failed_context.py delete mode 100644 src/workos/common/models/authentication_oauth_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_oauth_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_oauth_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_oauth_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_oauth_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_oauth_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_oauth_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_passkey_failed_context.py delete mode 100644 src/workos/common/models/authentication_passkey_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_passkey_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_passkey_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_passkey_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_passkey_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_passkey_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_passkey_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_password_failed_context.py delete mode 100644 src/workos/common/models/authentication_password_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_password_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_password_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_password_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_password_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_password_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_password_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_radar_risk_detected_context.py delete mode 100644 src/workos/common/models/authentication_radar_risk_detected_context_actor.py delete mode 100644 src/workos/common/models/authentication_radar_risk_detected_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_radar_risk_detected_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_sso_failed_context.py delete mode 100644 src/workos/common/models/authentication_sso_failed_context_actor.py delete mode 100644 src/workos/common/models/authentication_sso_failed_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_sso_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_sso_started_context.py delete mode 100644 src/workos/common/models/authentication_sso_started_context_actor.py delete mode 100644 src/workos/common/models/authentication_sso_started_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_sso_started_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_sso_succeeded_context.py delete mode 100644 src/workos/common/models/authentication_sso_succeeded_context_actor.py delete mode 100644 src/workos/common/models/authentication_sso_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_sso_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/authentication_sso_timed_out_context.py delete mode 100644 src/workos/common/models/authentication_sso_timed_out_context_actor.py delete mode 100644 src/workos/common/models/authentication_sso_timed_out_context_actor_source.py delete mode 100644 src/workos/common/models/authentication_sso_timed_out_context_google_analytics_session.py delete mode 100644 src/workos/common/models/connection_activated_context.py delete mode 100644 src/workos/common/models/connection_activated_context_actor.py delete mode 100644 src/workos/common/models/connection_activated_context_actor_source.py delete mode 100644 src/workos/common/models/connection_activated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/connection_deactivated_context.py delete mode 100644 src/workos/common/models/connection_deactivated_context_actor.py delete mode 100644 src/workos/common/models/connection_deactivated_context_actor_source.py delete mode 100644 src/workos/common/models/connection_deactivated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/connection_deleted_context.py delete mode 100644 src/workos/common/models/connection_deleted_context_actor.py delete mode 100644 src/workos/common/models/connection_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/connection_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewal_required_context.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewal_required_context_actor.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewal_required_context_actor_source.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewal_required_context_google_analytics_session.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewed_context.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewed_context_actor.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewed_context_actor_source.py delete mode 100644 src/workos/common/models/connection_saml_certificate_renewed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_activated_context.py delete mode 100644 src/workos/common/models/dsync_activated_context_actor.py delete mode 100644 src/workos/common/models/dsync_activated_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_activated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_deactivated_context.py delete mode 100644 src/workos/common/models/dsync_deactivated_context_actor.py delete mode 100644 src/workos/common/models/dsync_deactivated_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_deactivated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_deleted_context.py delete mode 100644 src/workos/common/models/dsync_deleted_context_actor.py delete mode 100644 src/workos/common/models/dsync_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_created_context.py delete mode 100644 src/workos/common/models/dsync_group_created_context_actor.py delete mode 100644 src/workos/common/models/dsync_group_created_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_group_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_created_data.py delete mode 100644 src/workos/common/models/dsync_group_deleted_context.py delete mode 100644 src/workos/common/models/dsync_group_deleted_context_actor.py delete mode 100644 src/workos/common/models/dsync_group_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_group_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_deleted_data.py delete mode 100644 src/workos/common/models/dsync_group_updated_context.py delete mode 100644 src/workos/common/models/dsync_group_updated_context_actor.py delete mode 100644 src/workos/common/models/dsync_group_updated_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_group_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_user_added_context.py delete mode 100644 src/workos/common/models/dsync_group_user_added_context_actor.py delete mode 100644 src/workos/common/models/dsync_group_user_added_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_group_user_added_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_user_added_data_group.py delete mode 100644 src/workos/common/models/dsync_group_user_added_data_user.py delete mode 100644 src/workos/common/models/dsync_group_user_added_data_user_email.py delete mode 100644 src/workos/common/models/dsync_group_user_added_data_user_role.py delete mode 100644 src/workos/common/models/dsync_group_user_added_data_user_state.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_context.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_context_actor.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_data_group.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_data_user.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_data_user_email.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_data_user_role.py delete mode 100644 src/workos/common/models/dsync_group_user_removed_data_user_state.py delete mode 100644 src/workos/common/models/dsync_user_created_context.py delete mode 100644 src/workos/common/models/dsync_user_created_context_actor.py delete mode 100644 src/workos/common/models/dsync_user_created_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_user_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_user_created_data.py delete mode 100644 src/workos/common/models/dsync_user_created_data_email.py delete mode 100644 src/workos/common/models/dsync_user_created_data_role.py delete mode 100644 src/workos/common/models/dsync_user_created_data_state.py delete mode 100644 src/workos/common/models/dsync_user_deleted_context.py delete mode 100644 src/workos/common/models/dsync_user_deleted_context_actor.py delete mode 100644 src/workos/common/models/dsync_user_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_user_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_user_deleted_data.py delete mode 100644 src/workos/common/models/dsync_user_deleted_data_email.py delete mode 100644 src/workos/common/models/dsync_user_deleted_data_role.py delete mode 100644 src/workos/common/models/dsync_user_deleted_data_state.py delete mode 100644 src/workos/common/models/dsync_user_updated_context.py delete mode 100644 src/workos/common/models/dsync_user_updated_context_actor.py delete mode 100644 src/workos/common/models/dsync_user_updated_context_actor_source.py delete mode 100644 src/workos/common/models/dsync_user_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/dsync_user_updated_data_role.py delete mode 100644 src/workos/common/models/email_verification_created_context.py delete mode 100644 src/workos/common/models/email_verification_created_context_actor.py delete mode 100644 src/workos/common/models/email_verification_created_context_actor_source.py delete mode 100644 src/workos/common/models/email_verification_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/invitation_accepted_context.py delete mode 100644 src/workos/common/models/invitation_accepted_context_actor.py delete mode 100644 src/workos/common/models/invitation_accepted_context_actor_source.py delete mode 100644 src/workos/common/models/invitation_accepted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/invitation_created_context.py delete mode 100644 src/workos/common/models/invitation_created_context_actor.py delete mode 100644 src/workos/common/models/invitation_created_context_actor_source.py delete mode 100644 src/workos/common/models/invitation_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/invitation_resent_context.py delete mode 100644 src/workos/common/models/invitation_resent_context_actor.py delete mode 100644 src/workos/common/models/invitation_resent_context_actor_source.py delete mode 100644 src/workos/common/models/invitation_resent_context_google_analytics_session.py delete mode 100644 src/workos/common/models/invitation_revoked_context.py delete mode 100644 src/workos/common/models/invitation_revoked_context_actor.py delete mode 100644 src/workos/common/models/invitation_revoked_context_actor_source.py delete mode 100644 src/workos/common/models/invitation_revoked_context_google_analytics_session.py delete mode 100644 src/workos/common/models/list_data_type.py delete mode 100644 src/workos/common/models/magic_auth_created_context.py delete mode 100644 src/workos/common/models/magic_auth_created_context_actor.py delete mode 100644 src/workos/common/models/magic_auth_created_context_actor_source.py delete mode 100644 src/workos/common/models/magic_auth_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_created_context.py delete mode 100644 src/workos/common/models/organization_created_context_actor.py delete mode 100644 src/workos/common/models/organization_created_context_actor_source.py delete mode 100644 src/workos/common/models/organization_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_deleted_context.py delete mode 100644 src/workos/common/models/organization_deleted_context_actor.py delete mode 100644 src/workos/common/models/organization_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/organization_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_domain_created_context.py delete mode 100644 src/workos/common/models/organization_domain_created_context_actor.py delete mode 100644 src/workos/common/models/organization_domain_created_context_actor_source.py delete mode 100644 src/workos/common/models/organization_domain_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_domain_deleted_context.py delete mode 100644 src/workos/common/models/organization_domain_deleted_context_actor.py delete mode 100644 src/workos/common/models/organization_domain_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/organization_domain_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_domain_updated_context.py delete mode 100644 src/workos/common/models/organization_domain_updated_context_actor.py delete mode 100644 src/workos/common/models/organization_domain_updated_context_actor_source.py delete mode 100644 src/workos/common/models/organization_domain_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_domain_verification_failed_context.py delete mode 100644 src/workos/common/models/organization_domain_verification_failed_context_actor.py delete mode 100644 src/workos/common/models/organization_domain_verification_failed_context_actor_source.py delete mode 100644 src/workos/common/models/organization_domain_verification_failed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_domain_verified_context.py delete mode 100644 src/workos/common/models/organization_domain_verified_context_actor.py delete mode 100644 src/workos/common/models/organization_domain_verified_context_actor_source.py delete mode 100644 src/workos/common/models/organization_domain_verified_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_membership_created_context.py delete mode 100644 src/workos/common/models/organization_membership_created_context_actor.py delete mode 100644 src/workos/common/models/organization_membership_created_context_actor_source.py delete mode 100644 src/workos/common/models/organization_membership_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_membership_deleted_context.py delete mode 100644 src/workos/common/models/organization_membership_deleted_context_actor.py delete mode 100644 src/workos/common/models/organization_membership_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/organization_membership_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_membership_updated_context.py delete mode 100644 src/workos/common/models/organization_membership_updated_context_actor.py delete mode 100644 src/workos/common/models/organization_membership_updated_context_actor_source.py delete mode 100644 src/workos/common/models/organization_membership_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_role_created_context.py delete mode 100644 src/workos/common/models/organization_role_created_context_actor.py delete mode 100644 src/workos/common/models/organization_role_created_context_actor_source.py delete mode 100644 src/workos/common/models/organization_role_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_role_deleted_context.py delete mode 100644 src/workos/common/models/organization_role_deleted_context_actor.py delete mode 100644 src/workos/common/models/organization_role_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/organization_role_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_role_updated_context.py delete mode 100644 src/workos/common/models/organization_role_updated_context_actor.py delete mode 100644 src/workos/common/models/organization_role_updated_context_actor_source.py delete mode 100644 src/workos/common/models/organization_role_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/organization_updated_context.py delete mode 100644 src/workos/common/models/organization_updated_context_actor.py delete mode 100644 src/workos/common/models/organization_updated_context_actor_source.py delete mode 100644 src/workos/common/models/organization_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/password_reset_created_context.py delete mode 100644 src/workos/common/models/password_reset_created_context_actor.py delete mode 100644 src/workos/common/models/password_reset_created_context_actor_source.py delete mode 100644 src/workos/common/models/password_reset_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/password_reset_succeeded_context.py delete mode 100644 src/workos/common/models/password_reset_succeeded_context_actor.py delete mode 100644 src/workos/common/models/password_reset_succeeded_context_actor_source.py delete mode 100644 src/workos/common/models/password_reset_succeeded_context_google_analytics_session.py delete mode 100644 src/workos/common/models/permission_created_context.py delete mode 100644 src/workos/common/models/permission_created_context_actor.py delete mode 100644 src/workos/common/models/permission_created_context_actor_source.py delete mode 100644 src/workos/common/models/permission_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/permission_deleted_context.py delete mode 100644 src/workos/common/models/permission_deleted_context_actor.py delete mode 100644 src/workos/common/models/permission_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/permission_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/permission_updated_context.py delete mode 100644 src/workos/common/models/permission_updated_context_actor.py delete mode 100644 src/workos/common/models/permission_updated_context_actor_source.py delete mode 100644 src/workos/common/models/permission_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/role_created_context.py delete mode 100644 src/workos/common/models/role_created_context_actor.py delete mode 100644 src/workos/common/models/role_created_context_actor_source.py delete mode 100644 src/workos/common/models/role_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/role_deleted_context.py delete mode 100644 src/workos/common/models/role_deleted_context_actor.py delete mode 100644 src/workos/common/models/role_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/role_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/role_updated_context.py delete mode 100644 src/workos/common/models/role_updated_context_actor.py delete mode 100644 src/workos/common/models/role_updated_context_actor_source.py delete mode 100644 src/workos/common/models/role_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/session_created_context.py delete mode 100644 src/workos/common/models/session_created_context_actor.py delete mode 100644 src/workos/common/models/session_created_context_actor_source.py delete mode 100644 src/workos/common/models/session_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/session_revoked_context.py delete mode 100644 src/workos/common/models/session_revoked_context_actor.py delete mode 100644 src/workos/common/models/session_revoked_context_actor_source.py delete mode 100644 src/workos/common/models/session_revoked_context_google_analytics_session.py delete mode 100644 src/workos/common/models/user_created_context.py delete mode 100644 src/workos/common/models/user_created_context_actor.py delete mode 100644 src/workos/common/models/user_created_context_actor_source.py delete mode 100644 src/workos/common/models/user_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/user_created_data.py delete mode 100644 src/workos/common/models/user_deleted_context.py delete mode 100644 src/workos/common/models/user_deleted_context_actor.py delete mode 100644 src/workos/common/models/user_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/user_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/user_deleted_data.py delete mode 100644 src/workos/common/models/user_updated_context.py delete mode 100644 src/workos/common/models/user_updated_context_actor.py delete mode 100644 src/workos/common/models/user_updated_context_actor_source.py delete mode 100644 src/workos/common/models/user_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/user_updated_data.py delete mode 100644 src/workos/common/models/vault_byok_key_verification_completed_context.py delete mode 100644 src/workos/common/models/vault_byok_key_verification_completed_context_actor.py delete mode 100644 src/workos/common/models/vault_byok_key_verification_completed_context_actor_source.py delete mode 100644 src/workos/common/models/vault_byok_key_verification_completed_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_data_created_context.py delete mode 100644 src/workos/common/models/vault_data_created_context_actor.py delete mode 100644 src/workos/common/models/vault_data_created_context_actor_source.py delete mode 100644 src/workos/common/models/vault_data_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_data_deleted_context.py delete mode 100644 src/workos/common/models/vault_data_deleted_context_actor.py delete mode 100644 src/workos/common/models/vault_data_deleted_context_actor_source.py delete mode 100644 src/workos/common/models/vault_data_deleted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_data_read_context.py delete mode 100644 src/workos/common/models/vault_data_read_context_actor.py delete mode 100644 src/workos/common/models/vault_data_read_context_actor_source.py delete mode 100644 src/workos/common/models/vault_data_read_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_data_updated_context.py delete mode 100644 src/workos/common/models/vault_data_updated_context_actor.py delete mode 100644 src/workos/common/models/vault_data_updated_context_actor_source.py delete mode 100644 src/workos/common/models/vault_data_updated_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_dek_decrypted_context.py delete mode 100644 src/workos/common/models/vault_dek_decrypted_context_actor.py delete mode 100644 src/workos/common/models/vault_dek_decrypted_context_actor_source.py delete mode 100644 src/workos/common/models/vault_dek_decrypted_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_dek_read_context.py delete mode 100644 src/workos/common/models/vault_dek_read_context_actor.py delete mode 100644 src/workos/common/models/vault_dek_read_context_actor_source.py delete mode 100644 src/workos/common/models/vault_dek_read_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_kek_created_context.py delete mode 100644 src/workos/common/models/vault_kek_created_context_actor.py delete mode 100644 src/workos/common/models/vault_kek_created_context_actor_source.py delete mode 100644 src/workos/common/models/vault_kek_created_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_metadata_read_context.py delete mode 100644 src/workos/common/models/vault_metadata_read_context_actor.py delete mode 100644 src/workos/common/models/vault_metadata_read_context_actor_source.py delete mode 100644 src/workos/common/models/vault_metadata_read_context_google_analytics_session.py delete mode 100644 src/workos/common/models/vault_names_listed_context.py delete mode 100644 src/workos/common/models/vault_names_listed_context_actor.py delete mode 100644 src/workos/common/models/vault_names_listed_context_actor_source.py delete mode 100644 src/workos/common/models/vault_names_listed_context_google_analytics_session.py diff --git a/src/workos/api_keys/models/api_key_owner.py b/src/workos/api_keys/models/api_key_owner.py index 21af985e..35b9785b 100644 --- a/src/workos/api_keys/models/api_key_owner.py +++ b/src/workos/api_keys/models/api_key_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.api_key_created_data_owner import ApiKeyCreatedDataOwner ApiKeyOwner: TypeAlias = ApiKeyCreatedDataOwner diff --git a/src/workos/api_keys/models/api_key_with_value_owner.py b/src/workos/api_keys/models/api_key_with_value_owner.py index b2d1af01..574963ce 100644 --- a/src/workos/api_keys/models/api_key_with_value_owner.py +++ b/src/workos/api_keys/models/api_key_with_value_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.api_key_created_data_owner import ApiKeyCreatedDataOwner ApiKeyWithValueOwner: TypeAlias = ApiKeyCreatedDataOwner diff --git a/src/workos/api_keys/models/organizations_api_keys_order.py b/src/workos/api_keys/models/organizations_api_keys_order.py index 5998a263..1ee9eb61 100644 --- a/src/workos/api_keys/models/organizations_api_keys_order.py +++ b/src/workos/api_keys/models/organizations_api_keys_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder OrganizationsApiKeysOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/audit_logs/models/audit_log_event_target.py b/src/workos/audit_logs/models/audit_log_event_target.py index 6b50143b..5d3bf51a 100644 --- a/src/workos/audit_logs/models/audit_log_event_target.py +++ b/src/workos/audit_logs/models/audit_log_event_target.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .audit_log_event_actor import AuditLogEventActor AuditLogEventTarget: TypeAlias = AuditLogEventActor diff --git a/src/workos/audit_logs/models/audit_log_schema_json_actor.py b/src/workos/audit_logs/models/audit_log_schema_json_actor.py index 222673a5..2c9bfdb6 100644 --- a/src/workos/audit_logs/models/audit_log_schema_json_actor.py +++ b/src/workos/audit_logs/models/audit_log_schema_json_actor.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .audit_log_schema_actor import AuditLogSchemaActor AuditLogSchemaJsonActor: TypeAlias = AuditLogSchemaActor diff --git a/src/workos/audit_logs/models/audit_log_schema_target.py b/src/workos/audit_logs/models/audit_log_schema_target.py index af309ccd..052064be 100644 --- a/src/workos/audit_logs/models/audit_log_schema_target.py +++ b/src/workos/audit_logs/models/audit_log_schema_target.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .audit_log_schema_json_target import AuditLogSchemaJsonTarget AuditLogSchemaTarget: TypeAlias = AuditLogSchemaJsonTarget diff --git a/src/workos/audit_logs/models/audit_logs_order.py b/src/workos/audit_logs/models/audit_logs_order.py index 6105feca..e1193053 100644 --- a/src/workos/audit_logs/models/audit_logs_order.py +++ b/src/workos/audit_logs/models/audit_logs_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder AuditLogsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/authorization/models/authorization_assignment.py b/src/workos/authorization/models/authorization_assignment.py index 272f5e2b..b24c8bd3 100644 --- a/src/workos/authorization/models/authorization_assignment.py +++ b/src/workos/authorization/models/authorization_assignment.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuthorizationAssignment(str, Enum): diff --git a/src/workos/authorization/models/authorization_order.py b/src/workos/authorization/models/authorization_order.py index 857a755a..9920b5c9 100644 --- a/src/workos/authorization/models/authorization_order.py +++ b/src/workos/authorization/models/authorization_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder AuthorizationOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/authorization/models/create_role.py b/src/workos/authorization/models/create_role.py index 5e807cd3..890f347d 100644 --- a/src/workos/authorization/models/create_role.py +++ b/src/workos/authorization/models/create_role.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .create_authorization_permission import CreateAuthorizationPermission CreateRole: TypeAlias = CreateAuthorizationPermission diff --git a/src/workos/authorization/models/list.py b/src/workos/authorization/models/list.py deleted file mode 100644 index 5023da18..00000000 --- a/src/workos/authorization/models/list.py +++ /dev/null @@ -1,40 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from __future__ import annotations - -from dataclasses import dataclass -from typing import cast -from typing import Any, Dict, List, Literal -from workos._types import _raise_deserialize_error - -from .list_data import ListData - - -@dataclass(slots=True) -class ListModel: - """List Model model.""" - - object: Literal["list"] - data: List["ListData"] - """The list of records for the current page.""" - - @classmethod - def from_dict(cls, data: Dict[str, Any]) -> "ListModel": - """Deserialize from a dictionary.""" - try: - return cls( - object=data["object"], - data=[ - ListData.from_dict(cast(Dict[str, Any], item)) - for item in cast(list[Any], data["data"]) - ], - ) - except (KeyError, ValueError) as e: - _raise_deserialize_error("ListModel", e) - - def to_dict(self) -> Dict[str, Any]: - """Serialize to a dictionary.""" - result: Dict[str, Any] = {} - result["object"] = self.object - result["data"] = [item.to_dict() for item in self.data] - return result diff --git a/src/workos/authorization/models/list_data.py b/src/workos/authorization/models/list_data.py deleted file mode 100644 index d922849e..00000000 --- a/src/workos/authorization/models/list_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .role import Role - -ListData: TypeAlias = Role diff --git a/src/workos/authorization/models/permission.py b/src/workos/authorization/models/permission.py index ab5b86ca..4957be8a 100644 --- a/src/workos/authorization/models/permission.py +++ b/src/workos/authorization/models/permission.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authorization_permission import AuthorizationPermission Permission: TypeAlias = AuthorizationPermission diff --git a/src/workos/authorization/models/permissions_order.py b/src/workos/authorization/models/permissions_order.py index 1e0ecf44..cc601f83 100644 --- a/src/workos/authorization/models/permissions_order.py +++ b/src/workos/authorization/models/permissions_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder PermissionsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/authorization/models/remove_role.py b/src/workos/authorization/models/remove_role.py index a2208d1b..e423166f 100644 --- a/src/workos/authorization/models/remove_role.py +++ b/src/workos/authorization/models/remove_role.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .assign_role import AssignRole RemoveRole: TypeAlias = AssignRole diff --git a/src/workos/authorization/models/slim_role.py b/src/workos/authorization/models/slim_role.py index e0593d8b..2742bdfb 100644 --- a/src/workos/authorization/models/slim_role.py +++ b/src/workos/authorization/models/slim_role.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .add_role_permission import AddRolePermission SlimRole: TypeAlias = AddRolePermission diff --git a/src/workos/authorization/models/update_organization_role.py b/src/workos/authorization/models/update_organization_role.py index b8989f6c..47ab813f 100644 --- a/src/workos/authorization/models/update_organization_role.py +++ b/src/workos/authorization/models/update_organization_role.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .update_authorization_permission import UpdateAuthorizationPermission UpdateOrganizationRole: TypeAlias = UpdateAuthorizationPermission diff --git a/src/workos/authorization/models/update_role.py b/src/workos/authorization/models/update_role.py index ac40cbfd..2eb9ee78 100644 --- a/src/workos/authorization/models/update_role.py +++ b/src/workos/authorization/models/update_role.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .update_authorization_permission import UpdateAuthorizationPermission UpdateRole: TypeAlias = UpdateAuthorizationPermission diff --git a/src/workos/common/models/action_authentication_denied_context.py b/src/workos/common/models/action_authentication_denied_context.py deleted file mode 100644 index 7006dbe2..00000000 --- a/src/workos/common/models/action_authentication_denied_context.py +++ /dev/null @@ -1,80 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from __future__ import annotations - -from dataclasses import dataclass -from typing import cast -from typing import Any, Dict, List, Optional -from workos._types import _raise_deserialize_error - -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - - -@dataclass(slots=True) -class ActionAuthenticationDeniedContext: - """Additional context about the event.""" - - google_analytics_client_id: Optional[str] = None - """The Google Analytics client ID.""" - google_analytics_sessions: Optional[ - List["ActionAuthenticationDeniedContextGoogleAnalyticsSession"] - ] = None - """The Google Analytics sessions associated with the event.""" - ajs_anonymous_id: Optional[str] = None - """The anonymous ID from analytics.""" - client_id: Optional[str] = None - """The client ID associated with the event.""" - actor: Optional["ActionAuthenticationDeniedContextActor"] = None - """The actor who performed the action.""" - previous_attributes: Optional[Dict[str, Any]] = None - """Attributes that changed from their previous values.""" - - @classmethod - def from_dict(cls, data: Dict[str, Any]) -> "ActionAuthenticationDeniedContext": - """Deserialize from a dictionary.""" - try: - return cls( - google_analytics_client_id=data.get("google_analytics_client_id"), - google_analytics_sessions=[ - ActionAuthenticationDeniedContextGoogleAnalyticsSession.from_dict( - cast(Dict[str, Any], item) - ) - for item in cast(list[Any], _v) - ] - if (_v := data.get("google_analytics_sessions")) is not None - else None, - ajs_anonymous_id=data.get("ajs_anonymous_id"), - client_id=data.get("client_id"), - actor=ActionAuthenticationDeniedContextActor.from_dict( - cast(Dict[str, Any], _v) - ) - if (_v := data.get("actor")) is not None - else None, - previous_attributes=data.get("previous_attributes"), - ) - except (KeyError, ValueError) as e: - _raise_deserialize_error("ActionAuthenticationDeniedContext", e) - - def to_dict(self) -> Dict[str, Any]: - """Serialize to a dictionary.""" - result: Dict[str, Any] = {} - if self.google_analytics_client_id is not None: - result["google_analytics_client_id"] = self.google_analytics_client_id - if self.google_analytics_sessions is not None: - result["google_analytics_sessions"] = [ - item.to_dict() for item in self.google_analytics_sessions - ] - if self.ajs_anonymous_id is not None: - result["ajs_anonymous_id"] = self.ajs_anonymous_id - if self.client_id is not None: - result["client_id"] = self.client_id - if self.actor is not None: - result["actor"] = self.actor.to_dict() - if self.previous_attributes is not None: - result["previous_attributes"] = self.previous_attributes - return result diff --git a/src/workos/common/models/action_authentication_denied_context_actor.py b/src/workos/common/models/action_authentication_denied_context_actor.py deleted file mode 100644 index b3495303..00000000 --- a/src/workos/common/models/action_authentication_denied_context_actor.py +++ /dev/null @@ -1,50 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from __future__ import annotations - -from dataclasses import dataclass -from enum import Enum -from typing import Any, Dict, Optional -from workos._types import _raise_deserialize_error -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - - -@dataclass(slots=True) -class ActionAuthenticationDeniedContextActor: - """The actor who performed the action.""" - - id: str - """Unique identifier of the actor.""" - source: "ActionAuthenticationDeniedContextActorSource" - """The source of the actor that performed the action.""" - name: Optional[str] - """The name of the actor.""" - - @classmethod - def from_dict( - cls, data: Dict[str, Any] - ) -> "ActionAuthenticationDeniedContextActor": - """Deserialize from a dictionary.""" - try: - return cls( - id=data["id"], - source=ActionAuthenticationDeniedContextActorSource(data["source"]), - name=data["name"], - ) - except (KeyError, ValueError) as e: - _raise_deserialize_error("ActionAuthenticationDeniedContextActor", e) - - def to_dict(self) -> Dict[str, Any]: - """Serialize to a dictionary.""" - result: Dict[str, Any] = {} - result["id"] = self.id - result["source"] = ( - self.source.value if isinstance(self.source, Enum) else self.source - ) - if self.name is not None: - result["name"] = self.name - else: - result["name"] = None - return result diff --git a/src/workos/common/models/action_authentication_denied_context_actor_source.py b/src/workos/common/models/action_authentication_denied_context_actor_source.py deleted file mode 100644 index 994d9fb4..00000000 --- a/src/workos/common/models/action_authentication_denied_context_actor_source.py +++ /dev/null @@ -1,33 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -"""Enumeration of action authentication denied context actor source values.""" - -from __future__ import annotations - -from enum import Enum -from typing import Optional -from typing_extensions import Literal, TypeAlias - - -class ActionAuthenticationDeniedContextActorSource(str, Enum): - """Known values for ActionAuthenticationDeniedContextActorSource.""" - - API = "api" - DASHBOARD = "dashboard" - SYSTEM = "system" - - @classmethod - def _missing_( - cls, value: object - ) -> Optional["ActionAuthenticationDeniedContextActorSource"]: - if not isinstance(value, str): - return None - unknown = str.__new__(cls, value) - unknown._name_ = value.upper() - unknown._value_ = value - return unknown - - -ActionAuthenticationDeniedContextActorSourceLiteral: TypeAlias = Literal[ - "api", "dashboard", "system" -] diff --git a/src/workos/common/models/action_authentication_denied_context_google_analytics_session.py b/src/workos/common/models/action_authentication_denied_context_google_analytics_session.py deleted file mode 100644 index ef34783b..00000000 --- a/src/workos/common/models/action_authentication_denied_context_google_analytics_session.py +++ /dev/null @@ -1,45 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from __future__ import annotations - -from dataclasses import dataclass -from typing import Any, Dict, Optional -from workos._types import _raise_deserialize_error - - -@dataclass(slots=True) -class ActionAuthenticationDeniedContextGoogleAnalyticsSession: - """Action Authentication Denied Context Google Analytics Session model.""" - - container_id: str - """The Google Analytics container ID.""" - session_id: Optional[str] = None - """The Google Analytics session ID.""" - session_number: Optional[str] = None - """The Google Analytics session number.""" - - @classmethod - def from_dict( - cls, data: Dict[str, Any] - ) -> "ActionAuthenticationDeniedContextGoogleAnalyticsSession": - """Deserialize from a dictionary.""" - try: - return cls( - container_id=data["containerId"], - session_id=data.get("sessionId"), - session_number=data.get("sessionNumber"), - ) - except (KeyError, ValueError) as e: - _raise_deserialize_error( - "ActionAuthenticationDeniedContextGoogleAnalyticsSession", e - ) - - def to_dict(self) -> Dict[str, Any]: - """Serialize to a dictionary.""" - result: Dict[str, Any] = {} - result["containerId"] = self.container_id - if self.session_id is not None: - result["sessionId"] = self.session_id - if self.session_number is not None: - result["sessionNumber"] = self.session_number - return result diff --git a/src/workos/common/models/action_user_registration_denied_context.py b/src/workos/common/models/action_user_registration_denied_context.py deleted file mode 100644 index 32359fa1..00000000 --- a/src/workos/common/models/action_user_registration_denied_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ActionUserRegistrationDeniedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/action_user_registration_denied_context_actor.py b/src/workos/common/models/action_user_registration_denied_context_actor.py deleted file mode 100644 index d649e8cc..00000000 --- a/src/workos/common/models/action_user_registration_denied_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ActionUserRegistrationDeniedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/action_user_registration_denied_context_actor_source.py b/src/workos/common/models/action_user_registration_denied_context_actor_source.py deleted file mode 100644 index 4d9853ca..00000000 --- a/src/workos/common/models/action_user_registration_denied_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ActionUserRegistrationDeniedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ActionUserRegistrationDeniedContextActorSource"] diff --git a/src/workos/common/models/action_user_registration_denied_context_google_analytics_session.py b/src/workos/common/models/action_user_registration_denied_context_google_analytics_session.py deleted file mode 100644 index 2afa86e5..00000000 --- a/src/workos/common/models/action_user_registration_denied_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ActionUserRegistrationDeniedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/api_key_created_context.py b/src/workos/common/models/api_key_created_context.py deleted file mode 100644 index 5a2f9fd5..00000000 --- a/src/workos/common/models/api_key_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ApiKeyCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/api_key_created_context_actor.py b/src/workos/common/models/api_key_created_context_actor.py deleted file mode 100644 index 00525efb..00000000 --- a/src/workos/common/models/api_key_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ApiKeyCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/api_key_created_context_actor_source.py b/src/workos/common/models/api_key_created_context_actor_source.py deleted file mode 100644 index f3366420..00000000 --- a/src/workos/common/models/api_key_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ApiKeyCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ApiKeyCreatedContextActorSource"] diff --git a/src/workos/common/models/api_key_created_context_google_analytics_session.py b/src/workos/common/models/api_key_created_context_google_analytics_session.py deleted file mode 100644 index 6df4f58d..00000000 --- a/src/workos/common/models/api_key_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ApiKeyCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/api_key_revoked_context.py b/src/workos/common/models/api_key_revoked_context.py deleted file mode 100644 index 062172c9..00000000 --- a/src/workos/common/models/api_key_revoked_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ApiKeyRevokedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/api_key_revoked_context_actor.py b/src/workos/common/models/api_key_revoked_context_actor.py deleted file mode 100644 index 99ba2822..00000000 --- a/src/workos/common/models/api_key_revoked_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ApiKeyRevokedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/api_key_revoked_context_actor_source.py b/src/workos/common/models/api_key_revoked_context_actor_source.py deleted file mode 100644 index 2e703789..00000000 --- a/src/workos/common/models/api_key_revoked_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ApiKeyRevokedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ApiKeyRevokedContextActorSource"] diff --git a/src/workos/common/models/api_key_revoked_context_google_analytics_session.py b/src/workos/common/models/api_key_revoked_context_google_analytics_session.py deleted file mode 100644 index 73a36a89..00000000 --- a/src/workos/common/models/api_key_revoked_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ApiKeyRevokedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/api_key_revoked_data.py b/src/workos/common/models/api_key_revoked_data.py index bd71b434..c96bbcf4 100644 --- a/src/workos/common/models/api_key_revoked_data.py +++ b/src/workos/common/models/api_key_revoked_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .api_key_created_data import ApiKeyCreatedData ApiKeyRevokedData: TypeAlias = ApiKeyCreatedData diff --git a/src/workos/common/models/api_key_revoked_data_owner.py b/src/workos/common/models/api_key_revoked_data_owner.py index f2070544..53a3ff43 100644 --- a/src/workos/common/models/api_key_revoked_data_owner.py +++ b/src/workos/common/models/api_key_revoked_data_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .api_key_created_data_owner import ApiKeyCreatedDataOwner ApiKeyRevokedDataOwner: TypeAlias = ApiKeyCreatedDataOwner diff --git a/src/workos/common/models/audit_log_configuration_log_stream_state.py b/src/workos/common/models/audit_log_configuration_log_stream_state.py index d076b31f..155db1a0 100644 --- a/src/workos/common/models/audit_log_configuration_log_stream_state.py +++ b/src/workos/common/models/audit_log_configuration_log_stream_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuditLogConfigurationLogStreamState(str, Enum): diff --git a/src/workos/common/models/audit_log_configuration_log_stream_type.py b/src/workos/common/models/audit_log_configuration_log_stream_type.py index 50524faf..46eef4ba 100644 --- a/src/workos/common/models/audit_log_configuration_log_stream_type.py +++ b/src/workos/common/models/audit_log_configuration_log_stream_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuditLogConfigurationLogStreamType(str, Enum): diff --git a/src/workos/common/models/audit_log_configuration_state.py b/src/workos/common/models/audit_log_configuration_state.py index 6bea7264..d1021747 100644 --- a/src/workos/common/models/audit_log_configuration_state.py +++ b/src/workos/common/models/audit_log_configuration_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuditLogConfigurationState(str, Enum): diff --git a/src/workos/common/models/audit_log_export_json_state.py b/src/workos/common/models/audit_log_export_json_state.py index 0a405506..07e1b027 100644 --- a/src/workos/common/models/audit_log_export_json_state.py +++ b/src/workos/common/models/audit_log_export_json_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuditLogExportJsonState(str, Enum): diff --git a/src/workos/common/models/authenticate_response_authentication_method.py b/src/workos/common/models/authenticate_response_authentication_method.py index 28249720..28db4599 100644 --- a/src/workos/common/models/authenticate_response_authentication_method.py +++ b/src/workos/common/models/authenticate_response_authentication_method.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuthenticateResponseAuthenticationMethod(str, Enum): diff --git a/src/workos/common/models/authentication_email_verification_failed_context.py b/src/workos/common/models/authentication_email_verification_failed_context.py deleted file mode 100644 index 5252a362..00000000 --- a/src/workos/common/models/authentication_email_verification_failed_context.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationEmailVerificationFailedContext: TypeAlias = ( - ActionAuthenticationDeniedContext -) diff --git a/src/workos/common/models/authentication_email_verification_failed_context_actor.py b/src/workos/common/models/authentication_email_verification_failed_context_actor.py deleted file mode 100644 index 2432745b..00000000 --- a/src/workos/common/models/authentication_email_verification_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationEmailVerificationFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_email_verification_failed_context_actor_source.py b/src/workos/common/models/authentication_email_verification_failed_context_actor_source.py deleted file mode 100644 index 5cbd8438..00000000 --- a/src/workos/common/models/authentication_email_verification_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationEmailVerificationFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationEmailVerificationFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_email_verification_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_email_verification_failed_context_google_analytics_session.py deleted file mode 100644 index ecb1a736..00000000 --- a/src/workos/common/models/authentication_email_verification_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationEmailVerificationFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_email_verification_succeeded_context.py b/src/workos/common/models/authentication_email_verification_succeeded_context.py deleted file mode 100644 index eef7697c..00000000 --- a/src/workos/common/models/authentication_email_verification_succeeded_context.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationEmailVerificationSucceededContext: TypeAlias = ( - ActionAuthenticationDeniedContext -) diff --git a/src/workos/common/models/authentication_email_verification_succeeded_context_actor.py b/src/workos/common/models/authentication_email_verification_succeeded_context_actor.py deleted file mode 100644 index e06dccd8..00000000 --- a/src/workos/common/models/authentication_email_verification_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationEmailVerificationSucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_email_verification_succeeded_context_actor_source.py b/src/workos/common/models/authentication_email_verification_succeeded_context_actor_source.py deleted file mode 100644 index a0541f09..00000000 --- a/src/workos/common/models/authentication_email_verification_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationEmailVerificationSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationEmailVerificationSucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_email_verification_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_email_verification_succeeded_context_google_analytics_session.py deleted file mode 100644 index 31599e76..00000000 --- a/src/workos/common/models/authentication_email_verification_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationEmailVerificationSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_factor_enrolled_type.py b/src/workos/common/models/authentication_factor_enrolled_type.py index 4a1c401c..cf0a75b8 100644 --- a/src/workos/common/models/authentication_factor_enrolled_type.py +++ b/src/workos/common/models/authentication_factor_enrolled_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuthenticationFactorEnrolledType(str, Enum): diff --git a/src/workos/common/models/authentication_factor_type.py b/src/workos/common/models/authentication_factor_type.py index 2eed7634..a3370372 100644 --- a/src/workos/common/models/authentication_factor_type.py +++ b/src/workos/common/models/authentication_factor_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_factor_enrolled_type import AuthenticationFactorEnrolledType AuthenticationFactorType: TypeAlias = AuthenticationFactorEnrolledType diff --git a/src/workos/common/models/authentication_factors_create_request_type.py b/src/workos/common/models/authentication_factors_create_request_type.py index 1993b6ad..09c88b52 100644 --- a/src/workos/common/models/authentication_factors_create_request_type.py +++ b/src/workos/common/models/authentication_factors_create_request_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuthenticationFactorsCreateRequestType(str, Enum): diff --git a/src/workos/common/models/authentication_magic_auth_failed_context.py b/src/workos/common/models/authentication_magic_auth_failed_context.py deleted file mode 100644 index 02fcfc96..00000000 --- a/src/workos/common/models/authentication_magic_auth_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationMagicAuthFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_magic_auth_failed_context_actor.py b/src/workos/common/models/authentication_magic_auth_failed_context_actor.py deleted file mode 100644 index 2d91e1b0..00000000 --- a/src/workos/common/models/authentication_magic_auth_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationMagicAuthFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_magic_auth_failed_context_actor_source.py b/src/workos/common/models/authentication_magic_auth_failed_context_actor_source.py deleted file mode 100644 index ee69e4e9..00000000 --- a/src/workos/common/models/authentication_magic_auth_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationMagicAuthFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationMagicAuthFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_magic_auth_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_magic_auth_failed_context_google_analytics_session.py deleted file mode 100644 index 98f65c0d..00000000 --- a/src/workos/common/models/authentication_magic_auth_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationMagicAuthFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_magic_auth_failed_data_error.py b/src/workos/common/models/authentication_magic_auth_failed_data_error.py index 3b40a560..a0eb0649 100644 --- a/src/workos/common/models/authentication_magic_auth_failed_data_error.py +++ b/src/workos/common/models/authentication_magic_auth_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_magic_auth_succeeded_context.py b/src/workos/common/models/authentication_magic_auth_succeeded_context.py deleted file mode 100644 index 26831cc9..00000000 --- a/src/workos/common/models/authentication_magic_auth_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationMagicAuthSucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_magic_auth_succeeded_context_actor.py b/src/workos/common/models/authentication_magic_auth_succeeded_context_actor.py deleted file mode 100644 index 7b5238b2..00000000 --- a/src/workos/common/models/authentication_magic_auth_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationMagicAuthSucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_magic_auth_succeeded_context_actor_source.py b/src/workos/common/models/authentication_magic_auth_succeeded_context_actor_source.py deleted file mode 100644 index fd2bf78f..00000000 --- a/src/workos/common/models/authentication_magic_auth_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationMagicAuthSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationMagicAuthSucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_magic_auth_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_magic_auth_succeeded_context_google_analytics_session.py deleted file mode 100644 index dfb2dfb7..00000000 --- a/src/workos/common/models/authentication_magic_auth_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationMagicAuthSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_mfa_failed_context.py b/src/workos/common/models/authentication_mfa_failed_context.py deleted file mode 100644 index 7e6e0058..00000000 --- a/src/workos/common/models/authentication_mfa_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationMFAFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_mfa_failed_context_actor.py b/src/workos/common/models/authentication_mfa_failed_context_actor.py deleted file mode 100644 index 5ee370d2..00000000 --- a/src/workos/common/models/authentication_mfa_failed_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationMFAFailedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/authentication_mfa_failed_context_actor_source.py b/src/workos/common/models/authentication_mfa_failed_context_actor_source.py deleted file mode 100644 index 182a40d3..00000000 --- a/src/workos/common/models/authentication_mfa_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationMFAFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationMFAFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_mfa_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_mfa_failed_context_google_analytics_session.py deleted file mode 100644 index ec96facc..00000000 --- a/src/workos/common/models/authentication_mfa_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationMFAFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_mfa_failed_data_error.py b/src/workos/common/models/authentication_mfa_failed_data_error.py index 3e35784b..27838fd6 100644 --- a/src/workos/common/models/authentication_mfa_failed_data_error.py +++ b/src/workos/common/models/authentication_mfa_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_mfa_succeeded_context.py b/src/workos/common/models/authentication_mfa_succeeded_context.py deleted file mode 100644 index 0fea25e6..00000000 --- a/src/workos/common/models/authentication_mfa_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationMFASucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_mfa_succeeded_context_actor.py b/src/workos/common/models/authentication_mfa_succeeded_context_actor.py deleted file mode 100644 index 613247cb..00000000 --- a/src/workos/common/models/authentication_mfa_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationMFASucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_mfa_succeeded_context_actor_source.py b/src/workos/common/models/authentication_mfa_succeeded_context_actor_source.py deleted file mode 100644 index aae7dcef..00000000 --- a/src/workos/common/models/authentication_mfa_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationMFASucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationMFASucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_mfa_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_mfa_succeeded_context_google_analytics_session.py deleted file mode 100644 index 7295e3e4..00000000 --- a/src/workos/common/models/authentication_mfa_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationMFASucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_oauth_failed_context.py b/src/workos/common/models/authentication_oauth_failed_context.py deleted file mode 100644 index 70404328..00000000 --- a/src/workos/common/models/authentication_oauth_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationOAuthFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_oauth_failed_context_actor.py b/src/workos/common/models/authentication_oauth_failed_context_actor.py deleted file mode 100644 index 1a659afc..00000000 --- a/src/workos/common/models/authentication_oauth_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationOAuthFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_oauth_failed_context_actor_source.py b/src/workos/common/models/authentication_oauth_failed_context_actor_source.py deleted file mode 100644 index 5d481994..00000000 --- a/src/workos/common/models/authentication_oauth_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationOAuthFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationOAuthFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_oauth_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_oauth_failed_context_google_analytics_session.py deleted file mode 100644 index d88f2887..00000000 --- a/src/workos/common/models/authentication_oauth_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationOAuthFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_oauth_failed_data_error.py b/src/workos/common/models/authentication_oauth_failed_data_error.py index 269aa2d6..f5e4931d 100644 --- a/src/workos/common/models/authentication_oauth_failed_data_error.py +++ b/src/workos/common/models/authentication_oauth_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_oauth_succeeded_context.py b/src/workos/common/models/authentication_oauth_succeeded_context.py deleted file mode 100644 index a1848325..00000000 --- a/src/workos/common/models/authentication_oauth_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationOAuthSucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_oauth_succeeded_context_actor.py b/src/workos/common/models/authentication_oauth_succeeded_context_actor.py deleted file mode 100644 index 60d4a0f6..00000000 --- a/src/workos/common/models/authentication_oauth_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationOAuthSucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_oauth_succeeded_context_actor_source.py b/src/workos/common/models/authentication_oauth_succeeded_context_actor_source.py deleted file mode 100644 index 0a92ed0d..00000000 --- a/src/workos/common/models/authentication_oauth_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationOAuthSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationOAuthSucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_oauth_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_oauth_succeeded_context_google_analytics_session.py deleted file mode 100644 index b6024807..00000000 --- a/src/workos/common/models/authentication_oauth_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationOAuthSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_passkey_failed_context.py b/src/workos/common/models/authentication_passkey_failed_context.py deleted file mode 100644 index 1b84616e..00000000 --- a/src/workos/common/models/authentication_passkey_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationPasskeyFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_passkey_failed_context_actor.py b/src/workos/common/models/authentication_passkey_failed_context_actor.py deleted file mode 100644 index 1b566761..00000000 --- a/src/workos/common/models/authentication_passkey_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationPasskeyFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_passkey_failed_context_actor_source.py b/src/workos/common/models/authentication_passkey_failed_context_actor_source.py deleted file mode 100644 index f3fceb3a..00000000 --- a/src/workos/common/models/authentication_passkey_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationPasskeyFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationPasskeyFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_passkey_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_passkey_failed_context_google_analytics_session.py deleted file mode 100644 index 61239edf..00000000 --- a/src/workos/common/models/authentication_passkey_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationPasskeyFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_passkey_failed_data_error.py b/src/workos/common/models/authentication_passkey_failed_data_error.py index 16c21ba9..f366c8a7 100644 --- a/src/workos/common/models/authentication_passkey_failed_data_error.py +++ b/src/workos/common/models/authentication_passkey_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_passkey_succeeded_context.py b/src/workos/common/models/authentication_passkey_succeeded_context.py deleted file mode 100644 index d8c2c1eb..00000000 --- a/src/workos/common/models/authentication_passkey_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationPasskeySucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_passkey_succeeded_context_actor.py b/src/workos/common/models/authentication_passkey_succeeded_context_actor.py deleted file mode 100644 index a1168081..00000000 --- a/src/workos/common/models/authentication_passkey_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationPasskeySucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_passkey_succeeded_context_actor_source.py b/src/workos/common/models/authentication_passkey_succeeded_context_actor_source.py deleted file mode 100644 index 12f721e1..00000000 --- a/src/workos/common/models/authentication_passkey_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationPasskeySucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationPasskeySucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_passkey_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_passkey_succeeded_context_google_analytics_session.py deleted file mode 100644 index 74ddc1d0..00000000 --- a/src/workos/common/models/authentication_passkey_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationPasskeySucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_password_failed_context.py b/src/workos/common/models/authentication_password_failed_context.py deleted file mode 100644 index 94e11675..00000000 --- a/src/workos/common/models/authentication_password_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationPasswordFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_password_failed_context_actor.py b/src/workos/common/models/authentication_password_failed_context_actor.py deleted file mode 100644 index d2c61b94..00000000 --- a/src/workos/common/models/authentication_password_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationPasswordFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_password_failed_context_actor_source.py b/src/workos/common/models/authentication_password_failed_context_actor_source.py deleted file mode 100644 index bc8d187d..00000000 --- a/src/workos/common/models/authentication_password_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationPasswordFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationPasswordFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_password_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_password_failed_context_google_analytics_session.py deleted file mode 100644 index ded13045..00000000 --- a/src/workos/common/models/authentication_password_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationPasswordFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_password_failed_data_error.py b/src/workos/common/models/authentication_password_failed_data_error.py index 0e649a8b..3c88bef9 100644 --- a/src/workos/common/models/authentication_password_failed_data_error.py +++ b/src/workos/common/models/authentication_password_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_password_succeeded_context.py b/src/workos/common/models/authentication_password_succeeded_context.py deleted file mode 100644 index bda81670..00000000 --- a/src/workos/common/models/authentication_password_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationPasswordSucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_password_succeeded_context_actor.py b/src/workos/common/models/authentication_password_succeeded_context_actor.py deleted file mode 100644 index b2032f58..00000000 --- a/src/workos/common/models/authentication_password_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationPasswordSucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_password_succeeded_context_actor_source.py b/src/workos/common/models/authentication_password_succeeded_context_actor_source.py deleted file mode 100644 index 963b1b33..00000000 --- a/src/workos/common/models/authentication_password_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationPasswordSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationPasswordSucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_password_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_password_succeeded_context_google_analytics_session.py deleted file mode 100644 index 4ddc4962..00000000 --- a/src/workos/common/models/authentication_password_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationPasswordSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_radar_risk_detected_context.py b/src/workos/common/models/authentication_radar_risk_detected_context.py deleted file mode 100644 index 3ee545cb..00000000 --- a/src/workos/common/models/authentication_radar_risk_detected_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationRadarRiskDetectedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_radar_risk_detected_context_actor.py b/src/workos/common/models/authentication_radar_risk_detected_context_actor.py deleted file mode 100644 index 50c1c6c9..00000000 --- a/src/workos/common/models/authentication_radar_risk_detected_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationRadarRiskDetectedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_radar_risk_detected_context_actor_source.py b/src/workos/common/models/authentication_radar_risk_detected_context_actor_source.py deleted file mode 100644 index 88cd9228..00000000 --- a/src/workos/common/models/authentication_radar_risk_detected_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationRadarRiskDetectedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationRadarRiskDetectedContextActorSource"] diff --git a/src/workos/common/models/authentication_radar_risk_detected_context_google_analytics_session.py b/src/workos/common/models/authentication_radar_risk_detected_context_google_analytics_session.py deleted file mode 100644 index 32efa0b9..00000000 --- a/src/workos/common/models/authentication_radar_risk_detected_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationRadarRiskDetectedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_radar_risk_detected_data_action.py b/src/workos/common/models/authentication_radar_risk_detected_data_action.py index d7e07716..ea413746 100644 --- a/src/workos/common/models/authentication_radar_risk_detected_data_action.py +++ b/src/workos/common/models/authentication_radar_risk_detected_data_action.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class AuthenticationRadarRiskDetectedDataAction(str, Enum): diff --git a/src/workos/common/models/authentication_sso_failed_context.py b/src/workos/common/models/authentication_sso_failed_context.py deleted file mode 100644 index 791ddabb..00000000 --- a/src/workos/common/models/authentication_sso_failed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationSSOFailedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_sso_failed_context_actor.py b/src/workos/common/models/authentication_sso_failed_context_actor.py deleted file mode 100644 index 74cfb437..00000000 --- a/src/workos/common/models/authentication_sso_failed_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationSSOFailedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/authentication_sso_failed_context_actor_source.py b/src/workos/common/models/authentication_sso_failed_context_actor_source.py deleted file mode 100644 index 475347f1..00000000 --- a/src/workos/common/models/authentication_sso_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationSSOFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationSSOFailedContextActorSource"] diff --git a/src/workos/common/models/authentication_sso_failed_context_google_analytics_session.py b/src/workos/common/models/authentication_sso_failed_context_google_analytics_session.py deleted file mode 100644 index 3eaecea5..00000000 --- a/src/workos/common/models/authentication_sso_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationSSOFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_sso_failed_data_error.py b/src/workos/common/models/authentication_sso_failed_data_error.py index 2df3a76b..965ebbe6 100644 --- a/src/workos/common/models/authentication_sso_failed_data_error.py +++ b/src/workos/common/models/authentication_sso_failed_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_sso_started_context.py b/src/workos/common/models/authentication_sso_started_context.py deleted file mode 100644 index cce662f3..00000000 --- a/src/workos/common/models/authentication_sso_started_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationSSOStartedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_sso_started_context_actor.py b/src/workos/common/models/authentication_sso_started_context_actor.py deleted file mode 100644 index c440a0aa..00000000 --- a/src/workos/common/models/authentication_sso_started_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationSSOStartedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/authentication_sso_started_context_actor_source.py b/src/workos/common/models/authentication_sso_started_context_actor_source.py deleted file mode 100644 index 542e0883..00000000 --- a/src/workos/common/models/authentication_sso_started_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationSSOStartedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationSSOStartedContextActorSource"] diff --git a/src/workos/common/models/authentication_sso_started_context_google_analytics_session.py b/src/workos/common/models/authentication_sso_started_context_google_analytics_session.py deleted file mode 100644 index e4ca17f8..00000000 --- a/src/workos/common/models/authentication_sso_started_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationSSOStartedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_sso_started_data_sso.py b/src/workos/common/models/authentication_sso_started_data_sso.py index ba157baf..361413e3 100644 --- a/src/workos/common/models/authentication_sso_started_data_sso.py +++ b/src/workos/common/models/authentication_sso_started_data_sso.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_sso_failed_data_sso import AuthenticationSSOFailedDataSSO AuthenticationSSOStartedDataSSO: TypeAlias = AuthenticationSSOFailedDataSSO diff --git a/src/workos/common/models/authentication_sso_succeeded_context.py b/src/workos/common/models/authentication_sso_succeeded_context.py deleted file mode 100644 index 43afd0ba..00000000 --- a/src/workos/common/models/authentication_sso_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationSSOSucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_sso_succeeded_context_actor.py b/src/workos/common/models/authentication_sso_succeeded_context_actor.py deleted file mode 100644 index 7f70b732..00000000 --- a/src/workos/common/models/authentication_sso_succeeded_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationSSOSucceededContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_sso_succeeded_context_actor_source.py b/src/workos/common/models/authentication_sso_succeeded_context_actor_source.py deleted file mode 100644 index a5691314..00000000 --- a/src/workos/common/models/authentication_sso_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationSSOSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationSSOSucceededContextActorSource"] diff --git a/src/workos/common/models/authentication_sso_succeeded_context_google_analytics_session.py b/src/workos/common/models/authentication_sso_succeeded_context_google_analytics_session.py deleted file mode 100644 index 6aea37b3..00000000 --- a/src/workos/common/models/authentication_sso_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationSSOSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_sso_succeeded_data_sso.py b/src/workos/common/models/authentication_sso_succeeded_data_sso.py index 84c57afa..e2651345 100644 --- a/src/workos/common/models/authentication_sso_succeeded_data_sso.py +++ b/src/workos/common/models/authentication_sso_succeeded_data_sso.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_sso_failed_data_sso import AuthenticationSSOFailedDataSSO AuthenticationSSOSucceededDataSSO: TypeAlias = AuthenticationSSOFailedDataSSO diff --git a/src/workos/common/models/authentication_sso_timed_out_context.py b/src/workos/common/models/authentication_sso_timed_out_context.py deleted file mode 100644 index f4422c08..00000000 --- a/src/workos/common/models/authentication_sso_timed_out_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -AuthenticationSSOTimedOutContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/authentication_sso_timed_out_context_actor.py b/src/workos/common/models/authentication_sso_timed_out_context_actor.py deleted file mode 100644 index 17673ea6..00000000 --- a/src/workos/common/models/authentication_sso_timed_out_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -AuthenticationSSOTimedOutContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/authentication_sso_timed_out_context_actor_source.py b/src/workos/common/models/authentication_sso_timed_out_context_actor_source.py deleted file mode 100644 index 3069087e..00000000 --- a/src/workos/common/models/authentication_sso_timed_out_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -AuthenticationSSOTimedOutContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["AuthenticationSSOTimedOutContextActorSource"] diff --git a/src/workos/common/models/authentication_sso_timed_out_context_google_analytics_session.py b/src/workos/common/models/authentication_sso_timed_out_context_google_analytics_session.py deleted file mode 100644 index e52030f9..00000000 --- a/src/workos/common/models/authentication_sso_timed_out_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -AuthenticationSSOTimedOutContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/authentication_sso_timed_out_data_error.py b/src/workos/common/models/authentication_sso_timed_out_data_error.py index cacdc4ec..ec3190ee 100644 --- a/src/workos/common/models/authentication_sso_timed_out_data_error.py +++ b/src/workos/common/models/authentication_sso_timed_out_data_error.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_email_verification_failed_data_error import ( AuthenticationEmailVerificationFailedDataError, ) diff --git a/src/workos/common/models/authentication_sso_timed_out_data_sso.py b/src/workos/common/models/authentication_sso_timed_out_data_sso.py index 30d66d31..616dd4eb 100644 --- a/src/workos/common/models/authentication_sso_timed_out_data_sso.py +++ b/src/workos/common/models/authentication_sso_timed_out_data_sso.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_sso_failed_data_sso import AuthenticationSSOFailedDataSSO AuthenticationSSOTimedOutDataSSO: TypeAlias = AuthenticationSSOFailedDataSSO diff --git a/src/workos/common/models/connected_account_state.py b/src/workos/common/models/connected_account_state.py index 39890ce2..743b7d0b 100644 --- a/src/workos/common/models/connected_account_state.py +++ b/src/workos/common/models/connected_account_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectedAccountState(str, Enum): diff --git a/src/workos/common/models/connection_activated_context.py b/src/workos/common/models/connection_activated_context.py deleted file mode 100644 index a8148982..00000000 --- a/src/workos/common/models/connection_activated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ConnectionActivatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/connection_activated_context_actor.py b/src/workos/common/models/connection_activated_context_actor.py deleted file mode 100644 index 702f4111..00000000 --- a/src/workos/common/models/connection_activated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ConnectionActivatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/connection_activated_context_actor_source.py b/src/workos/common/models/connection_activated_context_actor_source.py deleted file mode 100644 index 3175f99a..00000000 --- a/src/workos/common/models/connection_activated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ConnectionActivatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ConnectionActivatedContextActorSource"] diff --git a/src/workos/common/models/connection_activated_context_google_analytics_session.py b/src/workos/common/models/connection_activated_context_google_analytics_session.py deleted file mode 100644 index 6b71c103..00000000 --- a/src/workos/common/models/connection_activated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ConnectionActivatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/connection_activated_data_connection_type.py b/src/workos/common/models/connection_activated_data_connection_type.py index 2a50bb14..e1a03153 100644 --- a/src/workos/common/models/connection_activated_data_connection_type.py +++ b/src/workos/common/models/connection_activated_data_connection_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionActivatedDataConnectionType(str, Enum): diff --git a/src/workos/common/models/connection_activated_data_state.py b/src/workos/common/models/connection_activated_data_state.py index 0ad2d385..f16b8a07 100644 --- a/src/workos/common/models/connection_activated_data_state.py +++ b/src/workos/common/models/connection_activated_data_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionActivatedDataState(str, Enum): diff --git a/src/workos/common/models/connection_activated_data_status.py b/src/workos/common/models/connection_activated_data_status.py index c1f179bd..73628492 100644 --- a/src/workos/common/models/connection_activated_data_status.py +++ b/src/workos/common/models/connection_activated_data_status.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionActivatedDataStatus(str, Enum): diff --git a/src/workos/common/models/connection_deactivated_context.py b/src/workos/common/models/connection_deactivated_context.py deleted file mode 100644 index 31062e21..00000000 --- a/src/workos/common/models/connection_deactivated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ConnectionDeactivatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/connection_deactivated_context_actor.py b/src/workos/common/models/connection_deactivated_context_actor.py deleted file mode 100644 index ec1e1b37..00000000 --- a/src/workos/common/models/connection_deactivated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ConnectionDeactivatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/connection_deactivated_context_actor_source.py b/src/workos/common/models/connection_deactivated_context_actor_source.py deleted file mode 100644 index 1f095441..00000000 --- a/src/workos/common/models/connection_deactivated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ConnectionDeactivatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ConnectionDeactivatedContextActorSource"] diff --git a/src/workos/common/models/connection_deactivated_context_google_analytics_session.py b/src/workos/common/models/connection_deactivated_context_google_analytics_session.py deleted file mode 100644 index 3a250af2..00000000 --- a/src/workos/common/models/connection_deactivated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ConnectionDeactivatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/connection_deactivated_data.py b/src/workos/common/models/connection_deactivated_data.py index 6c0b602b..b7d26e29 100644 --- a/src/workos/common/models/connection_deactivated_data.py +++ b/src/workos/common/models/connection_deactivated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data import ConnectionActivatedData ConnectionDeactivatedData: TypeAlias = ConnectionActivatedData diff --git a/src/workos/common/models/connection_deactivated_data_connection_type.py b/src/workos/common/models/connection_deactivated_data_connection_type.py index f3cc5cf5..93b70864 100644 --- a/src/workos/common/models/connection_deactivated_data_connection_type.py +++ b/src/workos/common/models/connection_deactivated_data_connection_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_connection_type import ( ConnectionActivatedDataConnectionType, ) diff --git a/src/workos/common/models/connection_deactivated_data_domain.py b/src/workos/common/models/connection_deactivated_data_domain.py index 152e0520..c1cec325 100644 --- a/src/workos/common/models/connection_deactivated_data_domain.py +++ b/src/workos/common/models/connection_deactivated_data_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_domain import ConnectionActivatedDataDomain ConnectionDeactivatedDataDomain: TypeAlias = ConnectionActivatedDataDomain diff --git a/src/workos/common/models/connection_deactivated_data_state.py b/src/workos/common/models/connection_deactivated_data_state.py index 6ea95f87..3e116d1e 100644 --- a/src/workos/common/models/connection_deactivated_data_state.py +++ b/src/workos/common/models/connection_deactivated_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_state import ConnectionActivatedDataState ConnectionDeactivatedDataState: TypeAlias = ConnectionActivatedDataState diff --git a/src/workos/common/models/connection_deactivated_data_status.py b/src/workos/common/models/connection_deactivated_data_status.py index 1a1d90d4..57047c6c 100644 --- a/src/workos/common/models/connection_deactivated_data_status.py +++ b/src/workos/common/models/connection_deactivated_data_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_status import ConnectionActivatedDataStatus ConnectionDeactivatedDataStatus: TypeAlias = ConnectionActivatedDataStatus diff --git a/src/workos/common/models/connection_deleted_context.py b/src/workos/common/models/connection_deleted_context.py deleted file mode 100644 index ae375d87..00000000 --- a/src/workos/common/models/connection_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ConnectionDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/connection_deleted_context_actor.py b/src/workos/common/models/connection_deleted_context_actor.py deleted file mode 100644 index d6c242b8..00000000 --- a/src/workos/common/models/connection_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ConnectionDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/connection_deleted_context_actor_source.py b/src/workos/common/models/connection_deleted_context_actor_source.py deleted file mode 100644 index 20a81643..00000000 --- a/src/workos/common/models/connection_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ConnectionDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ConnectionDeletedContextActorSource"] diff --git a/src/workos/common/models/connection_deleted_context_google_analytics_session.py b/src/workos/common/models/connection_deleted_context_google_analytics_session.py deleted file mode 100644 index 51299594..00000000 --- a/src/workos/common/models/connection_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ConnectionDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/connection_deleted_data_connection_type.py b/src/workos/common/models/connection_deleted_data_connection_type.py index b7f8ecba..0a807ad6 100644 --- a/src/workos/common/models/connection_deleted_data_connection_type.py +++ b/src/workos/common/models/connection_deleted_data_connection_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_connection_type import ( ConnectionActivatedDataConnectionType, ) diff --git a/src/workos/common/models/connection_deleted_data_state.py b/src/workos/common/models/connection_deleted_data_state.py index b0a4a3ac..b2916520 100644 --- a/src/workos/common/models/connection_deleted_data_state.py +++ b/src/workos/common/models/connection_deleted_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_state import ConnectionActivatedDataState ConnectionDeletedDataState: TypeAlias = ConnectionActivatedDataState diff --git a/src/workos/common/models/connection_saml_certificate_renewal_required_context.py b/src/workos/common/models/connection_saml_certificate_renewal_required_context.py deleted file mode 100644 index 03e114a0..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewal_required_context.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ConnectionSAMLCertificateRenewalRequiredContext: TypeAlias = ( - ActionAuthenticationDeniedContext -) diff --git a/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor.py b/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor.py deleted file mode 100644 index 58a2a1f0..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ConnectionSAMLCertificateRenewalRequiredContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor_source.py b/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor_source.py deleted file mode 100644 index 3b8348e9..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewal_required_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ConnectionSAMLCertificateRenewalRequiredContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ConnectionSAMLCertificateRenewalRequiredContextActorSource"] diff --git a/src/workos/common/models/connection_saml_certificate_renewal_required_context_google_analytics_session.py b/src/workos/common/models/connection_saml_certificate_renewal_required_context_google_analytics_session.py deleted file mode 100644 index d8ac3dfd..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewal_required_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ConnectionSAMLCertificateRenewalRequiredContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate_certificate_type.py b/src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate_certificate_type.py index 9a2cd9d1..14a72d4f 100644 --- a/src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate_certificate_type.py +++ b/src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate_certificate_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionSAMLCertificateRenewalRequiredDataCertificateCertificateType(str, Enum): diff --git a/src/workos/common/models/connection_saml_certificate_renewed_context.py b/src/workos/common/models/connection_saml_certificate_renewed_context.py deleted file mode 100644 index 4f45e8ee..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -ConnectionSAMLCertificateRenewedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/connection_saml_certificate_renewed_context_actor.py b/src/workos/common/models/connection_saml_certificate_renewed_context_actor.py deleted file mode 100644 index 391818ab..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -ConnectionSAMLCertificateRenewedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/connection_saml_certificate_renewed_context_actor_source.py b/src/workos/common/models/connection_saml_certificate_renewed_context_actor_source.py deleted file mode 100644 index ae579435..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -ConnectionSAMLCertificateRenewedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["ConnectionSAMLCertificateRenewedContextActorSource"] diff --git a/src/workos/common/models/connection_saml_certificate_renewed_context_google_analytics_session.py b/src/workos/common/models/connection_saml_certificate_renewed_context_google_analytics_session.py deleted file mode 100644 index cf5b8cc9..00000000 --- a/src/workos/common/models/connection_saml_certificate_renewed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -ConnectionSAMLCertificateRenewedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/connection_saml_certificate_renewed_data_certificate_certificate_type.py b/src/workos/common/models/connection_saml_certificate_renewed_data_certificate_certificate_type.py index 23711acc..1d1274ea 100644 --- a/src/workos/common/models/connection_saml_certificate_renewed_data_certificate_certificate_type.py +++ b/src/workos/common/models/connection_saml_certificate_renewed_data_certificate_certificate_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_saml_certificate_renewal_required_data_certificate_certificate_type import ( ConnectionSAMLCertificateRenewalRequiredDataCertificateCertificateType, ) diff --git a/src/workos/common/models/connection_saml_certificate_renewed_data_connection.py b/src/workos/common/models/connection_saml_certificate_renewed_data_connection.py index 4d4986b7..2eef2fed 100644 --- a/src/workos/common/models/connection_saml_certificate_renewed_data_connection.py +++ b/src/workos/common/models/connection_saml_certificate_renewed_data_connection.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_saml_certificate_renewal_required_data_connection import ( ConnectionSAMLCertificateRenewalRequiredDataConnection, ) diff --git a/src/workos/common/models/connection_state.py b/src/workos/common/models/connection_state.py index e10bbd7b..c519ac06 100644 --- a/src/workos/common/models/connection_state.py +++ b/src/workos/common/models/connection_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionState(str, Enum): diff --git a/src/workos/common/models/connection_status.py b/src/workos/common/models/connection_status.py index b76e503c..ee4d8631 100644 --- a/src/workos/common/models/connection_status.py +++ b/src/workos/common/models/connection_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_activated_data_status import ConnectionActivatedDataStatus ConnectionStatus: TypeAlias = ConnectionActivatedDataStatus diff --git a/src/workos/common/models/connection_type.py b/src/workos/common/models/connection_type.py index 3e59e1bb..cd67feea 100644 --- a/src/workos/common/models/connection_type.py +++ b/src/workos/common/models/connection_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionType(str, Enum): diff --git a/src/workos/common/models/create_user_invite_options_locale.py b/src/workos/common/models/create_user_invite_options_locale.py index 079eb0eb..4b9ab4fc 100644 --- a/src/workos/common/models/create_user_invite_options_locale.py +++ b/src/workos/common/models/create_user_invite_options_locale.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class CreateUserInviteOptionsLocale(str, Enum): diff --git a/src/workos/common/models/create_user_password_hash_type.py b/src/workos/common/models/create_user_password_hash_type.py index 92f000d7..3d0643fc 100644 --- a/src/workos/common/models/create_user_password_hash_type.py +++ b/src/workos/common/models/create_user_password_hash_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class CreateUserPasswordHashType(str, Enum): diff --git a/src/workos/common/models/create_webhook_endpoint_events.py b/src/workos/common/models/create_webhook_endpoint_events.py index 3e27efdc..1df9a29a 100644 --- a/src/workos/common/models/create_webhook_endpoint_events.py +++ b/src/workos/common/models/create_webhook_endpoint_events.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class CreateWebhookEndpointEvents(str, Enum): diff --git a/src/workos/common/models/data_integrations_list_response_data_connected_account_state.py b/src/workos/common/models/data_integrations_list_response_data_connected_account_state.py index 02ed5e2b..718e5709 100644 --- a/src/workos/common/models/data_integrations_list_response_data_connected_account_state.py +++ b/src/workos/common/models/data_integrations_list_response_data_connected_account_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connected_account_state import ConnectedAccountState DataIntegrationsListResponseDataConnectedAccountState: TypeAlias = ConnectedAccountState diff --git a/src/workos/common/models/data_integrations_list_response_data_ownership.py b/src/workos/common/models/data_integrations_list_response_data_ownership.py index ff865b46..6ea847d9 100644 --- a/src/workos/common/models/data_integrations_list_response_data_ownership.py +++ b/src/workos/common/models/data_integrations_list_response_data_ownership.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DataIntegrationsListResponseDataOwnership(str, Enum): diff --git a/src/workos/common/models/directory_state.py b/src/workos/common/models/directory_state.py index 59ded5e1..848c71fe 100644 --- a/src/workos/common/models/directory_state.py +++ b/src/workos/common/models/directory_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DirectoryState(str, Enum): diff --git a/src/workos/common/models/directory_type.py b/src/workos/common/models/directory_type.py index 764d8954..83d42a09 100644 --- a/src/workos/common/models/directory_type.py +++ b/src/workos/common/models/directory_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DirectoryType(str, Enum): diff --git a/src/workos/common/models/directory_user_state.py b/src/workos/common/models/directory_user_state.py index 03c4874f..7e6f8f0e 100644 --- a/src/workos/common/models/directory_user_state.py +++ b/src/workos/common/models/directory_user_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DirectoryUserState(str, Enum): diff --git a/src/workos/common/models/directory_user_with_groups_state.py b/src/workos/common/models/directory_user_with_groups_state.py index 5206de80..5bcf57f9 100644 --- a/src/workos/common/models/directory_user_with_groups_state.py +++ b/src/workos/common/models/directory_user_with_groups_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .directory_user_state import DirectoryUserState DirectoryUserWithGroupsState: TypeAlias = DirectoryUserState diff --git a/src/workos/common/models/dsync_activated_context.py b/src/workos/common/models/dsync_activated_context.py deleted file mode 100644 index 3ce9e2a2..00000000 --- a/src/workos/common/models/dsync_activated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncActivatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_activated_context_actor.py b/src/workos/common/models/dsync_activated_context_actor.py deleted file mode 100644 index f1f82c17..00000000 --- a/src/workos/common/models/dsync_activated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncActivatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_activated_context_actor_source.py b/src/workos/common/models/dsync_activated_context_actor_source.py deleted file mode 100644 index 96400a9a..00000000 --- a/src/workos/common/models/dsync_activated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncActivatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncActivatedContextActorSource"] diff --git a/src/workos/common/models/dsync_activated_context_google_analytics_session.py b/src/workos/common/models/dsync_activated_context_google_analytics_session.py deleted file mode 100644 index f2ac4ee1..00000000 --- a/src/workos/common/models/dsync_activated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncActivatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_activated_data_state.py b/src/workos/common/models/dsync_activated_data_state.py index a66e80f2..3608f8f4 100644 --- a/src/workos/common/models/dsync_activated_data_state.py +++ b/src/workos/common/models/dsync_activated_data_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DsyncActivatedDataState(str, Enum): diff --git a/src/workos/common/models/dsync_activated_data_type.py b/src/workos/common/models/dsync_activated_data_type.py index e7b9fd0d..8e38c7f8 100644 --- a/src/workos/common/models/dsync_activated_data_type.py +++ b/src/workos/common/models/dsync_activated_data_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class DsyncActivatedDataType(str, Enum): diff --git a/src/workos/common/models/dsync_deactivated_context.py b/src/workos/common/models/dsync_deactivated_context.py deleted file mode 100644 index bbf4870f..00000000 --- a/src/workos/common/models/dsync_deactivated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncDeactivatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_deactivated_context_actor.py b/src/workos/common/models/dsync_deactivated_context_actor.py deleted file mode 100644 index ad4e03f5..00000000 --- a/src/workos/common/models/dsync_deactivated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncDeactivatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_deactivated_context_actor_source.py b/src/workos/common/models/dsync_deactivated_context_actor_source.py deleted file mode 100644 index 16a4ebe5..00000000 --- a/src/workos/common/models/dsync_deactivated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncDeactivatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncDeactivatedContextActorSource"] diff --git a/src/workos/common/models/dsync_deactivated_context_google_analytics_session.py b/src/workos/common/models/dsync_deactivated_context_google_analytics_session.py deleted file mode 100644 index 4feb175f..00000000 --- a/src/workos/common/models/dsync_deactivated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncDeactivatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_deactivated_data.py b/src/workos/common/models/dsync_deactivated_data.py index 750c6852..b6b66867 100644 --- a/src/workos/common/models/dsync_deactivated_data.py +++ b/src/workos/common/models/dsync_deactivated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data import DsyncActivatedData DsyncDeactivatedData: TypeAlias = DsyncActivatedData diff --git a/src/workos/common/models/dsync_deactivated_data_domain.py b/src/workos/common/models/dsync_deactivated_data_domain.py index 68d58f7a..c0c302cc 100644 --- a/src/workos/common/models/dsync_deactivated_data_domain.py +++ b/src/workos/common/models/dsync_deactivated_data_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data_domain import DsyncActivatedDataDomain DsyncDeactivatedDataDomain: TypeAlias = DsyncActivatedDataDomain diff --git a/src/workos/common/models/dsync_deactivated_data_state.py b/src/workos/common/models/dsync_deactivated_data_state.py index ff6fd70e..87b40d8d 100644 --- a/src/workos/common/models/dsync_deactivated_data_state.py +++ b/src/workos/common/models/dsync_deactivated_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data_state import DsyncActivatedDataState DsyncDeactivatedDataState: TypeAlias = DsyncActivatedDataState diff --git a/src/workos/common/models/dsync_deactivated_data_type.py b/src/workos/common/models/dsync_deactivated_data_type.py index 62527947..719fc53b 100644 --- a/src/workos/common/models/dsync_deactivated_data_type.py +++ b/src/workos/common/models/dsync_deactivated_data_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data_type import DsyncActivatedDataType DsyncDeactivatedDataType: TypeAlias = DsyncActivatedDataType diff --git a/src/workos/common/models/dsync_deleted_context.py b/src/workos/common/models/dsync_deleted_context.py deleted file mode 100644 index 53443627..00000000 --- a/src/workos/common/models/dsync_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_deleted_context_actor.py b/src/workos/common/models/dsync_deleted_context_actor.py deleted file mode 100644 index 1b886949..00000000 --- a/src/workos/common/models/dsync_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_deleted_context_actor_source.py b/src/workos/common/models/dsync_deleted_context_actor_source.py deleted file mode 100644 index 551ebde3..00000000 --- a/src/workos/common/models/dsync_deleted_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncDeletedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["DsyncDeletedContextActorSource"] diff --git a/src/workos/common/models/dsync_deleted_context_google_analytics_session.py b/src/workos/common/models/dsync_deleted_context_google_analytics_session.py deleted file mode 100644 index cafc388a..00000000 --- a/src/workos/common/models/dsync_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_deleted_data_state.py b/src/workos/common/models/dsync_deleted_data_state.py index 8289d94d..fc6aafdf 100644 --- a/src/workos/common/models/dsync_deleted_data_state.py +++ b/src/workos/common/models/dsync_deleted_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data_state import DsyncActivatedDataState DsyncDeletedDataState: TypeAlias = DsyncActivatedDataState diff --git a/src/workos/common/models/dsync_deleted_data_type.py b/src/workos/common/models/dsync_deleted_data_type.py index c3c2ee75..67a58e22 100644 --- a/src/workos/common/models/dsync_deleted_data_type.py +++ b/src/workos/common/models/dsync_deleted_data_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_activated_data_type import DsyncActivatedDataType DsyncDeletedDataType: TypeAlias = DsyncActivatedDataType diff --git a/src/workos/common/models/dsync_group_created_context.py b/src/workos/common/models/dsync_group_created_context.py deleted file mode 100644 index da71c773..00000000 --- a/src/workos/common/models/dsync_group_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncGroupCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_group_created_context_actor.py b/src/workos/common/models/dsync_group_created_context_actor.py deleted file mode 100644 index 509a75a2..00000000 --- a/src/workos/common/models/dsync_group_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncGroupCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_group_created_context_actor_source.py b/src/workos/common/models/dsync_group_created_context_actor_source.py deleted file mode 100644 index b40ff5d0..00000000 --- a/src/workos/common/models/dsync_group_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncGroupCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncGroupCreatedContextActorSource"] diff --git a/src/workos/common/models/dsync_group_created_context_google_analytics_session.py b/src/workos/common/models/dsync_group_created_context_google_analytics_session.py deleted file mode 100644 index 0b9f9f83..00000000 --- a/src/workos/common/models/dsync_group_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncGroupCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_group_created_data.py b/src/workos/common/models/dsync_group_created_data.py deleted file mode 100644 index e58d4f1a..00000000 --- a/src/workos/common/models/dsync_group_created_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_group import DirectoryGroup - -DsyncGroupCreatedData: TypeAlias = DirectoryGroup diff --git a/src/workos/common/models/dsync_group_deleted_context.py b/src/workos/common/models/dsync_group_deleted_context.py deleted file mode 100644 index 8a1fc511..00000000 --- a/src/workos/common/models/dsync_group_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncGroupDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_group_deleted_context_actor.py b/src/workos/common/models/dsync_group_deleted_context_actor.py deleted file mode 100644 index 62d338bb..00000000 --- a/src/workos/common/models/dsync_group_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncGroupDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_group_deleted_context_actor_source.py b/src/workos/common/models/dsync_group_deleted_context_actor_source.py deleted file mode 100644 index 2f18c407..00000000 --- a/src/workos/common/models/dsync_group_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncGroupDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncGroupDeletedContextActorSource"] diff --git a/src/workos/common/models/dsync_group_deleted_context_google_analytics_session.py b/src/workos/common/models/dsync_group_deleted_context_google_analytics_session.py deleted file mode 100644 index 5144d592..00000000 --- a/src/workos/common/models/dsync_group_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncGroupDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_group_deleted_data.py b/src/workos/common/models/dsync_group_deleted_data.py deleted file mode 100644 index 6d8a3d1b..00000000 --- a/src/workos/common/models/dsync_group_deleted_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_group import DirectoryGroup - -DsyncGroupDeletedData: TypeAlias = DirectoryGroup diff --git a/src/workos/common/models/dsync_group_updated_context.py b/src/workos/common/models/dsync_group_updated_context.py deleted file mode 100644 index d284a74d..00000000 --- a/src/workos/common/models/dsync_group_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncGroupUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_group_updated_context_actor.py b/src/workos/common/models/dsync_group_updated_context_actor.py deleted file mode 100644 index 54df6a18..00000000 --- a/src/workos/common/models/dsync_group_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncGroupUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_group_updated_context_actor_source.py b/src/workos/common/models/dsync_group_updated_context_actor_source.py deleted file mode 100644 index bafb357b..00000000 --- a/src/workos/common/models/dsync_group_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncGroupUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncGroupUpdatedContextActorSource"] diff --git a/src/workos/common/models/dsync_group_updated_context_google_analytics_session.py b/src/workos/common/models/dsync_group_updated_context_google_analytics_session.py deleted file mode 100644 index 8a1c682d..00000000 --- a/src/workos/common/models/dsync_group_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncGroupUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_group_user_added_context.py b/src/workos/common/models/dsync_group_user_added_context.py deleted file mode 100644 index c14fe4be..00000000 --- a/src/workos/common/models/dsync_group_user_added_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncGroupUserAddedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_group_user_added_context_actor.py b/src/workos/common/models/dsync_group_user_added_context_actor.py deleted file mode 100644 index 98e6dc28..00000000 --- a/src/workos/common/models/dsync_group_user_added_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncGroupUserAddedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_group_user_added_context_actor_source.py b/src/workos/common/models/dsync_group_user_added_context_actor_source.py deleted file mode 100644 index c46e82d0..00000000 --- a/src/workos/common/models/dsync_group_user_added_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncGroupUserAddedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncGroupUserAddedContextActorSource"] diff --git a/src/workos/common/models/dsync_group_user_added_context_google_analytics_session.py b/src/workos/common/models/dsync_group_user_added_context_google_analytics_session.py deleted file mode 100644 index cda6e417..00000000 --- a/src/workos/common/models/dsync_group_user_added_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncGroupUserAddedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_group_user_added_data_group.py b/src/workos/common/models/dsync_group_user_added_data_group.py deleted file mode 100644 index 211ade3b..00000000 --- a/src/workos/common/models/dsync_group_user_added_data_group.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_group import DirectoryGroup - -DsyncGroupUserAddedDataGroup: TypeAlias = DirectoryGroup diff --git a/src/workos/common/models/dsync_group_user_added_data_user.py b/src/workos/common/models/dsync_group_user_added_data_user.py deleted file mode 100644 index 930fe75d..00000000 --- a/src/workos/common/models/dsync_group_user_added_data_user.py +++ /dev/null @@ -1,152 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from __future__ import annotations - -from dataclasses import dataclass -from datetime import datetime -from enum import Enum -from typing import cast -from typing import Any, Dict, List, Literal, Optional -from workos._types import _raise_deserialize_error -from workos._types import _format_datetime, _parse_datetime - -from .dsync_group_user_added_data_user_email import DsyncGroupUserAddedDataUserEmail -from .dsync_group_user_added_data_user_role import DsyncGroupUserAddedDataUserRole -from .dsync_group_user_added_data_user_state import DsyncGroupUserAddedDataUserState - - -@dataclass(slots=True) -class DsyncGroupUserAddedDataUser: - """The directory user added to the group.""" - - object: Literal["directory_user"] - """Distinguishes the Directory User object.""" - id: str - """Unique identifier for the Directory User.""" - directory_id: str - """The identifier of the Directory the Directory User belongs to.""" - organization_id: str - """The identifier for the Organization in which the Directory resides.""" - idp_id: str - """Unique identifier for the user, assigned by the Directory Provider. Different Directory Providers use different ID formats.""" - email: Optional[str] - """The email address of the user.""" - state: "DsyncGroupUserAddedDataUserState" - """The state of the user.""" - custom_attributes: Dict[str, Any] - """An object containing the custom attribute mapping for the Directory Provider.""" - created_at: datetime - """An ISO 8601 timestamp.""" - updated_at: datetime - """An ISO 8601 timestamp.""" - first_name: Optional[str] = None - """The first name of the user.""" - last_name: Optional[str] = None - """The last name of the user.""" - emails: Optional[List["DsyncGroupUserAddedDataUserEmail"]] = None - """A list of email addresses for the user. - - .. deprecated:: This field is deprecated.""" - job_title: Optional[str] = None - """The job title of the user. - - .. deprecated:: This field is deprecated.""" - username: Optional[str] = None - """The username of the user. - - .. deprecated:: This field is deprecated.""" - raw_attributes: Optional[Dict[str, Any]] = None - """The raw attributes received from the directory provider. - - .. deprecated:: This field is deprecated.""" - role: Optional["DsyncGroupUserAddedDataUserRole"] = None - """The primary role assigned to the user.""" - roles: Optional[List["DsyncGroupUserAddedDataUserRole"]] = None - """All roles assigned to the user.""" - - @classmethod - def from_dict(cls, data: Dict[str, Any]) -> "DsyncGroupUserAddedDataUser": - """Deserialize from a dictionary.""" - try: - return cls( - object=data["object"], - id=data["id"], - directory_id=data["directory_id"], - organization_id=data["organization_id"], - idp_id=data["idp_id"], - email=data["email"], - state=DsyncGroupUserAddedDataUserState(data["state"]), - custom_attributes=data["custom_attributes"], - created_at=_parse_datetime(data["created_at"]), - updated_at=_parse_datetime(data["updated_at"]), - first_name=data.get("first_name"), - last_name=data.get("last_name"), - emails=[ - DsyncGroupUserAddedDataUserEmail.from_dict( - cast(Dict[str, Any], item) - ) - for item in cast(list[Any], _v) - ] - if (_v := data.get("emails")) is not None - else None, - job_title=data.get("job_title"), - username=data.get("username"), - raw_attributes=data.get("raw_attributes"), - role=DsyncGroupUserAddedDataUserRole.from_dict(cast(Dict[str, Any], _v)) - if (_v := data.get("role")) is not None - else None, - roles=[ - DsyncGroupUserAddedDataUserRole.from_dict( - cast(Dict[str, Any], item) - ) - for item in cast(list[Any], _v) - ] - if (_v := data.get("roles")) is not None - else None, - ) - except (KeyError, ValueError) as e: - _raise_deserialize_error("DsyncGroupUserAddedDataUser", e) - - def to_dict(self) -> Dict[str, Any]: - """Serialize to a dictionary.""" - result: Dict[str, Any] = {} - result["object"] = self.object - result["id"] = self.id - result["directory_id"] = self.directory_id - result["organization_id"] = self.organization_id - result["idp_id"] = self.idp_id - if self.email is not None: - result["email"] = self.email - else: - result["email"] = None - result["state"] = ( - self.state.value if isinstance(self.state, Enum) else self.state - ) - result["custom_attributes"] = self.custom_attributes - result["created_at"] = _format_datetime(self.created_at) - result["updated_at"] = _format_datetime(self.updated_at) - if self.first_name is not None: - result["first_name"] = self.first_name - else: - result["first_name"] = None - if self.last_name is not None: - result["last_name"] = self.last_name - else: - result["last_name"] = None - if self.emails is not None: - result["emails"] = [item.to_dict() for item in self.emails] - if self.job_title is not None: - result["job_title"] = self.job_title - else: - result["job_title"] = None - if self.username is not None: - result["username"] = self.username - else: - result["username"] = None - if self.raw_attributes is not None: - result["raw_attributes"] = self.raw_attributes - if self.role is not None: - result["role"] = self.role.to_dict() - if self.roles is not None: - result["roles"] = [item.to_dict() for item in self.roles] - return result diff --git a/src/workos/common/models/dsync_group_user_added_data_user_email.py b/src/workos/common/models/dsync_group_user_added_data_user_email.py deleted file mode 100644 index 77c8be86..00000000 --- a/src/workos/common/models/dsync_group_user_added_data_user_email.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_user_with_groups_email import ( - DirectoryUserWithGroupsEmail, -) - -DsyncGroupUserAddedDataUserEmail: TypeAlias = DirectoryUserWithGroupsEmail diff --git a/src/workos/common/models/dsync_group_user_added_data_user_role.py b/src/workos/common/models/dsync_group_user_added_data_user_role.py deleted file mode 100644 index 89f245d7..00000000 --- a/src/workos/common/models/dsync_group_user_added_data_user_role.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.authorization.models.add_role_permission import AddRolePermission - -DsyncGroupUserAddedDataUserRole: TypeAlias = AddRolePermission diff --git a/src/workos/common/models/dsync_group_user_added_data_user_state.py b/src/workos/common/models/dsync_group_user_added_data_user_state.py deleted file mode 100644 index 14b21dd0..00000000 --- a/src/workos/common/models/dsync_group_user_added_data_user_state.py +++ /dev/null @@ -1,7 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .directory_user_with_groups_state import DirectoryUserWithGroupsState - -DsyncGroupUserAddedDataUserState: TypeAlias = DirectoryUserWithGroupsState -__all__ = ["DsyncGroupUserAddedDataUserState"] diff --git a/src/workos/common/models/dsync_group_user_removed_context.py b/src/workos/common/models/dsync_group_user_removed_context.py deleted file mode 100644 index 38bbbf6c..00000000 --- a/src/workos/common/models/dsync_group_user_removed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncGroupUserRemovedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_group_user_removed_context_actor.py b/src/workos/common/models/dsync_group_user_removed_context_actor.py deleted file mode 100644 index adb69b50..00000000 --- a/src/workos/common/models/dsync_group_user_removed_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncGroupUserRemovedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_group_user_removed_context_actor_source.py b/src/workos/common/models/dsync_group_user_removed_context_actor_source.py deleted file mode 100644 index 23f6839c..00000000 --- a/src/workos/common/models/dsync_group_user_removed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncGroupUserRemovedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncGroupUserRemovedContextActorSource"] diff --git a/src/workos/common/models/dsync_group_user_removed_context_google_analytics_session.py b/src/workos/common/models/dsync_group_user_removed_context_google_analytics_session.py deleted file mode 100644 index d902f201..00000000 --- a/src/workos/common/models/dsync_group_user_removed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncGroupUserRemovedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_group_user_removed_data.py b/src/workos/common/models/dsync_group_user_removed_data.py index aa16b36d..b2b21b67 100644 --- a/src/workos/common/models/dsync_group_user_removed_data.py +++ b/src/workos/common/models/dsync_group_user_removed_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .dsync_group_user_added_data import DsyncGroupUserAddedData DsyncGroupUserRemovedData: TypeAlias = DsyncGroupUserAddedData diff --git a/src/workos/common/models/dsync_group_user_removed_data_group.py b/src/workos/common/models/dsync_group_user_removed_data_group.py deleted file mode 100644 index 963e360e..00000000 --- a/src/workos/common/models/dsync_group_user_removed_data_group.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_group import DirectoryGroup - -DsyncGroupUserRemovedDataGroup: TypeAlias = DirectoryGroup diff --git a/src/workos/common/models/dsync_group_user_removed_data_user.py b/src/workos/common/models/dsync_group_user_removed_data_user.py deleted file mode 100644 index 94f5b834..00000000 --- a/src/workos/common/models/dsync_group_user_removed_data_user.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .dsync_group_user_added_data_user import DsyncGroupUserAddedDataUser - -DsyncGroupUserRemovedDataUser: TypeAlias = DsyncGroupUserAddedDataUser diff --git a/src/workos/common/models/dsync_group_user_removed_data_user_email.py b/src/workos/common/models/dsync_group_user_removed_data_user_email.py deleted file mode 100644 index 766b20d4..00000000 --- a/src/workos/common/models/dsync_group_user_removed_data_user_email.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_user_with_groups_email import ( - DirectoryUserWithGroupsEmail, -) - -DsyncGroupUserRemovedDataUserEmail: TypeAlias = DirectoryUserWithGroupsEmail diff --git a/src/workos/common/models/dsync_group_user_removed_data_user_role.py b/src/workos/common/models/dsync_group_user_removed_data_user_role.py deleted file mode 100644 index eefd288e..00000000 --- a/src/workos/common/models/dsync_group_user_removed_data_user_role.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.authorization.models.add_role_permission import AddRolePermission - -DsyncGroupUserRemovedDataUserRole: TypeAlias = AddRolePermission diff --git a/src/workos/common/models/dsync_group_user_removed_data_user_state.py b/src/workos/common/models/dsync_group_user_removed_data_user_state.py deleted file mode 100644 index e63cb601..00000000 --- a/src/workos/common/models/dsync_group_user_removed_data_user_state.py +++ /dev/null @@ -1,7 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .directory_user_with_groups_state import DirectoryUserWithGroupsState - -DsyncGroupUserRemovedDataUserState: TypeAlias = DirectoryUserWithGroupsState -__all__ = ["DsyncGroupUserRemovedDataUserState"] diff --git a/src/workos/common/models/dsync_user_created_context.py b/src/workos/common/models/dsync_user_created_context.py deleted file mode 100644 index 0d308cea..00000000 --- a/src/workos/common/models/dsync_user_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncUserCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_user_created_context_actor.py b/src/workos/common/models/dsync_user_created_context_actor.py deleted file mode 100644 index fa01d3b4..00000000 --- a/src/workos/common/models/dsync_user_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncUserCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_user_created_context_actor_source.py b/src/workos/common/models/dsync_user_created_context_actor_source.py deleted file mode 100644 index 298089b1..00000000 --- a/src/workos/common/models/dsync_user_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncUserCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncUserCreatedContextActorSource"] diff --git a/src/workos/common/models/dsync_user_created_context_google_analytics_session.py b/src/workos/common/models/dsync_user_created_context_google_analytics_session.py deleted file mode 100644 index 78fb3d3c..00000000 --- a/src/workos/common/models/dsync_user_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncUserCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_user_created_data.py b/src/workos/common/models/dsync_user_created_data.py deleted file mode 100644 index b6e17145..00000000 --- a/src/workos/common/models/dsync_user_created_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .dsync_group_user_added_data_user import DsyncGroupUserAddedDataUser - -DsyncUserCreatedData: TypeAlias = DsyncGroupUserAddedDataUser diff --git a/src/workos/common/models/dsync_user_created_data_email.py b/src/workos/common/models/dsync_user_created_data_email.py deleted file mode 100644 index a9d47b3e..00000000 --- a/src/workos/common/models/dsync_user_created_data_email.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_user_with_groups_email import ( - DirectoryUserWithGroupsEmail, -) - -DsyncUserCreatedDataEmail: TypeAlias = DirectoryUserWithGroupsEmail diff --git a/src/workos/common/models/dsync_user_created_data_role.py b/src/workos/common/models/dsync_user_created_data_role.py deleted file mode 100644 index e3712db1..00000000 --- a/src/workos/common/models/dsync_user_created_data_role.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.authorization.models.add_role_permission import AddRolePermission - -DsyncUserCreatedDataRole: TypeAlias = AddRolePermission diff --git a/src/workos/common/models/dsync_user_created_data_state.py b/src/workos/common/models/dsync_user_created_data_state.py deleted file mode 100644 index afb4de8b..00000000 --- a/src/workos/common/models/dsync_user_created_data_state.py +++ /dev/null @@ -1,7 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .directory_user_with_groups_state import DirectoryUserWithGroupsState - -DsyncUserCreatedDataState: TypeAlias = DirectoryUserWithGroupsState -__all__ = ["DsyncUserCreatedDataState"] diff --git a/src/workos/common/models/dsync_user_deleted_context.py b/src/workos/common/models/dsync_user_deleted_context.py deleted file mode 100644 index d529fe05..00000000 --- a/src/workos/common/models/dsync_user_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncUserDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_user_deleted_context_actor.py b/src/workos/common/models/dsync_user_deleted_context_actor.py deleted file mode 100644 index f7565c79..00000000 --- a/src/workos/common/models/dsync_user_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncUserDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_user_deleted_context_actor_source.py b/src/workos/common/models/dsync_user_deleted_context_actor_source.py deleted file mode 100644 index a499959e..00000000 --- a/src/workos/common/models/dsync_user_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncUserDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncUserDeletedContextActorSource"] diff --git a/src/workos/common/models/dsync_user_deleted_context_google_analytics_session.py b/src/workos/common/models/dsync_user_deleted_context_google_analytics_session.py deleted file mode 100644 index 2fb2f2fb..00000000 --- a/src/workos/common/models/dsync_user_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncUserDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_user_deleted_data.py b/src/workos/common/models/dsync_user_deleted_data.py deleted file mode 100644 index 68bde9c1..00000000 --- a/src/workos/common/models/dsync_user_deleted_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .dsync_group_user_added_data_user import DsyncGroupUserAddedDataUser - -DsyncUserDeletedData: TypeAlias = DsyncGroupUserAddedDataUser diff --git a/src/workos/common/models/dsync_user_deleted_data_email.py b/src/workos/common/models/dsync_user_deleted_data_email.py deleted file mode 100644 index 0e9b3d6f..00000000 --- a/src/workos/common/models/dsync_user_deleted_data_email.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.directory_sync.models.directory_user_with_groups_email import ( - DirectoryUserWithGroupsEmail, -) - -DsyncUserDeletedDataEmail: TypeAlias = DirectoryUserWithGroupsEmail diff --git a/src/workos/common/models/dsync_user_deleted_data_role.py b/src/workos/common/models/dsync_user_deleted_data_role.py deleted file mode 100644 index 5be6520f..00000000 --- a/src/workos/common/models/dsync_user_deleted_data_role.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.authorization.models.add_role_permission import AddRolePermission - -DsyncUserDeletedDataRole: TypeAlias = AddRolePermission diff --git a/src/workos/common/models/dsync_user_deleted_data_state.py b/src/workos/common/models/dsync_user_deleted_data_state.py deleted file mode 100644 index 220962db..00000000 --- a/src/workos/common/models/dsync_user_deleted_data_state.py +++ /dev/null @@ -1,7 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .directory_user_with_groups_state import DirectoryUserWithGroupsState - -DsyncUserDeletedDataState: TypeAlias = DirectoryUserWithGroupsState -__all__ = ["DsyncUserDeletedDataState"] diff --git a/src/workos/common/models/dsync_user_updated_context.py b/src/workos/common/models/dsync_user_updated_context.py deleted file mode 100644 index 29247e0d..00000000 --- a/src/workos/common/models/dsync_user_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -DsyncUserUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/dsync_user_updated_context_actor.py b/src/workos/common/models/dsync_user_updated_context_actor.py deleted file mode 100644 index dec47ef6..00000000 --- a/src/workos/common/models/dsync_user_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -DsyncUserUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/dsync_user_updated_context_actor_source.py b/src/workos/common/models/dsync_user_updated_context_actor_source.py deleted file mode 100644 index 35fa28ff..00000000 --- a/src/workos/common/models/dsync_user_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -DsyncUserUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["DsyncUserUpdatedContextActorSource"] diff --git a/src/workos/common/models/dsync_user_updated_context_google_analytics_session.py b/src/workos/common/models/dsync_user_updated_context_google_analytics_session.py deleted file mode 100644 index 828fcee9..00000000 --- a/src/workos/common/models/dsync_user_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -DsyncUserUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/dsync_user_updated_data_email.py b/src/workos/common/models/dsync_user_updated_data_email.py index 6592be46..d7bee373 100644 --- a/src/workos/common/models/dsync_user_updated_data_email.py +++ b/src/workos/common/models/dsync_user_updated_data_email.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .directory_user_email import DirectoryUserEmail DsyncUserUpdatedDataEmail: TypeAlias = DirectoryUserEmail diff --git a/src/workos/common/models/dsync_user_updated_data_role.py b/src/workos/common/models/dsync_user_updated_data_role.py deleted file mode 100644 index 80eea322..00000000 --- a/src/workos/common/models/dsync_user_updated_data_role.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.authorization.models.add_role_permission import AddRolePermission - -DsyncUserUpdatedDataRole: TypeAlias = AddRolePermission diff --git a/src/workos/common/models/dsync_user_updated_data_state.py b/src/workos/common/models/dsync_user_updated_data_state.py index e155cfd0..2407d054 100644 --- a/src/workos/common/models/dsync_user_updated_data_state.py +++ b/src/workos/common/models/dsync_user_updated_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .directory_user_state import DirectoryUserState DsyncUserUpdatedDataState: TypeAlias = DirectoryUserState diff --git a/src/workos/common/models/email_verification_created_context.py b/src/workos/common/models/email_verification_created_context.py deleted file mode 100644 index 9b58f74f..00000000 --- a/src/workos/common/models/email_verification_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -EmailVerificationCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/email_verification_created_context_actor.py b/src/workos/common/models/email_verification_created_context_actor.py deleted file mode 100644 index c8654847..00000000 --- a/src/workos/common/models/email_verification_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -EmailVerificationCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/email_verification_created_context_actor_source.py b/src/workos/common/models/email_verification_created_context_actor_source.py deleted file mode 100644 index 71677fb9..00000000 --- a/src/workos/common/models/email_verification_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -EmailVerificationCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["EmailVerificationCreatedContextActorSource"] diff --git a/src/workos/common/models/email_verification_created_context_google_analytics_session.py b/src/workos/common/models/email_verification_created_context_google_analytics_session.py deleted file mode 100644 index 131a8328..00000000 --- a/src/workos/common/models/email_verification_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -EmailVerificationCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/event_context_actor_source.py b/src/workos/common/models/event_context_actor_source.py index c5c62638..f270625e 100644 --- a/src/workos/common/models/event_context_actor_source.py +++ b/src/workos/common/models/event_context_actor_source.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class EventContextActorSource(str, Enum): diff --git a/src/workos/common/models/flag_created_context_actor.py b/src/workos/common/models/flag_created_context_actor.py index e2bad226..1de6c4c3 100644 --- a/src/workos/common/models/flag_created_context_actor.py +++ b/src/workos/common/models/flag_created_context_actor.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor import EventContextActor FlagCreatedContextActor: TypeAlias = EventContextActor diff --git a/src/workos/common/models/flag_created_context_actor_source.py b/src/workos/common/models/flag_created_context_actor_source.py index 9a541296..e6d065ea 100644 --- a/src/workos/common/models/flag_created_context_actor_source.py +++ b/src/workos/common/models/flag_created_context_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor_source import EventContextActorSource FlagCreatedContextActorSource: TypeAlias = EventContextActorSource diff --git a/src/workos/common/models/flag_created_data_owner.py b/src/workos/common/models/flag_created_data_owner.py index 863ff3eb..0130feeb 100644 --- a/src/workos/common/models/flag_created_data_owner.py +++ b/src/workos/common/models/flag_created_data_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.feature_flags.models.feature_flag_owner import FeatureFlagOwner FlagCreatedDataOwner: TypeAlias = FeatureFlagOwner diff --git a/src/workos/common/models/flag_deleted_context.py b/src/workos/common/models/flag_deleted_context.py index d96a7cbe..371b3ecd 100644 --- a/src/workos/common/models/flag_deleted_context.py +++ b/src/workos/common/models/flag_deleted_context.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_created_context import FlagCreatedContext FlagDeletedContext: TypeAlias = FlagCreatedContext diff --git a/src/workos/common/models/flag_deleted_context_actor.py b/src/workos/common/models/flag_deleted_context_actor.py index c709ca77..91b82f51 100644 --- a/src/workos/common/models/flag_deleted_context_actor.py +++ b/src/workos/common/models/flag_deleted_context_actor.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor import EventContextActor FlagDeletedContextActor: TypeAlias = EventContextActor diff --git a/src/workos/common/models/flag_deleted_context_actor_source.py b/src/workos/common/models/flag_deleted_context_actor_source.py index 2fbb2a5f..dd64314f 100644 --- a/src/workos/common/models/flag_deleted_context_actor_source.py +++ b/src/workos/common/models/flag_deleted_context_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor_source import EventContextActorSource FlagDeletedContextActorSource: TypeAlias = EventContextActorSource diff --git a/src/workos/common/models/flag_deleted_data.py b/src/workos/common/models/flag_deleted_data.py index a2b33c83..78f7e495 100644 --- a/src/workos/common/models/flag_deleted_data.py +++ b/src/workos/common/models/flag_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_created_data import FlagCreatedData FlagDeletedData: TypeAlias = FlagCreatedData diff --git a/src/workos/common/models/flag_deleted_data_owner.py b/src/workos/common/models/flag_deleted_data_owner.py index bbddc499..39872ec7 100644 --- a/src/workos/common/models/flag_deleted_data_owner.py +++ b/src/workos/common/models/flag_deleted_data_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.feature_flags.models.feature_flag_owner import FeatureFlagOwner FlagDeletedDataOwner: TypeAlias = FeatureFlagOwner diff --git a/src/workos/common/models/flag_rule_updated_context_access_type.py b/src/workos/common/models/flag_rule_updated_context_access_type.py index a292c77d..3a7ed2a0 100644 --- a/src/workos/common/models/flag_rule_updated_context_access_type.py +++ b/src/workos/common/models/flag_rule_updated_context_access_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class FlagRuleUpdatedContextAccessType(str, Enum): diff --git a/src/workos/common/models/flag_rule_updated_context_actor.py b/src/workos/common/models/flag_rule_updated_context_actor.py index 860e8fec..19f0d633 100644 --- a/src/workos/common/models/flag_rule_updated_context_actor.py +++ b/src/workos/common/models/flag_rule_updated_context_actor.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor import EventContextActor FlagRuleUpdatedContextActor: TypeAlias = EventContextActor diff --git a/src/workos/common/models/flag_rule_updated_context_actor_source.py b/src/workos/common/models/flag_rule_updated_context_actor_source.py index cc5331ee..2cfd6a9a 100644 --- a/src/workos/common/models/flag_rule_updated_context_actor_source.py +++ b/src/workos/common/models/flag_rule_updated_context_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor_source import EventContextActorSource FlagRuleUpdatedContextActorSource: TypeAlias = EventContextActorSource diff --git a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_access_type.py b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_access_type.py index fead7acf..0ec0f9ba 100644 --- a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_access_type.py +++ b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_access_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_rule_updated_context_access_type import FlagRuleUpdatedContextAccessType FlagRuleUpdatedContextPreviousAttributeContextAccessType: TypeAlias = ( diff --git a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target.py b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target.py index 44116c13..28f3c66b 100644 --- a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target.py +++ b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_rule_updated_context_configured_target import ( FlagRuleUpdatedContextConfiguredTarget, ) diff --git a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_organization.py b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_organization.py index ad089fed..8161553b 100644 --- a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_organization.py +++ b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_organization.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_rule_updated_context_configured_target_organization import ( FlagRuleUpdatedContextConfiguredTargetOrganization, ) diff --git a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_user.py b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_user.py index 22ecae88..2bd46f17 100644 --- a/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_user.py +++ b/src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_user.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_rule_updated_context_configured_target_user import ( FlagRuleUpdatedContextConfiguredTargetUser, ) diff --git a/src/workos/common/models/flag_rule_updated_data.py b/src/workos/common/models/flag_rule_updated_data.py index 78f2df3d..9bea8d99 100644 --- a/src/workos/common/models/flag_rule_updated_data.py +++ b/src/workos/common/models/flag_rule_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_created_data import FlagCreatedData FlagRuleUpdatedData: TypeAlias = FlagCreatedData diff --git a/src/workos/common/models/flag_rule_updated_data_owner.py b/src/workos/common/models/flag_rule_updated_data_owner.py index e1ef75fc..8ef7f1f2 100644 --- a/src/workos/common/models/flag_rule_updated_data_owner.py +++ b/src/workos/common/models/flag_rule_updated_data_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.feature_flags.models.feature_flag_owner import FeatureFlagOwner FlagRuleUpdatedDataOwner: TypeAlias = FeatureFlagOwner diff --git a/src/workos/common/models/flag_updated_context_actor.py b/src/workos/common/models/flag_updated_context_actor.py index 272b47e8..8c408982 100644 --- a/src/workos/common/models/flag_updated_context_actor.py +++ b/src/workos/common/models/flag_updated_context_actor.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor import EventContextActor FlagUpdatedContextActor: TypeAlias = EventContextActor diff --git a/src/workos/common/models/flag_updated_context_actor_source.py b/src/workos/common/models/flag_updated_context_actor_source.py index ffb44390..d2f0378f 100644 --- a/src/workos/common/models/flag_updated_context_actor_source.py +++ b/src/workos/common/models/flag_updated_context_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .event_context_actor_source import EventContextActorSource FlagUpdatedContextActorSource: TypeAlias = EventContextActorSource diff --git a/src/workos/common/models/flag_updated_data.py b/src/workos/common/models/flag_updated_data.py index aae1362d..0c3faf75 100644 --- a/src/workos/common/models/flag_updated_data.py +++ b/src/workos/common/models/flag_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .flag_created_data import FlagCreatedData FlagUpdatedData: TypeAlias = FlagCreatedData diff --git a/src/workos/common/models/flag_updated_data_owner.py b/src/workos/common/models/flag_updated_data_owner.py index 07b7fb47..6185e0ca 100644 --- a/src/workos/common/models/flag_updated_data_owner.py +++ b/src/workos/common/models/flag_updated_data_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.feature_flags.models.feature_flag_owner import FeatureFlagOwner FlagUpdatedDataOwner: TypeAlias = FeatureFlagOwner diff --git a/src/workos/common/models/generate_link_intent.py b/src/workos/common/models/generate_link_intent.py index 45fd4a99..fac8bea4 100644 --- a/src/workos/common/models/generate_link_intent.py +++ b/src/workos/common/models/generate_link_intent.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class GenerateLinkIntent(str, Enum): diff --git a/src/workos/common/models/invitation_accepted_context.py b/src/workos/common/models/invitation_accepted_context.py deleted file mode 100644 index 38bd38db..00000000 --- a/src/workos/common/models/invitation_accepted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -InvitationAcceptedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/invitation_accepted_context_actor.py b/src/workos/common/models/invitation_accepted_context_actor.py deleted file mode 100644 index 963d6862..00000000 --- a/src/workos/common/models/invitation_accepted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -InvitationAcceptedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/invitation_accepted_context_actor_source.py b/src/workos/common/models/invitation_accepted_context_actor_source.py deleted file mode 100644 index 8a41a5dc..00000000 --- a/src/workos/common/models/invitation_accepted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -InvitationAcceptedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["InvitationAcceptedContextActorSource"] diff --git a/src/workos/common/models/invitation_accepted_context_google_analytics_session.py b/src/workos/common/models/invitation_accepted_context_google_analytics_session.py deleted file mode 100644 index f14294fc..00000000 --- a/src/workos/common/models/invitation_accepted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -InvitationAcceptedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/invitation_accepted_data_state.py b/src/workos/common/models/invitation_accepted_data_state.py index c39ddcff..cc9cd3be 100644 --- a/src/workos/common/models/invitation_accepted_data_state.py +++ b/src/workos/common/models/invitation_accepted_data_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class InvitationAcceptedDataState(str, Enum): diff --git a/src/workos/common/models/invitation_created_context.py b/src/workos/common/models/invitation_created_context.py deleted file mode 100644 index b6a08e57..00000000 --- a/src/workos/common/models/invitation_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -InvitationCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/invitation_created_context_actor.py b/src/workos/common/models/invitation_created_context_actor.py deleted file mode 100644 index 62bdf350..00000000 --- a/src/workos/common/models/invitation_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -InvitationCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/invitation_created_context_actor_source.py b/src/workos/common/models/invitation_created_context_actor_source.py deleted file mode 100644 index 95c767e5..00000000 --- a/src/workos/common/models/invitation_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -InvitationCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["InvitationCreatedContextActorSource"] diff --git a/src/workos/common/models/invitation_created_context_google_analytics_session.py b/src/workos/common/models/invitation_created_context_google_analytics_session.py deleted file mode 100644 index e83de67d..00000000 --- a/src/workos/common/models/invitation_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -InvitationCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/invitation_created_data.py b/src/workos/common/models/invitation_created_data.py index 00c0651a..787cd38d 100644 --- a/src/workos/common/models/invitation_created_data.py +++ b/src/workos/common/models/invitation_created_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data import InvitationAcceptedData InvitationCreatedData: TypeAlias = InvitationAcceptedData diff --git a/src/workos/common/models/invitation_created_data_state.py b/src/workos/common/models/invitation_created_data_state.py index 7682194f..b01ef240 100644 --- a/src/workos/common/models/invitation_created_data_state.py +++ b/src/workos/common/models/invitation_created_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data_state import InvitationAcceptedDataState InvitationCreatedDataState: TypeAlias = InvitationAcceptedDataState diff --git a/src/workos/common/models/invitation_resent_context.py b/src/workos/common/models/invitation_resent_context.py deleted file mode 100644 index b795b8d3..00000000 --- a/src/workos/common/models/invitation_resent_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -InvitationResentContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/invitation_resent_context_actor.py b/src/workos/common/models/invitation_resent_context_actor.py deleted file mode 100644 index 37b90a63..00000000 --- a/src/workos/common/models/invitation_resent_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -InvitationResentContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/invitation_resent_context_actor_source.py b/src/workos/common/models/invitation_resent_context_actor_source.py deleted file mode 100644 index 118844c4..00000000 --- a/src/workos/common/models/invitation_resent_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -InvitationResentContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["InvitationResentContextActorSource"] diff --git a/src/workos/common/models/invitation_resent_context_google_analytics_session.py b/src/workos/common/models/invitation_resent_context_google_analytics_session.py deleted file mode 100644 index 82acd8cd..00000000 --- a/src/workos/common/models/invitation_resent_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -InvitationResentContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/invitation_resent_data.py b/src/workos/common/models/invitation_resent_data.py index 74fc758a..54272f83 100644 --- a/src/workos/common/models/invitation_resent_data.py +++ b/src/workos/common/models/invitation_resent_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data import InvitationAcceptedData InvitationResentData: TypeAlias = InvitationAcceptedData diff --git a/src/workos/common/models/invitation_resent_data_state.py b/src/workos/common/models/invitation_resent_data_state.py index fad86371..75baa954 100644 --- a/src/workos/common/models/invitation_resent_data_state.py +++ b/src/workos/common/models/invitation_resent_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data_state import InvitationAcceptedDataState InvitationResentDataState: TypeAlias = InvitationAcceptedDataState diff --git a/src/workos/common/models/invitation_revoked_context.py b/src/workos/common/models/invitation_revoked_context.py deleted file mode 100644 index c7618f19..00000000 --- a/src/workos/common/models/invitation_revoked_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -InvitationRevokedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/invitation_revoked_context_actor.py b/src/workos/common/models/invitation_revoked_context_actor.py deleted file mode 100644 index 0bf02a04..00000000 --- a/src/workos/common/models/invitation_revoked_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -InvitationRevokedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/invitation_revoked_context_actor_source.py b/src/workos/common/models/invitation_revoked_context_actor_source.py deleted file mode 100644 index 1adf2693..00000000 --- a/src/workos/common/models/invitation_revoked_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -InvitationRevokedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["InvitationRevokedContextActorSource"] diff --git a/src/workos/common/models/invitation_revoked_context_google_analytics_session.py b/src/workos/common/models/invitation_revoked_context_google_analytics_session.py deleted file mode 100644 index 9028ca95..00000000 --- a/src/workos/common/models/invitation_revoked_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -InvitationRevokedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/invitation_revoked_data.py b/src/workos/common/models/invitation_revoked_data.py index 4d99ce5e..0f7e30ec 100644 --- a/src/workos/common/models/invitation_revoked_data.py +++ b/src/workos/common/models/invitation_revoked_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data import InvitationAcceptedData InvitationRevokedData: TypeAlias = InvitationAcceptedData diff --git a/src/workos/common/models/invitation_revoked_data_state.py b/src/workos/common/models/invitation_revoked_data_state.py index 327845af..6258456b 100644 --- a/src/workos/common/models/invitation_revoked_data_state.py +++ b/src/workos/common/models/invitation_revoked_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data_state import InvitationAcceptedDataState InvitationRevokedDataState: TypeAlias = InvitationAcceptedDataState diff --git a/src/workos/common/models/invitation_state.py b/src/workos/common/models/invitation_state.py index 7a163558..b363afc5 100644 --- a/src/workos/common/models/invitation_state.py +++ b/src/workos/common/models/invitation_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data_state import InvitationAcceptedDataState InvitationState: TypeAlias = InvitationAcceptedDataState diff --git a/src/workos/common/models/list_data_type.py b/src/workos/common/models/list_data_type.py deleted file mode 100644 index 235077ce..00000000 --- a/src/workos/common/models/list_data_type.py +++ /dev/null @@ -1,28 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -"""Enumeration of list data type values.""" - -from __future__ import annotations - -from enum import Enum -from typing import Optional -from typing_extensions import Literal, TypeAlias - - -class ListDataType(str, Enum): - """Known values for ListDataType.""" - - ENVIRONMENT_ROLE = "EnvironmentRole" - ORGANIZATION_ROLE = "OrganizationRole" - - @classmethod - def _missing_(cls, value: object) -> Optional["ListDataType"]: - if not isinstance(value, str): - return None - unknown = str.__new__(cls, value) - unknown._name_ = value.upper() - unknown._value_ = value - return unknown - - -ListDataTypeLiteral: TypeAlias = Literal["EnvironmentRole", "OrganizationRole"] diff --git a/src/workos/common/models/magic_auth_created_context.py b/src/workos/common/models/magic_auth_created_context.py deleted file mode 100644 index 3cceb91e..00000000 --- a/src/workos/common/models/magic_auth_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -MagicAuthCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/magic_auth_created_context_actor.py b/src/workos/common/models/magic_auth_created_context_actor.py deleted file mode 100644 index 70c3dc9c..00000000 --- a/src/workos/common/models/magic_auth_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -MagicAuthCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/magic_auth_created_context_actor_source.py b/src/workos/common/models/magic_auth_created_context_actor_source.py deleted file mode 100644 index 3fdafb5f..00000000 --- a/src/workos/common/models/magic_auth_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -MagicAuthCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["MagicAuthCreatedContextActorSource"] diff --git a/src/workos/common/models/magic_auth_created_context_google_analytics_session.py b/src/workos/common/models/magic_auth_created_context_google_analytics_session.py deleted file mode 100644 index 3b7c50e3..00000000 --- a/src/workos/common/models/magic_auth_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -MagicAuthCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_created_context.py b/src/workos/common/models/organization_created_context.py deleted file mode 100644 index 7abd47ef..00000000 --- a/src/workos/common/models/organization_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_created_context_actor.py b/src/workos/common/models/organization_created_context_actor.py deleted file mode 100644 index c014a583..00000000 --- a/src/workos/common/models/organization_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_created_context_actor_source.py b/src/workos/common/models/organization_created_context_actor_source.py deleted file mode 100644 index 7eb5ba3b..00000000 --- a/src/workos/common/models/organization_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationCreatedContextActorSource"] diff --git a/src/workos/common/models/organization_created_context_google_analytics_session.py b/src/workos/common/models/organization_created_context_google_analytics_session.py deleted file mode 100644 index 6deea6de..00000000 --- a/src/workos/common/models/organization_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_created_data_domain.py b/src/workos/common/models/organization_created_data_domain.py index d742b4a8..2578b80c 100644 --- a/src/workos/common/models/organization_created_data_domain.py +++ b/src/workos/common/models/organization_created_data_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationCreatedDataDomain: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_created_data_domain_state.py b/src/workos/common/models/organization_created_data_domain_state.py index 58357db6..2d30b29e 100644 --- a/src/workos/common/models/organization_created_data_domain_state.py +++ b/src/workos/common/models/organization_created_data_domain_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class OrganizationCreatedDataDomainState(str, Enum): diff --git a/src/workos/common/models/organization_created_data_domain_verification_strategy.py b/src/workos/common/models/organization_created_data_domain_verification_strategy.py index 50257605..d2f4ccda 100644 --- a/src/workos/common/models/organization_created_data_domain_verification_strategy.py +++ b/src/workos/common/models/organization_created_data_domain_verification_strategy.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class OrganizationCreatedDataDomainVerificationStrategy(str, Enum): diff --git a/src/workos/common/models/organization_deleted_context.py b/src/workos/common/models/organization_deleted_context.py deleted file mode 100644 index 20ed0405..00000000 --- a/src/workos/common/models/organization_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_deleted_context_actor.py b/src/workos/common/models/organization_deleted_context_actor.py deleted file mode 100644 index 9e5f2d39..00000000 --- a/src/workos/common/models/organization_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_deleted_context_actor_source.py b/src/workos/common/models/organization_deleted_context_actor_source.py deleted file mode 100644 index f7e70166..00000000 --- a/src/workos/common/models/organization_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDeletedContextActorSource"] diff --git a/src/workos/common/models/organization_deleted_context_google_analytics_session.py b/src/workos/common/models/organization_deleted_context_google_analytics_session.py deleted file mode 100644 index 489ad781..00000000 --- a/src/workos/common/models/organization_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_deleted_data.py b/src/workos/common/models/organization_deleted_data.py index 38bb4a1f..b09ea47d 100644 --- a/src/workos/common/models/organization_deleted_data.py +++ b/src/workos/common/models/organization_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data import OrganizationCreatedData OrganizationDeletedData: TypeAlias = OrganizationCreatedData diff --git a/src/workos/common/models/organization_deleted_data_domain.py b/src/workos/common/models/organization_deleted_data_domain.py index e01787b5..abb23be0 100644 --- a/src/workos/common/models/organization_deleted_data_domain.py +++ b/src/workos/common/models/organization_deleted_data_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDeletedDataDomain: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_deleted_data_domain_state.py b/src/workos/common/models/organization_deleted_data_domain_state.py index f7ac8421..f0aded54 100644 --- a/src/workos/common/models/organization_deleted_data_domain_state.py +++ b/src/workos/common/models/organization_deleted_data_domain_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDeletedDataDomainState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_deleted_data_domain_verification_strategy.py b/src/workos/common/models/organization_deleted_data_domain_verification_strategy.py index d6d495b0..90807929 100644 --- a/src/workos/common/models/organization_deleted_data_domain_verification_strategy.py +++ b/src/workos/common/models/organization_deleted_data_domain_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_created_context.py b/src/workos/common/models/organization_domain_created_context.py deleted file mode 100644 index c33a9ec0..00000000 --- a/src/workos/common/models/organization_domain_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDomainCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_domain_created_context_actor.py b/src/workos/common/models/organization_domain_created_context_actor.py deleted file mode 100644 index 04922403..00000000 --- a/src/workos/common/models/organization_domain_created_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDomainCreatedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_domain_created_context_actor_source.py b/src/workos/common/models/organization_domain_created_context_actor_source.py deleted file mode 100644 index b614dc8d..00000000 --- a/src/workos/common/models/organization_domain_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDomainCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDomainCreatedContextActorSource"] diff --git a/src/workos/common/models/organization_domain_created_context_google_analytics_session.py b/src/workos/common/models/organization_domain_created_context_google_analytics_session.py deleted file mode 100644 index 002370b0..00000000 --- a/src/workos/common/models/organization_domain_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDomainCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_domain_created_data.py b/src/workos/common/models/organization_domain_created_data.py index 9691a560..70f8cc8c 100644 --- a/src/workos/common/models/organization_domain_created_data.py +++ b/src/workos/common/models/organization_domain_created_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDomainCreatedData: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_domain_created_data_state.py b/src/workos/common/models/organization_domain_created_data_state.py index f2741ea9..c88029ec 100644 --- a/src/workos/common/models/organization_domain_created_data_state.py +++ b/src/workos/common/models/organization_domain_created_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainCreatedDataState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_created_data_verification_strategy.py b/src/workos/common/models/organization_domain_created_data_verification_strategy.py index 4c0c8652..a169f23a 100644 --- a/src/workos/common/models/organization_domain_created_data_verification_strategy.py +++ b/src/workos/common/models/organization_domain_created_data_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_data_state.py b/src/workos/common/models/organization_domain_data_state.py index 65d61910..b2a2df0c 100644 --- a/src/workos/common/models/organization_domain_data_state.py +++ b/src/workos/common/models/organization_domain_data_state.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class OrganizationDomainDataState(str, Enum): diff --git a/src/workos/common/models/organization_domain_deleted_context.py b/src/workos/common/models/organization_domain_deleted_context.py deleted file mode 100644 index 56bb837e..00000000 --- a/src/workos/common/models/organization_domain_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDomainDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_domain_deleted_context_actor.py b/src/workos/common/models/organization_domain_deleted_context_actor.py deleted file mode 100644 index e3f632f9..00000000 --- a/src/workos/common/models/organization_domain_deleted_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDomainDeletedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_domain_deleted_context_actor_source.py b/src/workos/common/models/organization_domain_deleted_context_actor_source.py deleted file mode 100644 index f6921533..00000000 --- a/src/workos/common/models/organization_domain_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDomainDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDomainDeletedContextActorSource"] diff --git a/src/workos/common/models/organization_domain_deleted_context_google_analytics_session.py b/src/workos/common/models/organization_domain_deleted_context_google_analytics_session.py deleted file mode 100644 index 415eadd2..00000000 --- a/src/workos/common/models/organization_domain_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDomainDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_domain_deleted_data.py b/src/workos/common/models/organization_domain_deleted_data.py index 4ef34315..31c1f3a2 100644 --- a/src/workos/common/models/organization_domain_deleted_data.py +++ b/src/workos/common/models/organization_domain_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDomainDeletedData: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_domain_deleted_data_state.py b/src/workos/common/models/organization_domain_deleted_data_state.py index c899b2b4..95266ac6 100644 --- a/src/workos/common/models/organization_domain_deleted_data_state.py +++ b/src/workos/common/models/organization_domain_deleted_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainDeletedDataState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_deleted_data_verification_strategy.py b/src/workos/common/models/organization_domain_deleted_data_verification_strategy.py index f0d9426a..507cb57a 100644 --- a/src/workos/common/models/organization_domain_deleted_data_verification_strategy.py +++ b/src/workos/common/models/organization_domain_deleted_data_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_stand_alone_state.py b/src/workos/common/models/organization_domain_stand_alone_state.py index c8c87448..6d5d547e 100644 --- a/src/workos/common/models/organization_domain_stand_alone_state.py +++ b/src/workos/common/models/organization_domain_stand_alone_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainStandAloneState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_stand_alone_verification_strategy.py b/src/workos/common/models/organization_domain_stand_alone_verification_strategy.py index 894773fe..4bb04be0 100644 --- a/src/workos/common/models/organization_domain_stand_alone_verification_strategy.py +++ b/src/workos/common/models/organization_domain_stand_alone_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_state.py b/src/workos/common/models/organization_domain_state.py index b5e35d9d..f645049c 100644 --- a/src/workos/common/models/organization_domain_state.py +++ b/src/workos/common/models/organization_domain_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_updated_context.py b/src/workos/common/models/organization_domain_updated_context.py deleted file mode 100644 index 2c6df89f..00000000 --- a/src/workos/common/models/organization_domain_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDomainUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_domain_updated_context_actor.py b/src/workos/common/models/organization_domain_updated_context_actor.py deleted file mode 100644 index e19d055a..00000000 --- a/src/workos/common/models/organization_domain_updated_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDomainUpdatedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_domain_updated_context_actor_source.py b/src/workos/common/models/organization_domain_updated_context_actor_source.py deleted file mode 100644 index 5fe6d2c0..00000000 --- a/src/workos/common/models/organization_domain_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDomainUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDomainUpdatedContextActorSource"] diff --git a/src/workos/common/models/organization_domain_updated_context_google_analytics_session.py b/src/workos/common/models/organization_domain_updated_context_google_analytics_session.py deleted file mode 100644 index c7182a24..00000000 --- a/src/workos/common/models/organization_domain_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDomainUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_domain_updated_data.py b/src/workos/common/models/organization_domain_updated_data.py index e7aa51d1..79f8eba2 100644 --- a/src/workos/common/models/organization_domain_updated_data.py +++ b/src/workos/common/models/organization_domain_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDomainUpdatedData: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_domain_updated_data_state.py b/src/workos/common/models/organization_domain_updated_data_state.py index c6b286d1..14ab121b 100644 --- a/src/workos/common/models/organization_domain_updated_data_state.py +++ b/src/workos/common/models/organization_domain_updated_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainUpdatedDataState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_updated_data_verification_strategy.py b/src/workos/common/models/organization_domain_updated_data_verification_strategy.py index 2882ae59..2191981a 100644 --- a/src/workos/common/models/organization_domain_updated_data_verification_strategy.py +++ b/src/workos/common/models/organization_domain_updated_data_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_verification_failed_context.py b/src/workos/common/models/organization_domain_verification_failed_context.py deleted file mode 100644 index 5f128279..00000000 --- a/src/workos/common/models/organization_domain_verification_failed_context.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDomainVerificationFailedContext: TypeAlias = ( - ActionAuthenticationDeniedContext -) diff --git a/src/workos/common/models/organization_domain_verification_failed_context_actor.py b/src/workos/common/models/organization_domain_verification_failed_context_actor.py deleted file mode 100644 index e47ad816..00000000 --- a/src/workos/common/models/organization_domain_verification_failed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDomainVerificationFailedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_domain_verification_failed_context_actor_source.py b/src/workos/common/models/organization_domain_verification_failed_context_actor_source.py deleted file mode 100644 index 52433b63..00000000 --- a/src/workos/common/models/organization_domain_verification_failed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDomainVerificationFailedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDomainVerificationFailedContextActorSource"] diff --git a/src/workos/common/models/organization_domain_verification_failed_context_google_analytics_session.py b/src/workos/common/models/organization_domain_verification_failed_context_google_analytics_session.py deleted file mode 100644 index 9d9a0d9b..00000000 --- a/src/workos/common/models/organization_domain_verification_failed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDomainVerificationFailedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain.py b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain.py index 89f6d06c..ec057f65 100644 --- a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain.py +++ b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDomainVerificationFailedDataOrganizationDomain: TypeAlias = ( diff --git a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_state.py b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_state.py index a2f82ff4..a603bcce 100644 --- a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_state.py +++ b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainVerificationFailedDataOrganizationDomainState: TypeAlias = ( diff --git a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_verification_strategy.py b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_verification_strategy.py index 39081d99..63b4cc64 100644 --- a/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_verification_strategy.py +++ b/src/workos/common/models/organization_domain_verification_failed_data_organization_domain_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_verification_failed_data_reason.py b/src/workos/common/models/organization_domain_verification_failed_data_reason.py index f4a34b19..a36af374 100644 --- a/src/workos/common/models/organization_domain_verification_failed_data_reason.py +++ b/src/workos/common/models/organization_domain_verification_failed_data_reason.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class OrganizationDomainVerificationFailedDataReason(str, Enum): diff --git a/src/workos/common/models/organization_domain_verification_strategy.py b/src/workos/common/models/organization_domain_verification_strategy.py index 2da82b79..440bcd6b 100644 --- a/src/workos/common/models/organization_domain_verification_strategy.py +++ b/src/workos/common/models/organization_domain_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_domain_verified_context.py b/src/workos/common/models/organization_domain_verified_context.py deleted file mode 100644 index e5887ee3..00000000 --- a/src/workos/common/models/organization_domain_verified_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationDomainVerifiedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_domain_verified_context_actor.py b/src/workos/common/models/organization_domain_verified_context_actor.py deleted file mode 100644 index 0e344a84..00000000 --- a/src/workos/common/models/organization_domain_verified_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationDomainVerifiedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_domain_verified_context_actor_source.py b/src/workos/common/models/organization_domain_verified_context_actor_source.py deleted file mode 100644 index ccd87c5e..00000000 --- a/src/workos/common/models/organization_domain_verified_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationDomainVerifiedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationDomainVerifiedContextActorSource"] diff --git a/src/workos/common/models/organization_domain_verified_context_google_analytics_session.py b/src/workos/common/models/organization_domain_verified_context_google_analytics_session.py deleted file mode 100644 index ad220987..00000000 --- a/src/workos/common/models/organization_domain_verified_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationDomainVerifiedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_domain_verified_data.py b/src/workos/common/models/organization_domain_verified_data.py index 3468775f..f881f1f3 100644 --- a/src/workos/common/models/organization_domain_verified_data.py +++ b/src/workos/common/models/organization_domain_verified_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationDomainVerifiedData: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_domain_verified_data_state.py b/src/workos/common/models/organization_domain_verified_data_state.py index 765db33d..c4d23f69 100644 --- a/src/workos/common/models/organization_domain_verified_data_state.py +++ b/src/workos/common/models/organization_domain_verified_data_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationDomainVerifiedDataState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_domain_verified_data_verification_strategy.py b/src/workos/common/models/organization_domain_verified_data_verification_strategy.py index f339241a..4d141125 100644 --- a/src/workos/common/models/organization_domain_verified_data_verification_strategy.py +++ b/src/workos/common/models/organization_domain_verified_data_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/organization_membership_created_context.py b/src/workos/common/models/organization_membership_created_context.py deleted file mode 100644 index c89d90fc..00000000 --- a/src/workos/common/models/organization_membership_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationMembershipCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_membership_created_context_actor.py b/src/workos/common/models/organization_membership_created_context_actor.py deleted file mode 100644 index 414a78c7..00000000 --- a/src/workos/common/models/organization_membership_created_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationMembershipCreatedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_membership_created_context_actor_source.py b/src/workos/common/models/organization_membership_created_context_actor_source.py deleted file mode 100644 index cce1f8ff..00000000 --- a/src/workos/common/models/organization_membership_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationMembershipCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationMembershipCreatedContextActorSource"] diff --git a/src/workos/common/models/organization_membership_created_context_google_analytics_session.py b/src/workos/common/models/organization_membership_created_context_google_analytics_session.py deleted file mode 100644 index c5e442da..00000000 --- a/src/workos/common/models/organization_membership_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationMembershipCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_membership_created_data_status.py b/src/workos/common/models/organization_membership_created_data_status.py index 0b880be1..297fee7a 100644 --- a/src/workos/common/models/organization_membership_created_data_status.py +++ b/src/workos/common/models/organization_membership_created_data_status.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class OrganizationMembershipCreatedDataStatus(str, Enum): diff --git a/src/workos/common/models/organization_membership_deleted_context.py b/src/workos/common/models/organization_membership_deleted_context.py deleted file mode 100644 index 3cea30f6..00000000 --- a/src/workos/common/models/organization_membership_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationMembershipDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_membership_deleted_context_actor.py b/src/workos/common/models/organization_membership_deleted_context_actor.py deleted file mode 100644 index 91a1af50..00000000 --- a/src/workos/common/models/organization_membership_deleted_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationMembershipDeletedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_membership_deleted_context_actor_source.py b/src/workos/common/models/organization_membership_deleted_context_actor_source.py deleted file mode 100644 index e9781010..00000000 --- a/src/workos/common/models/organization_membership_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationMembershipDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationMembershipDeletedContextActorSource"] diff --git a/src/workos/common/models/organization_membership_deleted_context_google_analytics_session.py b/src/workos/common/models/organization_membership_deleted_context_google_analytics_session.py deleted file mode 100644 index 049f37f2..00000000 --- a/src/workos/common/models/organization_membership_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationMembershipDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_membership_deleted_data.py b/src/workos/common/models/organization_membership_deleted_data.py index bb8c0603..333f94e3 100644 --- a/src/workos/common/models/organization_membership_deleted_data.py +++ b/src/workos/common/models/organization_membership_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data import OrganizationMembershipCreatedData OrganizationMembershipDeletedData: TypeAlias = OrganizationMembershipCreatedData diff --git a/src/workos/common/models/organization_membership_deleted_data_status.py b/src/workos/common/models/organization_membership_deleted_data_status.py index 80b5d80c..d035e7e2 100644 --- a/src/workos/common/models/organization_membership_deleted_data_status.py +++ b/src/workos/common/models/organization_membership_deleted_data_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/common/models/organization_membership_status.py b/src/workos/common/models/organization_membership_status.py index 31931639..af08a099 100644 --- a/src/workos/common/models/organization_membership_status.py +++ b/src/workos/common/models/organization_membership_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/common/models/organization_membership_updated_context.py b/src/workos/common/models/organization_membership_updated_context.py deleted file mode 100644 index 8e2bdb14..00000000 --- a/src/workos/common/models/organization_membership_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationMembershipUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_membership_updated_context_actor.py b/src/workos/common/models/organization_membership_updated_context_actor.py deleted file mode 100644 index 9db7ec88..00000000 --- a/src/workos/common/models/organization_membership_updated_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationMembershipUpdatedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/organization_membership_updated_context_actor_source.py b/src/workos/common/models/organization_membership_updated_context_actor_source.py deleted file mode 100644 index 3ba5236e..00000000 --- a/src/workos/common/models/organization_membership_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationMembershipUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationMembershipUpdatedContextActorSource"] diff --git a/src/workos/common/models/organization_membership_updated_context_google_analytics_session.py b/src/workos/common/models/organization_membership_updated_context_google_analytics_session.py deleted file mode 100644 index 00763f26..00000000 --- a/src/workos/common/models/organization_membership_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationMembershipUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_membership_updated_data.py b/src/workos/common/models/organization_membership_updated_data.py index 62d5a125..f7ddf0ec 100644 --- a/src/workos/common/models/organization_membership_updated_data.py +++ b/src/workos/common/models/organization_membership_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data import OrganizationMembershipCreatedData OrganizationMembershipUpdatedData: TypeAlias = OrganizationMembershipCreatedData diff --git a/src/workos/common/models/organization_membership_updated_data_status.py b/src/workos/common/models/organization_membership_updated_data_status.py index de094ed2..13348036 100644 --- a/src/workos/common/models/organization_membership_updated_data_status.py +++ b/src/workos/common/models/organization_membership_updated_data_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/common/models/organization_role_created_context.py b/src/workos/common/models/organization_role_created_context.py deleted file mode 100644 index 79e333c6..00000000 --- a/src/workos/common/models/organization_role_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationRoleCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_role_created_context_actor.py b/src/workos/common/models/organization_role_created_context_actor.py deleted file mode 100644 index 329aae00..00000000 --- a/src/workos/common/models/organization_role_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationRoleCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_role_created_context_actor_source.py b/src/workos/common/models/organization_role_created_context_actor_source.py deleted file mode 100644 index 889afccb..00000000 --- a/src/workos/common/models/organization_role_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationRoleCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationRoleCreatedContextActorSource"] diff --git a/src/workos/common/models/organization_role_created_context_google_analytics_session.py b/src/workos/common/models/organization_role_created_context_google_analytics_session.py deleted file mode 100644 index 55229b54..00000000 --- a/src/workos/common/models/organization_role_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationRoleCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_role_deleted_context.py b/src/workos/common/models/organization_role_deleted_context.py deleted file mode 100644 index 25e91273..00000000 --- a/src/workos/common/models/organization_role_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationRoleDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_role_deleted_context_actor.py b/src/workos/common/models/organization_role_deleted_context_actor.py deleted file mode 100644 index fe61895b..00000000 --- a/src/workos/common/models/organization_role_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationRoleDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_role_deleted_context_actor_source.py b/src/workos/common/models/organization_role_deleted_context_actor_source.py deleted file mode 100644 index 2fd0ffac..00000000 --- a/src/workos/common/models/organization_role_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationRoleDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationRoleDeletedContextActorSource"] diff --git a/src/workos/common/models/organization_role_deleted_context_google_analytics_session.py b/src/workos/common/models/organization_role_deleted_context_google_analytics_session.py deleted file mode 100644 index 524f288d..00000000 --- a/src/workos/common/models/organization_role_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationRoleDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_role_deleted_data.py b/src/workos/common/models/organization_role_deleted_data.py index ab0db97f..c36056ca 100644 --- a/src/workos/common/models/organization_role_deleted_data.py +++ b/src/workos/common/models/organization_role_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_role_created_data import OrganizationRoleCreatedData OrganizationRoleDeletedData: TypeAlias = OrganizationRoleCreatedData diff --git a/src/workos/common/models/organization_role_updated_context.py b/src/workos/common/models/organization_role_updated_context.py deleted file mode 100644 index 1e628f6f..00000000 --- a/src/workos/common/models/organization_role_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationRoleUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_role_updated_context_actor.py b/src/workos/common/models/organization_role_updated_context_actor.py deleted file mode 100644 index 0113b8a9..00000000 --- a/src/workos/common/models/organization_role_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationRoleUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_role_updated_context_actor_source.py b/src/workos/common/models/organization_role_updated_context_actor_source.py deleted file mode 100644 index 33961b37..00000000 --- a/src/workos/common/models/organization_role_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationRoleUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationRoleUpdatedContextActorSource"] diff --git a/src/workos/common/models/organization_role_updated_context_google_analytics_session.py b/src/workos/common/models/organization_role_updated_context_google_analytics_session.py deleted file mode 100644 index 178fceed..00000000 --- a/src/workos/common/models/organization_role_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationRoleUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_role_updated_data.py b/src/workos/common/models/organization_role_updated_data.py index cb66636b..741e672e 100644 --- a/src/workos/common/models/organization_role_updated_data.py +++ b/src/workos/common/models/organization_role_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_role_created_data import OrganizationRoleCreatedData OrganizationRoleUpdatedData: TypeAlias = OrganizationRoleCreatedData diff --git a/src/workos/common/models/organization_updated_context.py b/src/workos/common/models/organization_updated_context.py deleted file mode 100644 index 396e1241..00000000 --- a/src/workos/common/models/organization_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -OrganizationUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/organization_updated_context_actor.py b/src/workos/common/models/organization_updated_context_actor.py deleted file mode 100644 index 739e61a6..00000000 --- a/src/workos/common/models/organization_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -OrganizationUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/organization_updated_context_actor_source.py b/src/workos/common/models/organization_updated_context_actor_source.py deleted file mode 100644 index 74854efd..00000000 --- a/src/workos/common/models/organization_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -OrganizationUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["OrganizationUpdatedContextActorSource"] diff --git a/src/workos/common/models/organization_updated_context_google_analytics_session.py b/src/workos/common/models/organization_updated_context_google_analytics_session.py deleted file mode 100644 index fd05b7f6..00000000 --- a/src/workos/common/models/organization_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -OrganizationUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/organization_updated_data.py b/src/workos/common/models/organization_updated_data.py index 44047ef3..45712a5d 100644 --- a/src/workos/common/models/organization_updated_data.py +++ b/src/workos/common/models/organization_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data import OrganizationCreatedData OrganizationUpdatedData: TypeAlias = OrganizationCreatedData diff --git a/src/workos/common/models/organization_updated_data_domain.py b/src/workos/common/models/organization_updated_data_domain.py index 3f081b88..56c47833 100644 --- a/src/workos/common/models/organization_updated_data_domain.py +++ b/src/workos/common/models/organization_updated_data_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.organization_domains.models.organization_domain import OrganizationDomain OrganizationUpdatedDataDomain: TypeAlias = OrganizationDomain diff --git a/src/workos/common/models/organization_updated_data_domain_state.py b/src/workos/common/models/organization_updated_data_domain_state.py index c8bed7f1..2b7a3924 100644 --- a/src/workos/common/models/organization_updated_data_domain_state.py +++ b/src/workos/common/models/organization_updated_data_domain_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_state import OrganizationCreatedDataDomainState OrganizationUpdatedDataDomainState: TypeAlias = OrganizationCreatedDataDomainState diff --git a/src/workos/common/models/organization_updated_data_domain_verification_strategy.py b/src/workos/common/models/organization_updated_data_domain_verification_strategy.py index d00447d9..0e5a1f97 100644 --- a/src/workos/common/models/organization_updated_data_domain_verification_strategy.py +++ b/src/workos/common/models/organization_updated_data_domain_verification_strategy.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_created_data_domain_verification_strategy import ( OrganizationCreatedDataDomainVerificationStrategy, ) diff --git a/src/workos/common/models/password_reset_created_context.py b/src/workos/common/models/password_reset_created_context.py deleted file mode 100644 index 3fe99db4..00000000 --- a/src/workos/common/models/password_reset_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -PasswordResetCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/password_reset_created_context_actor.py b/src/workos/common/models/password_reset_created_context_actor.py deleted file mode 100644 index c6f85d49..00000000 --- a/src/workos/common/models/password_reset_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -PasswordResetCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/password_reset_created_context_actor_source.py b/src/workos/common/models/password_reset_created_context_actor_source.py deleted file mode 100644 index 1944115f..00000000 --- a/src/workos/common/models/password_reset_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -PasswordResetCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["PasswordResetCreatedContextActorSource"] diff --git a/src/workos/common/models/password_reset_created_context_google_analytics_session.py b/src/workos/common/models/password_reset_created_context_google_analytics_session.py deleted file mode 100644 index 2cb125af..00000000 --- a/src/workos/common/models/password_reset_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -PasswordResetCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/password_reset_succeeded_context.py b/src/workos/common/models/password_reset_succeeded_context.py deleted file mode 100644 index 34c6014a..00000000 --- a/src/workos/common/models/password_reset_succeeded_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -PasswordResetSucceededContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/password_reset_succeeded_context_actor.py b/src/workos/common/models/password_reset_succeeded_context_actor.py deleted file mode 100644 index 7abc7249..00000000 --- a/src/workos/common/models/password_reset_succeeded_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -PasswordResetSucceededContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/password_reset_succeeded_context_actor_source.py b/src/workos/common/models/password_reset_succeeded_context_actor_source.py deleted file mode 100644 index 974b997c..00000000 --- a/src/workos/common/models/password_reset_succeeded_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -PasswordResetSucceededContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["PasswordResetSucceededContextActorSource"] diff --git a/src/workos/common/models/password_reset_succeeded_context_google_analytics_session.py b/src/workos/common/models/password_reset_succeeded_context_google_analytics_session.py deleted file mode 100644 index a34a3608..00000000 --- a/src/workos/common/models/password_reset_succeeded_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -PasswordResetSucceededContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/password_reset_succeeded_data.py b/src/workos/common/models/password_reset_succeeded_data.py index a3f00c1a..e7b75754 100644 --- a/src/workos/common/models/password_reset_succeeded_data.py +++ b/src/workos/common/models/password_reset_succeeded_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .password_reset_created_data import PasswordResetCreatedData PasswordResetSucceededData: TypeAlias = PasswordResetCreatedData diff --git a/src/workos/common/models/permission_created_context.py b/src/workos/common/models/permission_created_context.py deleted file mode 100644 index dd2cb840..00000000 --- a/src/workos/common/models/permission_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -PermissionCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/permission_created_context_actor.py b/src/workos/common/models/permission_created_context_actor.py deleted file mode 100644 index 66f9452a..00000000 --- a/src/workos/common/models/permission_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -PermissionCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/permission_created_context_actor_source.py b/src/workos/common/models/permission_created_context_actor_source.py deleted file mode 100644 index 9f3eb5e3..00000000 --- a/src/workos/common/models/permission_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -PermissionCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["PermissionCreatedContextActorSource"] diff --git a/src/workos/common/models/permission_created_context_google_analytics_session.py b/src/workos/common/models/permission_created_context_google_analytics_session.py deleted file mode 100644 index d6b7af27..00000000 --- a/src/workos/common/models/permission_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -PermissionCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/permission_deleted_context.py b/src/workos/common/models/permission_deleted_context.py deleted file mode 100644 index ad4bef53..00000000 --- a/src/workos/common/models/permission_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -PermissionDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/permission_deleted_context_actor.py b/src/workos/common/models/permission_deleted_context_actor.py deleted file mode 100644 index 58774494..00000000 --- a/src/workos/common/models/permission_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -PermissionDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/permission_deleted_context_actor_source.py b/src/workos/common/models/permission_deleted_context_actor_source.py deleted file mode 100644 index 26db0d53..00000000 --- a/src/workos/common/models/permission_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -PermissionDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["PermissionDeletedContextActorSource"] diff --git a/src/workos/common/models/permission_deleted_context_google_analytics_session.py b/src/workos/common/models/permission_deleted_context_google_analytics_session.py deleted file mode 100644 index 02c67dc9..00000000 --- a/src/workos/common/models/permission_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -PermissionDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/permission_deleted_data.py b/src/workos/common/models/permission_deleted_data.py index 7eb3dfce..02ec1189 100644 --- a/src/workos/common/models/permission_deleted_data.py +++ b/src/workos/common/models/permission_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .permission_created_data import PermissionCreatedData PermissionDeletedData: TypeAlias = PermissionCreatedData diff --git a/src/workos/common/models/permission_updated_context.py b/src/workos/common/models/permission_updated_context.py deleted file mode 100644 index cb39f9c6..00000000 --- a/src/workos/common/models/permission_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -PermissionUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/permission_updated_context_actor.py b/src/workos/common/models/permission_updated_context_actor.py deleted file mode 100644 index 4badb156..00000000 --- a/src/workos/common/models/permission_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -PermissionUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/permission_updated_context_actor_source.py b/src/workos/common/models/permission_updated_context_actor_source.py deleted file mode 100644 index e4af5b62..00000000 --- a/src/workos/common/models/permission_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -PermissionUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["PermissionUpdatedContextActorSource"] diff --git a/src/workos/common/models/permission_updated_context_google_analytics_session.py b/src/workos/common/models/permission_updated_context_google_analytics_session.py deleted file mode 100644 index 967ba429..00000000 --- a/src/workos/common/models/permission_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -PermissionUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/permission_updated_data.py b/src/workos/common/models/permission_updated_data.py index 12099e71..1785b37a 100644 --- a/src/workos/common/models/permission_updated_data.py +++ b/src/workos/common/models/permission_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .permission_created_data import PermissionCreatedData PermissionUpdatedData: TypeAlias = PermissionCreatedData diff --git a/src/workos/common/models/profile_connection_type.py b/src/workos/common/models/profile_connection_type.py index 1fef7170..8d4c6e73 100644 --- a/src/workos/common/models/profile_connection_type.py +++ b/src/workos/common/models/profile_connection_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .connection_type import ConnectionType ProfileConnectionType: TypeAlias = ConnectionType diff --git a/src/workos/common/models/radar_standalone_assess_request_action.py b/src/workos/common/models/radar_standalone_assess_request_action.py index 97fc8e4d..44cd1da3 100644 --- a/src/workos/common/models/radar_standalone_assess_request_action.py +++ b/src/workos/common/models/radar_standalone_assess_request_action.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarStandaloneAssessRequestAction(str, Enum): diff --git a/src/workos/common/models/radar_standalone_assess_request_auth_method.py b/src/workos/common/models/radar_standalone_assess_request_auth_method.py index 934c0088..324a899e 100644 --- a/src/workos/common/models/radar_standalone_assess_request_auth_method.py +++ b/src/workos/common/models/radar_standalone_assess_request_auth_method.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarStandaloneAssessRequestAuthMethod(str, Enum): diff --git a/src/workos/common/models/radar_standalone_response_blocklist_type.py b/src/workos/common/models/radar_standalone_response_blocklist_type.py index a26a2a5a..ca45b4dd 100644 --- a/src/workos/common/models/radar_standalone_response_blocklist_type.py +++ b/src/workos/common/models/radar_standalone_response_blocklist_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarStandaloneResponseBlocklistType(str, Enum): diff --git a/src/workos/common/models/radar_standalone_response_control.py b/src/workos/common/models/radar_standalone_response_control.py index 006bf54f..2e599da7 100644 --- a/src/workos/common/models/radar_standalone_response_control.py +++ b/src/workos/common/models/radar_standalone_response_control.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarStandaloneResponseControl(str, Enum): diff --git a/src/workos/common/models/radar_standalone_response_verdict.py b/src/workos/common/models/radar_standalone_response_verdict.py index 647672b0..75a911f5 100644 --- a/src/workos/common/models/radar_standalone_response_verdict.py +++ b/src/workos/common/models/radar_standalone_response_verdict.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarStandaloneResponseVerdict(str, Enum): diff --git a/src/workos/common/models/resend_user_invite_options_locale.py b/src/workos/common/models/resend_user_invite_options_locale.py index 6d1fc4a7..3498a5f3 100644 --- a/src/workos/common/models/resend_user_invite_options_locale.py +++ b/src/workos/common/models/resend_user_invite_options_locale.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .create_user_invite_options_locale import CreateUserInviteOptionsLocale ResendUserInviteOptionsLocale: TypeAlias = CreateUserInviteOptionsLocale diff --git a/src/workos/common/models/role_created_context.py b/src/workos/common/models/role_created_context.py deleted file mode 100644 index 832f5f55..00000000 --- a/src/workos/common/models/role_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -RoleCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/role_created_context_actor.py b/src/workos/common/models/role_created_context_actor.py deleted file mode 100644 index 62e8d165..00000000 --- a/src/workos/common/models/role_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -RoleCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/role_created_context_actor_source.py b/src/workos/common/models/role_created_context_actor_source.py deleted file mode 100644 index f1441dd7..00000000 --- a/src/workos/common/models/role_created_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -RoleCreatedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["RoleCreatedContextActorSource"] diff --git a/src/workos/common/models/role_created_context_google_analytics_session.py b/src/workos/common/models/role_created_context_google_analytics_session.py deleted file mode 100644 index 1b3adaef..00000000 --- a/src/workos/common/models/role_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -RoleCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/role_deleted_context.py b/src/workos/common/models/role_deleted_context.py deleted file mode 100644 index aa7e5139..00000000 --- a/src/workos/common/models/role_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -RoleDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/role_deleted_context_actor.py b/src/workos/common/models/role_deleted_context_actor.py deleted file mode 100644 index 3a626608..00000000 --- a/src/workos/common/models/role_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -RoleDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/role_deleted_context_actor_source.py b/src/workos/common/models/role_deleted_context_actor_source.py deleted file mode 100644 index 31677d75..00000000 --- a/src/workos/common/models/role_deleted_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -RoleDeletedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["RoleDeletedContextActorSource"] diff --git a/src/workos/common/models/role_deleted_context_google_analytics_session.py b/src/workos/common/models/role_deleted_context_google_analytics_session.py deleted file mode 100644 index c1f75bbc..00000000 --- a/src/workos/common/models/role_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -RoleDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/role_deleted_data.py b/src/workos/common/models/role_deleted_data.py index 28441ea0..3461fd95 100644 --- a/src/workos/common/models/role_deleted_data.py +++ b/src/workos/common/models/role_deleted_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .role_created_data import RoleCreatedData RoleDeletedData: TypeAlias = RoleCreatedData diff --git a/src/workos/common/models/role_type.py b/src/workos/common/models/role_type.py index b069aa27..a9f7b0e1 100644 --- a/src/workos/common/models/role_type.py +++ b/src/workos/common/models/role_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RoleType(str, Enum): diff --git a/src/workos/common/models/role_updated_context.py b/src/workos/common/models/role_updated_context.py deleted file mode 100644 index 01d54683..00000000 --- a/src/workos/common/models/role_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -RoleUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/role_updated_context_actor.py b/src/workos/common/models/role_updated_context_actor.py deleted file mode 100644 index b5f08b81..00000000 --- a/src/workos/common/models/role_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -RoleUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/role_updated_context_actor_source.py b/src/workos/common/models/role_updated_context_actor_source.py deleted file mode 100644 index 208aa84a..00000000 --- a/src/workos/common/models/role_updated_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -RoleUpdatedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["RoleUpdatedContextActorSource"] diff --git a/src/workos/common/models/role_updated_context_google_analytics_session.py b/src/workos/common/models/role_updated_context_google_analytics_session.py deleted file mode 100644 index 9ec2ef0a..00000000 --- a/src/workos/common/models/role_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -RoleUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/role_updated_data.py b/src/workos/common/models/role_updated_data.py index 6539f8d1..51a9a3cb 100644 --- a/src/workos/common/models/role_updated_data.py +++ b/src/workos/common/models/role_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .role_created_data import RoleCreatedData RoleUpdatedData: TypeAlias = RoleCreatedData diff --git a/src/workos/common/models/session_created_context.py b/src/workos/common/models/session_created_context.py deleted file mode 100644 index 231487d6..00000000 --- a/src/workos/common/models/session_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -SessionCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/session_created_context_actor.py b/src/workos/common/models/session_created_context_actor.py deleted file mode 100644 index def9962c..00000000 --- a/src/workos/common/models/session_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -SessionCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/session_created_context_actor_source.py b/src/workos/common/models/session_created_context_actor_source.py deleted file mode 100644 index f5d1f7d2..00000000 --- a/src/workos/common/models/session_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -SessionCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["SessionCreatedContextActorSource"] diff --git a/src/workos/common/models/session_created_context_google_analytics_session.py b/src/workos/common/models/session_created_context_google_analytics_session.py deleted file mode 100644 index 51bc212b..00000000 --- a/src/workos/common/models/session_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -SessionCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/session_created_data.py b/src/workos/common/models/session_created_data.py index 10b02e38..32af27ac 100644 --- a/src/workos/common/models/session_created_data.py +++ b/src/workos/common/models/session_created_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.user_management.models.user_sessions_list_item import UserSessionsListItem SessionCreatedData: TypeAlias = UserSessionsListItem diff --git a/src/workos/common/models/session_created_data_auth_method.py b/src/workos/common/models/session_created_data_auth_method.py index db92b72f..d2ae2a7d 100644 --- a/src/workos/common/models/session_created_data_auth_method.py +++ b/src/workos/common/models/session_created_data_auth_method.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class SessionCreatedDataAuthMethod(str, Enum): diff --git a/src/workos/common/models/session_created_data_impersonator.py b/src/workos/common/models/session_created_data_impersonator.py index 1e9c3c21..4114d18b 100644 --- a/src/workos/common/models/session_created_data_impersonator.py +++ b/src/workos/common/models/session_created_data_impersonator.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.user_management.models.authenticate_response_impersonator import ( AuthenticateResponseImpersonator, ) diff --git a/src/workos/common/models/session_created_data_status.py b/src/workos/common/models/session_created_data_status.py index f6c9cc9f..17bad1de 100644 --- a/src/workos/common/models/session_created_data_status.py +++ b/src/workos/common/models/session_created_data_status.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class SessionCreatedDataStatus(str, Enum): diff --git a/src/workos/common/models/session_revoked_context.py b/src/workos/common/models/session_revoked_context.py deleted file mode 100644 index 15e5dd9c..00000000 --- a/src/workos/common/models/session_revoked_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -SessionRevokedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/session_revoked_context_actor.py b/src/workos/common/models/session_revoked_context_actor.py deleted file mode 100644 index 00266d30..00000000 --- a/src/workos/common/models/session_revoked_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -SessionRevokedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/session_revoked_context_actor_source.py b/src/workos/common/models/session_revoked_context_actor_source.py deleted file mode 100644 index 13d79665..00000000 --- a/src/workos/common/models/session_revoked_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -SessionRevokedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["SessionRevokedContextActorSource"] diff --git a/src/workos/common/models/session_revoked_context_google_analytics_session.py b/src/workos/common/models/session_revoked_context_google_analytics_session.py deleted file mode 100644 index 0a17323b..00000000 --- a/src/workos/common/models/session_revoked_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -SessionRevokedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/session_revoked_data.py b/src/workos/common/models/session_revoked_data.py index 1fc51236..d336515a 100644 --- a/src/workos/common/models/session_revoked_data.py +++ b/src/workos/common/models/session_revoked_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.user_management.models.user_sessions_list_item import UserSessionsListItem SessionRevokedData: TypeAlias = UserSessionsListItem diff --git a/src/workos/common/models/session_revoked_data_auth_method.py b/src/workos/common/models/session_revoked_data_auth_method.py index a0588a1d..dc264bd4 100644 --- a/src/workos/common/models/session_revoked_data_auth_method.py +++ b/src/workos/common/models/session_revoked_data_auth_method.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .session_created_data_auth_method import SessionCreatedDataAuthMethod SessionRevokedDataAuthMethod: TypeAlias = SessionCreatedDataAuthMethod diff --git a/src/workos/common/models/session_revoked_data_impersonator.py b/src/workos/common/models/session_revoked_data_impersonator.py index 7adc9e8b..e254b8f0 100644 --- a/src/workos/common/models/session_revoked_data_impersonator.py +++ b/src/workos/common/models/session_revoked_data_impersonator.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.user_management.models.authenticate_response_impersonator import ( AuthenticateResponseImpersonator, ) diff --git a/src/workos/common/models/session_revoked_data_status.py b/src/workos/common/models/session_revoked_data_status.py index af2951ec..796e1971 100644 --- a/src/workos/common/models/session_revoked_data_status.py +++ b/src/workos/common/models/session_revoked_data_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .session_created_data_status import SessionCreatedDataStatus SessionRevokedDataStatus: TypeAlias = SessionCreatedDataStatus diff --git a/src/workos/common/models/update_user_password_hash_type.py b/src/workos/common/models/update_user_password_hash_type.py index c9d1de48..88f825f7 100644 --- a/src/workos/common/models/update_user_password_hash_type.py +++ b/src/workos/common/models/update_user_password_hash_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .create_user_password_hash_type import CreateUserPasswordHashType UpdateUserPasswordHashType: TypeAlias = CreateUserPasswordHashType diff --git a/src/workos/common/models/update_webhook_endpoint_events.py b/src/workos/common/models/update_webhook_endpoint_events.py index 7195162d..4d0e77ba 100644 --- a/src/workos/common/models/update_webhook_endpoint_events.py +++ b/src/workos/common/models/update_webhook_endpoint_events.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .create_webhook_endpoint_events import CreateWebhookEndpointEvents UpdateWebhookEndpointEvents: TypeAlias = CreateWebhookEndpointEvents diff --git a/src/workos/common/models/update_webhook_endpoint_status.py b/src/workos/common/models/update_webhook_endpoint_status.py index a01e56bd..927bafde 100644 --- a/src/workos/common/models/update_webhook_endpoint_status.py +++ b/src/workos/common/models/update_webhook_endpoint_status.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class UpdateWebhookEndpointStatus(str, Enum): diff --git a/src/workos/common/models/user_created_context.py b/src/workos/common/models/user_created_context.py deleted file mode 100644 index e80bf957..00000000 --- a/src/workos/common/models/user_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -UserCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/user_created_context_actor.py b/src/workos/common/models/user_created_context_actor.py deleted file mode 100644 index 4faa06e9..00000000 --- a/src/workos/common/models/user_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -UserCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/user_created_context_actor_source.py b/src/workos/common/models/user_created_context_actor_source.py deleted file mode 100644 index dac28ba5..00000000 --- a/src/workos/common/models/user_created_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -UserCreatedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["UserCreatedContextActorSource"] diff --git a/src/workos/common/models/user_created_context_google_analytics_session.py b/src/workos/common/models/user_created_context_google_analytics_session.py deleted file mode 100644 index 51547c1b..00000000 --- a/src/workos/common/models/user_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -UserCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/user_created_data.py b/src/workos/common/models/user_created_data.py deleted file mode 100644 index 617863ee..00000000 --- a/src/workos/common/models/user_created_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.user_management.models.user import User - -UserCreatedData: TypeAlias = User diff --git a/src/workos/common/models/user_deleted_context.py b/src/workos/common/models/user_deleted_context.py deleted file mode 100644 index 3ec7d40e..00000000 --- a/src/workos/common/models/user_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -UserDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/user_deleted_context_actor.py b/src/workos/common/models/user_deleted_context_actor.py deleted file mode 100644 index cf14f01d..00000000 --- a/src/workos/common/models/user_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -UserDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/user_deleted_context_actor_source.py b/src/workos/common/models/user_deleted_context_actor_source.py deleted file mode 100644 index 2a0108ea..00000000 --- a/src/workos/common/models/user_deleted_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -UserDeletedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["UserDeletedContextActorSource"] diff --git a/src/workos/common/models/user_deleted_context_google_analytics_session.py b/src/workos/common/models/user_deleted_context_google_analytics_session.py deleted file mode 100644 index 1f60667d..00000000 --- a/src/workos/common/models/user_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -UserDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/user_deleted_data.py b/src/workos/common/models/user_deleted_data.py deleted file mode 100644 index 66b827d6..00000000 --- a/src/workos/common/models/user_deleted_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.user_management.models.user import User - -UserDeletedData: TypeAlias = User diff --git a/src/workos/common/models/user_identities_get_item_provider.py b/src/workos/common/models/user_identities_get_item_provider.py index 2dce1e73..39b088e1 100644 --- a/src/workos/common/models/user_identities_get_item_provider.py +++ b/src/workos/common/models/user_identities_get_item_provider.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class UserIdentitiesGetItemProvider(str, Enum): diff --git a/src/workos/common/models/user_invite_state.py b/src/workos/common/models/user_invite_state.py index f57b506d..d02f0116 100644 --- a/src/workos/common/models/user_invite_state.py +++ b/src/workos/common/models/user_invite_state.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation_accepted_data_state import InvitationAcceptedDataState UserInviteState: TypeAlias = InvitationAcceptedDataState diff --git a/src/workos/common/models/user_organization_membership_base_list_data_status.py b/src/workos/common/models/user_organization_membership_base_list_data_status.py index de67f9d2..9cc1d012 100644 --- a/src/workos/common/models/user_organization_membership_base_list_data_status.py +++ b/src/workos/common/models/user_organization_membership_base_list_data_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/common/models/user_organization_membership_status.py b/src/workos/common/models/user_organization_membership_status.py index 17eebf83..3559cb49 100644 --- a/src/workos/common/models/user_organization_membership_status.py +++ b/src/workos/common/models/user_organization_membership_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/common/models/user_sessions_auth_method.py b/src/workos/common/models/user_sessions_auth_method.py index f8690bda..43673dc3 100644 --- a/src/workos/common/models/user_sessions_auth_method.py +++ b/src/workos/common/models/user_sessions_auth_method.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .session_created_data_auth_method import SessionCreatedDataAuthMethod UserSessionsAuthMethod: TypeAlias = SessionCreatedDataAuthMethod diff --git a/src/workos/common/models/user_sessions_status.py b/src/workos/common/models/user_sessions_status.py index 9bdc45df..3c075ba3 100644 --- a/src/workos/common/models/user_sessions_status.py +++ b/src/workos/common/models/user_sessions_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .session_created_data_status import SessionCreatedDataStatus UserSessionsStatus: TypeAlias = SessionCreatedDataStatus diff --git a/src/workos/common/models/user_updated_context.py b/src/workos/common/models/user_updated_context.py deleted file mode 100644 index bfe5b7a7..00000000 --- a/src/workos/common/models/user_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -UserUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/user_updated_context_actor.py b/src/workos/common/models/user_updated_context_actor.py deleted file mode 100644 index 427d1467..00000000 --- a/src/workos/common/models/user_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -UserUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/user_updated_context_actor_source.py b/src/workos/common/models/user_updated_context_actor_source.py deleted file mode 100644 index 43d688e1..00000000 --- a/src/workos/common/models/user_updated_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -UserUpdatedContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["UserUpdatedContextActorSource"] diff --git a/src/workos/common/models/user_updated_context_google_analytics_session.py b/src/workos/common/models/user_updated_context_google_analytics_session.py deleted file mode 100644 index 5fd779a6..00000000 --- a/src/workos/common/models/user_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -UserUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/user_updated_data.py b/src/workos/common/models/user_updated_data.py deleted file mode 100644 index aa4a675e..00000000 --- a/src/workos/common/models/user_updated_data.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from workos.user_management.models.user import User - -UserUpdatedData: TypeAlias = User diff --git a/src/workos/common/models/vault_byok_key_verification_completed_context.py b/src/workos/common/models/vault_byok_key_verification_completed_context.py deleted file mode 100644 index 1cc72852..00000000 --- a/src/workos/common/models/vault_byok_key_verification_completed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultByokKeyVerificationCompletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_byok_key_verification_completed_context_actor.py b/src/workos/common/models/vault_byok_key_verification_completed_context_actor.py deleted file mode 100644 index 25c1a0f2..00000000 --- a/src/workos/common/models/vault_byok_key_verification_completed_context_actor.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultByokKeyVerificationCompletedContextActor: TypeAlias = ( - ActionAuthenticationDeniedContextActor -) diff --git a/src/workos/common/models/vault_byok_key_verification_completed_context_actor_source.py b/src/workos/common/models/vault_byok_key_verification_completed_context_actor_source.py deleted file mode 100644 index 47462bd9..00000000 --- a/src/workos/common/models/vault_byok_key_verification_completed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultByokKeyVerificationCompletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultByokKeyVerificationCompletedContextActorSource"] diff --git a/src/workos/common/models/vault_byok_key_verification_completed_context_google_analytics_session.py b/src/workos/common/models/vault_byok_key_verification_completed_context_google_analytics_session.py deleted file mode 100644 index 1e69b2db..00000000 --- a/src/workos/common/models/vault_byok_key_verification_completed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultByokKeyVerificationCompletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_byok_key_verification_completed_data_key_provider.py b/src/workos/common/models/vault_byok_key_verification_completed_data_key_provider.py index 071842d9..c63ba21d 100644 --- a/src/workos/common/models/vault_byok_key_verification_completed_data_key_provider.py +++ b/src/workos/common/models/vault_byok_key_verification_completed_data_key_provider.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class VaultByokKeyVerificationCompletedDataKeyProvider(str, Enum): diff --git a/src/workos/common/models/vault_data_created_context.py b/src/workos/common/models/vault_data_created_context.py deleted file mode 100644 index cce87f06..00000000 --- a/src/workos/common/models/vault_data_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDataCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_data_created_context_actor.py b/src/workos/common/models/vault_data_created_context_actor.py deleted file mode 100644 index ef56f1b6..00000000 --- a/src/workos/common/models/vault_data_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDataCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_data_created_context_actor_source.py b/src/workos/common/models/vault_data_created_context_actor_source.py deleted file mode 100644 index 68e97cb6..00000000 --- a/src/workos/common/models/vault_data_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDataCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultDataCreatedContextActorSource"] diff --git a/src/workos/common/models/vault_data_created_context_google_analytics_session.py b/src/workos/common/models/vault_data_created_context_google_analytics_session.py deleted file mode 100644 index c970fefa..00000000 --- a/src/workos/common/models/vault_data_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDataCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_data_created_data_actor_source.py b/src/workos/common/models/vault_data_created_data_actor_source.py index e40ac1ce..94994e67 100644 --- a/src/workos/common/models/vault_data_created_data_actor_source.py +++ b/src/workos/common/models/vault_data_created_data_actor_source.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class VaultDataCreatedDataActorSource(str, Enum): diff --git a/src/workos/common/models/vault_data_deleted_context.py b/src/workos/common/models/vault_data_deleted_context.py deleted file mode 100644 index ae2ff2fb..00000000 --- a/src/workos/common/models/vault_data_deleted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDataDeletedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_data_deleted_context_actor.py b/src/workos/common/models/vault_data_deleted_context_actor.py deleted file mode 100644 index 33064b90..00000000 --- a/src/workos/common/models/vault_data_deleted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDataDeletedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_data_deleted_context_actor_source.py b/src/workos/common/models/vault_data_deleted_context_actor_source.py deleted file mode 100644 index f20d48e5..00000000 --- a/src/workos/common/models/vault_data_deleted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDataDeletedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultDataDeletedContextActorSource"] diff --git a/src/workos/common/models/vault_data_deleted_context_google_analytics_session.py b/src/workos/common/models/vault_data_deleted_context_google_analytics_session.py deleted file mode 100644 index 9373bebf..00000000 --- a/src/workos/common/models/vault_data_deleted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDataDeletedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_data_deleted_data_actor_source.py b/src/workos/common/models/vault_data_deleted_data_actor_source.py index ded7a9bf..dc0a2a00 100644 --- a/src/workos/common/models/vault_data_deleted_data_actor_source.py +++ b/src/workos/common/models/vault_data_deleted_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultDataDeletedDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_data_read_context.py b/src/workos/common/models/vault_data_read_context.py deleted file mode 100644 index ffbf7cb8..00000000 --- a/src/workos/common/models/vault_data_read_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDataReadContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_data_read_context_actor.py b/src/workos/common/models/vault_data_read_context_actor.py deleted file mode 100644 index c015c77f..00000000 --- a/src/workos/common/models/vault_data_read_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDataReadContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_data_read_context_actor_source.py b/src/workos/common/models/vault_data_read_context_actor_source.py deleted file mode 100644 index 80067964..00000000 --- a/src/workos/common/models/vault_data_read_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDataReadContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultDataReadContextActorSource"] diff --git a/src/workos/common/models/vault_data_read_context_google_analytics_session.py b/src/workos/common/models/vault_data_read_context_google_analytics_session.py deleted file mode 100644 index b25e173a..00000000 --- a/src/workos/common/models/vault_data_read_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDataReadContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_data_read_data_actor_source.py b/src/workos/common/models/vault_data_read_data_actor_source.py index e150ed5b..fc7ace57 100644 --- a/src/workos/common/models/vault_data_read_data_actor_source.py +++ b/src/workos/common/models/vault_data_read_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultDataReadDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_data_updated_context.py b/src/workos/common/models/vault_data_updated_context.py deleted file mode 100644 index 9aaa7e71..00000000 --- a/src/workos/common/models/vault_data_updated_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDataUpdatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_data_updated_context_actor.py b/src/workos/common/models/vault_data_updated_context_actor.py deleted file mode 100644 index 08488e06..00000000 --- a/src/workos/common/models/vault_data_updated_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDataUpdatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_data_updated_context_actor_source.py b/src/workos/common/models/vault_data_updated_context_actor_source.py deleted file mode 100644 index 56635dbb..00000000 --- a/src/workos/common/models/vault_data_updated_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDataUpdatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultDataUpdatedContextActorSource"] diff --git a/src/workos/common/models/vault_data_updated_context_google_analytics_session.py b/src/workos/common/models/vault_data_updated_context_google_analytics_session.py deleted file mode 100644 index 79f4c785..00000000 --- a/src/workos/common/models/vault_data_updated_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDataUpdatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_data_updated_data.py b/src/workos/common/models/vault_data_updated_data.py index 20a6f251..ae5925ef 100644 --- a/src/workos/common/models/vault_data_updated_data.py +++ b/src/workos/common/models/vault_data_updated_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data import VaultDataCreatedData VaultDataUpdatedData: TypeAlias = VaultDataCreatedData diff --git a/src/workos/common/models/vault_data_updated_data_actor_source.py b/src/workos/common/models/vault_data_updated_data_actor_source.py index dca5e9cb..2fd22456 100644 --- a/src/workos/common/models/vault_data_updated_data_actor_source.py +++ b/src/workos/common/models/vault_data_updated_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultDataUpdatedDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_dek_decrypted_context.py b/src/workos/common/models/vault_dek_decrypted_context.py deleted file mode 100644 index d9a6411a..00000000 --- a/src/workos/common/models/vault_dek_decrypted_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDekDecryptedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_dek_decrypted_context_actor.py b/src/workos/common/models/vault_dek_decrypted_context_actor.py deleted file mode 100644 index bfae9c4d..00000000 --- a/src/workos/common/models/vault_dek_decrypted_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDekDecryptedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_dek_decrypted_context_actor_source.py b/src/workos/common/models/vault_dek_decrypted_context_actor_source.py deleted file mode 100644 index 49131460..00000000 --- a/src/workos/common/models/vault_dek_decrypted_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDekDecryptedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultDekDecryptedContextActorSource"] diff --git a/src/workos/common/models/vault_dek_decrypted_context_google_analytics_session.py b/src/workos/common/models/vault_dek_decrypted_context_google_analytics_session.py deleted file mode 100644 index c973b901..00000000 --- a/src/workos/common/models/vault_dek_decrypted_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDekDecryptedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_dek_decrypted_data_actor_source.py b/src/workos/common/models/vault_dek_decrypted_data_actor_source.py index 6b7eb460..7682bea2 100644 --- a/src/workos/common/models/vault_dek_decrypted_data_actor_source.py +++ b/src/workos/common/models/vault_dek_decrypted_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultDekDecryptedDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_dek_read_context.py b/src/workos/common/models/vault_dek_read_context.py deleted file mode 100644 index 2f7695a4..00000000 --- a/src/workos/common/models/vault_dek_read_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultDekReadContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_dek_read_context_actor.py b/src/workos/common/models/vault_dek_read_context_actor.py deleted file mode 100644 index 1dce4291..00000000 --- a/src/workos/common/models/vault_dek_read_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultDekReadContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_dek_read_context_actor_source.py b/src/workos/common/models/vault_dek_read_context_actor_source.py deleted file mode 100644 index 57ef8253..00000000 --- a/src/workos/common/models/vault_dek_read_context_actor_source.py +++ /dev/null @@ -1,9 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultDekReadContextActorSource: TypeAlias = ActionAuthenticationDeniedContextActorSource -__all__ = ["VaultDekReadContextActorSource"] diff --git a/src/workos/common/models/vault_dek_read_context_google_analytics_session.py b/src/workos/common/models/vault_dek_read_context_google_analytics_session.py deleted file mode 100644 index 766bc5df..00000000 --- a/src/workos/common/models/vault_dek_read_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultDekReadContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_dek_read_data_actor_source.py b/src/workos/common/models/vault_dek_read_data_actor_source.py index d09673da..c7179390 100644 --- a/src/workos/common/models/vault_dek_read_data_actor_source.py +++ b/src/workos/common/models/vault_dek_read_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultDekReadDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_kek_created_context.py b/src/workos/common/models/vault_kek_created_context.py deleted file mode 100644 index d1805c9e..00000000 --- a/src/workos/common/models/vault_kek_created_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultKekCreatedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_kek_created_context_actor.py b/src/workos/common/models/vault_kek_created_context_actor.py deleted file mode 100644 index 8dd3130c..00000000 --- a/src/workos/common/models/vault_kek_created_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultKekCreatedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_kek_created_context_actor_source.py b/src/workos/common/models/vault_kek_created_context_actor_source.py deleted file mode 100644 index eb981277..00000000 --- a/src/workos/common/models/vault_kek_created_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultKekCreatedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultKekCreatedContextActorSource"] diff --git a/src/workos/common/models/vault_kek_created_context_google_analytics_session.py b/src/workos/common/models/vault_kek_created_context_google_analytics_session.py deleted file mode 100644 index d9cb5dd1..00000000 --- a/src/workos/common/models/vault_kek_created_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultKekCreatedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_kek_created_data_actor_source.py b/src/workos/common/models/vault_kek_created_data_actor_source.py index f21ef2ff..d073796b 100644 --- a/src/workos/common/models/vault_kek_created_data_actor_source.py +++ b/src/workos/common/models/vault_kek_created_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultKekCreatedDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_metadata_read_context.py b/src/workos/common/models/vault_metadata_read_context.py deleted file mode 100644 index 8f9333c3..00000000 --- a/src/workos/common/models/vault_metadata_read_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultMetadataReadContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_metadata_read_context_actor.py b/src/workos/common/models/vault_metadata_read_context_actor.py deleted file mode 100644 index 6e90ad62..00000000 --- a/src/workos/common/models/vault_metadata_read_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultMetadataReadContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_metadata_read_context_actor_source.py b/src/workos/common/models/vault_metadata_read_context_actor_source.py deleted file mode 100644 index 5ad6f696..00000000 --- a/src/workos/common/models/vault_metadata_read_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultMetadataReadContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultMetadataReadContextActorSource"] diff --git a/src/workos/common/models/vault_metadata_read_context_google_analytics_session.py b/src/workos/common/models/vault_metadata_read_context_google_analytics_session.py deleted file mode 100644 index 1f64e635..00000000 --- a/src/workos/common/models/vault_metadata_read_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultMetadataReadContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_metadata_read_data.py b/src/workos/common/models/vault_metadata_read_data.py index 1cd0100f..ebd7c2a2 100644 --- a/src/workos/common/models/vault_metadata_read_data.py +++ b/src/workos/common/models/vault_metadata_read_data.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_deleted_data import VaultDataDeletedData VaultMetadataReadData: TypeAlias = VaultDataDeletedData diff --git a/src/workos/common/models/vault_metadata_read_data_actor_source.py b/src/workos/common/models/vault_metadata_read_data_actor_source.py index ec87244d..68b9e7ab 100644 --- a/src/workos/common/models/vault_metadata_read_data_actor_source.py +++ b/src/workos/common/models/vault_metadata_read_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultMetadataReadDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/vault_names_listed_context.py b/src/workos/common/models/vault_names_listed_context.py deleted file mode 100644 index f49c9f27..00000000 --- a/src/workos/common/models/vault_names_listed_context.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context import ActionAuthenticationDeniedContext - -VaultNamesListedContext: TypeAlias = ActionAuthenticationDeniedContext diff --git a/src/workos/common/models/vault_names_listed_context_actor.py b/src/workos/common/models/vault_names_listed_context_actor.py deleted file mode 100644 index 251c53b3..00000000 --- a/src/workos/common/models/vault_names_listed_context_actor.py +++ /dev/null @@ -1,8 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor import ( - ActionAuthenticationDeniedContextActor, -) - -VaultNamesListedContextActor: TypeAlias = ActionAuthenticationDeniedContextActor diff --git a/src/workos/common/models/vault_names_listed_context_actor_source.py b/src/workos/common/models/vault_names_listed_context_actor_source.py deleted file mode 100644 index 0bf0b278..00000000 --- a/src/workos/common/models/vault_names_listed_context_actor_source.py +++ /dev/null @@ -1,11 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_actor_source import ( - ActionAuthenticationDeniedContextActorSource, -) - -VaultNamesListedContextActorSource: TypeAlias = ( - ActionAuthenticationDeniedContextActorSource -) -__all__ = ["VaultNamesListedContextActorSource"] diff --git a/src/workos/common/models/vault_names_listed_context_google_analytics_session.py b/src/workos/common/models/vault_names_listed_context_google_analytics_session.py deleted file mode 100644 index 0f2e529d..00000000 --- a/src/workos/common/models/vault_names_listed_context_google_analytics_session.py +++ /dev/null @@ -1,10 +0,0 @@ -# This file is auto-generated by oagen. Do not edit. - -from typing_extensions import TypeAlias -from .action_authentication_denied_context_google_analytics_session import ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession, -) - -VaultNamesListedContextGoogleAnalyticsSession: TypeAlias = ( - ActionAuthenticationDeniedContextGoogleAnalyticsSession -) diff --git a/src/workos/common/models/vault_names_listed_data_actor_source.py b/src/workos/common/models/vault_names_listed_data_actor_source.py index 6d0847dc..d9c436cb 100644 --- a/src/workos/common/models/vault_names_listed_data_actor_source.py +++ b/src/workos/common/models/vault_names_listed_data_actor_source.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .vault_data_created_data_actor_source import VaultDataCreatedDataActorSource VaultNamesListedDataActorSource: TypeAlias = VaultDataCreatedDataActorSource diff --git a/src/workos/common/models/webhook_endpoint_json_status.py b/src/workos/common/models/webhook_endpoint_json_status.py index e13510d6..e6739d4c 100644 --- a/src/workos/common/models/webhook_endpoint_json_status.py +++ b/src/workos/common/models/webhook_endpoint_json_status.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .update_webhook_endpoint_status import UpdateWebhookEndpointStatus WebhookEndpointJsonStatus: TypeAlias = UpdateWebhookEndpointStatus diff --git a/src/workos/common/models/widget_session_token_scopes.py b/src/workos/common/models/widget_session_token_scopes.py index 1b4116cb..ac8d3017 100644 --- a/src/workos/common/models/widget_session_token_scopes.py +++ b/src/workos/common/models/widget_session_token_scopes.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class WidgetSessionTokenScopes(str, Enum): diff --git a/src/workos/connect/models/applications_order.py b/src/workos/connect/models/applications_order.py index 8dfb1454..15ae48f3 100644 --- a/src/workos/connect/models/applications_order.py +++ b/src/workos/connect/models/applications_order.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ApplicationsOrder(str, Enum): diff --git a/src/workos/directory_sync/models/directories_order.py b/src/workos/directory_sync/models/directories_order.py index a3bf6f00..9b78ed24 100644 --- a/src/workos/directory_sync/models/directories_order.py +++ b/src/workos/directory_sync/models/directories_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder DirectoriesOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/directory_sync/models/directory_groups_order.py b/src/workos/directory_sync/models/directory_groups_order.py index 83bad3d0..35c06d3f 100644 --- a/src/workos/directory_sync/models/directory_groups_order.py +++ b/src/workos/directory_sync/models/directory_groups_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder DirectoryGroupsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/directory_sync/models/directory_user_with_groups_email.py b/src/workos/directory_sync/models/directory_user_with_groups_email.py index ac56830e..c48a47ff 100644 --- a/src/workos/directory_sync/models/directory_user_with_groups_email.py +++ b/src/workos/directory_sync/models/directory_user_with_groups_email.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.directory_user_email import DirectoryUserEmail DirectoryUserWithGroupsEmail: TypeAlias = DirectoryUserEmail diff --git a/src/workos/directory_sync/models/directory_users_order.py b/src/workos/directory_sync/models/directory_users_order.py index 336ae765..5409eaca 100644 --- a/src/workos/directory_sync/models/directory_users_order.py +++ b/src/workos/directory_sync/models/directory_users_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder DirectoryUsersOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/events/models/events_order.py b/src/workos/events/models/events_order.py index 42f8ad89..b272b239 100644 --- a/src/workos/events/models/events_order.py +++ b/src/workos/events/models/events_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder EventsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/feature_flags/models/feature_flags_order.py b/src/workos/feature_flags/models/feature_flags_order.py index bc60bf8a..52e0eb14 100644 --- a/src/workos/feature_flags/models/feature_flags_order.py +++ b/src/workos/feature_flags/models/feature_flags_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder FeatureFlagsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/feature_flags/models/flag.py b/src/workos/feature_flags/models/flag.py index 5f610135..cdb0f45c 100644 --- a/src/workos/feature_flags/models/flag.py +++ b/src/workos/feature_flags/models/flag.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .feature_flag import FeatureFlag Flag: TypeAlias = FeatureFlag diff --git a/src/workos/feature_flags/models/flag_owner.py b/src/workos/feature_flags/models/flag_owner.py index f36d0f2c..5ead8334 100644 --- a/src/workos/feature_flags/models/flag_owner.py +++ b/src/workos/feature_flags/models/flag_owner.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .feature_flag_owner import FeatureFlagOwner FlagOwner: TypeAlias = FeatureFlagOwner diff --git a/src/workos/feature_flags/models/organizations_feature_flags_order.py b/src/workos/feature_flags/models/organizations_feature_flags_order.py index 2fe59cd5..cfe72a19 100644 --- a/src/workos/feature_flags/models/organizations_feature_flags_order.py +++ b/src/workos/feature_flags/models/organizations_feature_flags_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder OrganizationsFeatureFlagsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/feature_flags/models/user_management_users_feature_flags_order.py b/src/workos/feature_flags/models/user_management_users_feature_flags_order.py index 4b609f7c..8ff0e415 100644 --- a/src/workos/feature_flags/models/user_management_users_feature_flags_order.py +++ b/src/workos/feature_flags/models/user_management_users_feature_flags_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementUsersFeatureFlagsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/multi_factor_auth/models/authentication_factor_sms.py b/src/workos/multi_factor_auth/models/authentication_factor_sms.py index fb53b232..47d152d7 100644 --- a/src/workos/multi_factor_auth/models/authentication_factor_sms.py +++ b/src/workos/multi_factor_auth/models/authentication_factor_sms.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authentication_factor_enrolled_sms import AuthenticationFactorEnrolledSms AuthenticationFactorSms: TypeAlias = AuthenticationFactorEnrolledSms diff --git a/src/workos/multi_factor_auth/models/user_management_multi_factor_authentication_order.py b/src/workos/multi_factor_auth/models/user_management_multi_factor_authentication_order.py index 2bb0b153..6113602c 100644 --- a/src/workos/multi_factor_auth/models/user_management_multi_factor_authentication_order.py +++ b/src/workos/multi_factor_auth/models/user_management_multi_factor_authentication_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementMultiFactorAuthenticationOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/organization_domains/models/organization_domain_stand_alone.py b/src/workos/organization_domains/models/organization_domain_stand_alone.py index ff896e64..e8c74715 100644 --- a/src/workos/organization_domains/models/organization_domain_stand_alone.py +++ b/src/workos/organization_domains/models/organization_domain_stand_alone.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_domain import OrganizationDomain OrganizationDomainStandAlone: TypeAlias = OrganizationDomain diff --git a/src/workos/organizations/models/organizations_order.py b/src/workos/organizations/models/organizations_order.py index 69229a6e..0fc8338e 100644 --- a/src/workos/organizations/models/organizations_order.py +++ b/src/workos/organizations/models/organizations_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder OrganizationsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/radar/models/radar_action.py b/src/workos/radar/models/radar_action.py index b145ec6b..7167dd11 100644 --- a/src/workos/radar/models/radar_action.py +++ b/src/workos/radar/models/radar_action.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class RadarAction(str, Enum): diff --git a/src/workos/radar/models/radar_standalone_update_radar_list_request.py b/src/workos/radar/models/radar_standalone_update_radar_list_request.py index a685a5bb..4719bbb8 100644 --- a/src/workos/radar/models/radar_standalone_update_radar_list_request.py +++ b/src/workos/radar/models/radar_standalone_update_radar_list_request.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .radar_standalone_delete_radar_list_entry_request import ( RadarStandaloneDeleteRadarListEntryRequest, ) diff --git a/src/workos/radar/models/radar_type.py b/src/workos/radar/models/radar_type.py index 7d7b3190..01d0df82 100644 --- a/src/workos/radar/models/radar_type.py +++ b/src/workos/radar/models/radar_type.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.radar_standalone_response_blocklist_type import ( RadarStandaloneResponseBlocklistType, ) diff --git a/src/workos/sso/models/connection_domain.py b/src/workos/sso/models/connection_domain.py index 117e84c3..96a4f53d 100644 --- a/src/workos/sso/models/connection_domain.py +++ b/src/workos/sso/models/connection_domain.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.connection_activated_data_domain import ( ConnectionActivatedDataDomain, ) diff --git a/src/workos/sso/models/connections_connection_type.py b/src/workos/sso/models/connections_connection_type.py index c99aa259..23a0c60f 100644 --- a/src/workos/sso/models/connections_connection_type.py +++ b/src/workos/sso/models/connections_connection_type.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class ConnectionsConnectionType(str, Enum): diff --git a/src/workos/sso/models/connections_order.py b/src/workos/sso/models/connections_order.py index 33e1e292..d7c89f0d 100644 --- a/src/workos/sso/models/connections_order.py +++ b/src/workos/sso/models/connections_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder ConnectionsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/sso/models/sso_provider.py b/src/workos/sso/models/sso_provider.py index 8ee73b03..218ffb60 100644 --- a/src/workos/sso/models/sso_provider.py +++ b/src/workos/sso/models/sso_provider.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class SSOProvider(str, Enum): diff --git a/src/workos/sso/models/sso_token_response_oauth_token.py b/src/workos/sso/models/sso_token_response_oauth_token.py index 55979fd2..ea90e36d 100644 --- a/src/workos/sso/models/sso_token_response_oauth_token.py +++ b/src/workos/sso/models/sso_token_response_oauth_token.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.user_management.models.authenticate_response_oauth_token import ( AuthenticateResponseOAuthToken, ) diff --git a/src/workos/user_management/models/confirm_email_change.py b/src/workos/user_management/models/confirm_email_change.py index 02e51581..de692cb5 100644 --- a/src/workos/user_management/models/confirm_email_change.py +++ b/src/workos/user_management/models/confirm_email_change.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.multi_factor_auth.models.authentication_challenges_verify_request import ( AuthenticationChallengesVerifyRequest, ) diff --git a/src/workos/user_management/models/email_change_confirmation_user.py b/src/workos/user_management/models/email_change_confirmation_user.py index 5ccaa942..a05f3ffd 100644 --- a/src/workos/user_management/models/email_change_confirmation_user.py +++ b/src/workos/user_management/models/email_change_confirmation_user.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .user import User EmailChangeConfirmationUser: TypeAlias = User diff --git a/src/workos/user_management/models/send_verification_email_response.py b/src/workos/user_management/models/send_verification_email_response.py index 32262a46..e1382dfb 100644 --- a/src/workos/user_management/models/send_verification_email_response.py +++ b/src/workos/user_management/models/send_verification_email_response.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .reset_password_response import ResetPasswordResponse SendVerificationEmailResponse: TypeAlias = ResetPasswordResponse diff --git a/src/workos/user_management/models/user_invite.py b/src/workos/user_management/models/user_invite.py index f384d705..529a74cc 100644 --- a/src/workos/user_management/models/user_invite.py +++ b/src/workos/user_management/models/user_invite.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .invitation import Invitation UserInvite: TypeAlias = Invitation diff --git a/src/workos/user_management/models/user_management_authentication_provider.py b/src/workos/user_management/models/user_management_authentication_provider.py index db92a977..02f6e901 100644 --- a/src/workos/user_management/models/user_management_authentication_provider.py +++ b/src/workos/user_management/models/user_management_authentication_provider.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class UserManagementAuthenticationProvider(str, Enum): diff --git a/src/workos/user_management/models/user_management_authentication_screen_hint.py b/src/workos/user_management/models/user_management_authentication_screen_hint.py index 986a4f32..857f793a 100644 --- a/src/workos/user_management/models/user_management_authentication_screen_hint.py +++ b/src/workos/user_management/models/user_management_authentication_screen_hint.py @@ -6,7 +6,7 @@ from enum import Enum from typing import Optional -from typing_extensions import Literal, TypeAlias +from typing import Literal, TypeAlias class UserManagementAuthenticationScreenHint(str, Enum): diff --git a/src/workos/user_management/models/user_management_invitations_order.py b/src/workos/user_management/models/user_management_invitations_order.py index 53d3e913..a33850b2 100644 --- a/src/workos/user_management/models/user_management_invitations_order.py +++ b/src/workos/user_management/models/user_management_invitations_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementInvitationsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/user_management/models/user_management_organization_membership_order.py b/src/workos/user_management/models/user_management_organization_membership_order.py index 1151f686..7f54ab09 100644 --- a/src/workos/user_management/models/user_management_organization_membership_order.py +++ b/src/workos/user_management/models/user_management_organization_membership_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementOrganizationMembershipOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/user_management/models/user_management_organization_membership_statuses.py b/src/workos/user_management/models/user_management_organization_membership_statuses.py index a66f8ae5..96e35b1f 100644 --- a/src/workos/user_management/models/user_management_organization_membership_statuses.py +++ b/src/workos/user_management/models/user_management_organization_membership_statuses.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.common.models.organization_membership_created_data_status import ( OrganizationMembershipCreatedDataStatus, ) diff --git a/src/workos/user_management/models/user_management_users_authorized_applications_order.py b/src/workos/user_management/models/user_management_users_authorized_applications_order.py index 4e6e2779..a4c0ef90 100644 --- a/src/workos/user_management/models/user_management_users_authorized_applications_order.py +++ b/src/workos/user_management/models/user_management_users_authorized_applications_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementUsersAuthorizedApplicationsOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/user_management/models/user_management_users_order.py b/src/workos/user_management/models/user_management_users_order.py index 1e11a65d..0e7922fa 100644 --- a/src/workos/user_management/models/user_management_users_order.py +++ b/src/workos/user_management/models/user_management_users_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder UserManagementUsersOrder: TypeAlias = ApplicationsOrder diff --git a/src/workos/user_management/models/user_organization_membership.py b/src/workos/user_management/models/user_organization_membership.py index 9c18f61b..d39cd352 100644 --- a/src/workos/user_management/models/user_organization_membership.py +++ b/src/workos/user_management/models/user_organization_membership.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .organization_membership import OrganizationMembership UserOrganizationMembership: TypeAlias = OrganizationMembership diff --git a/src/workos/user_management/models/user_sessions_impersonator.py b/src/workos/user_management/models/user_sessions_impersonator.py index 659a0b1c..8e9925ab 100644 --- a/src/workos/user_management/models/user_sessions_impersonator.py +++ b/src/workos/user_management/models/user_sessions_impersonator.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .authenticate_response_impersonator import AuthenticateResponseImpersonator UserSessionsImpersonator: TypeAlias = AuthenticateResponseImpersonator diff --git a/src/workos/user_management/models/verify_email_address.py b/src/workos/user_management/models/verify_email_address.py index 21157f2a..773b38e7 100644 --- a/src/workos/user_management/models/verify_email_address.py +++ b/src/workos/user_management/models/verify_email_address.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.multi_factor_auth.models.authentication_challenges_verify_request import ( AuthenticationChallengesVerifyRequest, ) diff --git a/src/workos/user_management/models/verify_email_response.py b/src/workos/user_management/models/verify_email_response.py index 2d5e2215..97c4e77c 100644 --- a/src/workos/user_management/models/verify_email_response.py +++ b/src/workos/user_management/models/verify_email_response.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from .reset_password_response import ResetPasswordResponse VerifyEmailResponse: TypeAlias = ResetPasswordResponse diff --git a/src/workos/webhooks/models/webhooks_order.py b/src/workos/webhooks/models/webhooks_order.py index 77e4ceb9..41161321 100644 --- a/src/workos/webhooks/models/webhooks_order.py +++ b/src/workos/webhooks/models/webhooks_order.py @@ -1,6 +1,6 @@ # This file is auto-generated by oagen. Do not edit. -from typing_extensions import TypeAlias +from typing import TypeAlias from workos.connect.models.applications_order import ApplicationsOrder WebhooksOrder: TypeAlias = ApplicationsOrder From 84de949c54c46a4c96e7667978da3e915c94f63b Mon Sep 17 00:00:00 2001 From: "Garen J. Torikian" Date: Mon, 13 Apr 2026 11:48:15 -0400 Subject: [PATCH 8/8] chore: adopt oagen manifest-based stale-file pruning Track every emitted path in `.oagen-manifest.json` so subsequent `oagen generate` runs can deterministically delete files that fall out of the IR, preventing the zombie accumulation that led to the prior 357-file cleanup. Deletion is header-guarded, so any hand-edited file that loses the auto-generated marker is preserved and reported. This is the first-adoption baseline; prune activates on the next regen. Co-Authored-By: Claude Opus 4.6 (1M context) --- .oagen-manifest.json | 1050 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1050 insertions(+) create mode 100644 .oagen-manifest.json diff --git a/.oagen-manifest.json b/.oagen-manifest.json new file mode 100644 index 00000000..f4f42b13 --- /dev/null +++ b/.oagen-manifest.json @@ -0,0 +1,1050 @@ +{ + "version": 1, + "language": "python", + "generatedAt": "2026-04-13T15:44:50.450Z", + "files": [ + "src/workos/_client.py", + "src/workos/admin_portal/__init__.py", + "src/workos/admin_portal/_resource.py", + "src/workos/admin_portal/models/__init__.py", + "src/workos/admin_portal/models/generate_link.py", + "src/workos/admin_portal/models/intent_options.py", + "src/workos/admin_portal/models/portal_link_response.py", + "src/workos/admin_portal/models/sso_intent_options.py", + "src/workos/api_keys/__init__.py", + "src/workos/api_keys/_resource.py", + "src/workos/api_keys/models/__init__.py", + "src/workos/api_keys/models/api_key.py", + "src/workos/api_keys/models/api_key_owner.py", + "src/workos/api_keys/models/api_key_validation_response.py", + "src/workos/api_keys/models/api_key_with_value.py", + "src/workos/api_keys/models/api_key_with_value_owner.py", + "src/workos/api_keys/models/create_organization_api_key.py", + "src/workos/api_keys/models/organizations_api_keys_order.py", + "src/workos/api_keys/models/validate_api_key.py", + "src/workos/audit_logs/__init__.py", + "src/workos/audit_logs/_resource.py", + "src/workos/audit_logs/models/__init__.py", + "src/workos/audit_logs/models/audit_log_action_json.py", + "src/workos/audit_logs/models/audit_log_event.py", + "src/workos/audit_logs/models/audit_log_event_actor.py", + "src/workos/audit_logs/models/audit_log_event_context.py", + "src/workos/audit_logs/models/audit_log_event_create_response.py", + "src/workos/audit_logs/models/audit_log_event_ingestion.py", + "src/workos/audit_logs/models/audit_log_event_target.py", + "src/workos/audit_logs/models/audit_log_export_creation.py", + "src/workos/audit_logs/models/audit_log_export_json.py", + "src/workos/audit_logs/models/audit_log_schema.py", + "src/workos/audit_logs/models/audit_log_schema_actor.py", + "src/workos/audit_logs/models/audit_log_schema_json.py", + "src/workos/audit_logs/models/audit_log_schema_json_actor.py", + "src/workos/audit_logs/models/audit_log_schema_json_target.py", + "src/workos/audit_logs/models/audit_log_schema_target.py", + "src/workos/audit_logs/models/audit_logs_order.py", + "src/workos/authorization/__init__.py", + "src/workos/authorization/_resource.py", + "src/workos/authorization/models/__init__.py", + "src/workos/authorization/models/add_role_permission.py", + "src/workos/authorization/models/assign_role.py", + "src/workos/authorization/models/authorization_assignment.py", + "src/workos/authorization/models/authorization_check.py", + "src/workos/authorization/models/authorization_order.py", + "src/workos/authorization/models/authorization_permission.py", + "src/workos/authorization/models/authorization_resource.py", + "src/workos/authorization/models/check_authorization.py", + "src/workos/authorization/models/create_authorization_permission.py", + "src/workos/authorization/models/create_authorization_resource.py", + "src/workos/authorization/models/create_organization_role.py", + "src/workos/authorization/models/create_role.py", + "src/workos/authorization/models/permission.py", + "src/workos/authorization/models/permissions_order.py", + "src/workos/authorization/models/remove_role.py", + "src/workos/authorization/models/role.py", + "src/workos/authorization/models/role_assignment.py", + "src/workos/authorization/models/role_assignment_resource.py", + "src/workos/authorization/models/role_list.py", + "src/workos/authorization/models/set_role_permissions.py", + "src/workos/authorization/models/slim_role.py", + "src/workos/authorization/models/update_authorization_permission.py", + "src/workos/authorization/models/update_authorization_resource.py", + "src/workos/authorization/models/update_organization_role.py", + "src/workos/authorization/models/update_role.py", + "src/workos/authorization/models/user_organization_membership_base_list_data.py", + "src/workos/common/__init__.py", + "src/workos/common/models/__init__.py", + "src/workos/common/models/action_authentication_denied.py", + "src/workos/common/models/action_authentication_denied_data.py", + "src/workos/common/models/action_user_registration_denied.py", + "src/workos/common/models/action_user_registration_denied_data.py", + "src/workos/common/models/api_key_created.py", + "src/workos/common/models/api_key_created_data.py", + "src/workos/common/models/api_key_created_data_owner.py", + "src/workos/common/models/api_key_revoked.py", + "src/workos/common/models/api_key_revoked_data.py", + "src/workos/common/models/api_key_revoked_data_owner.py", + "src/workos/common/models/audit_log_configuration_log_stream_state.py", + "src/workos/common/models/audit_log_configuration_log_stream_type.py", + "src/workos/common/models/audit_log_configuration_state.py", + "src/workos/common/models/audit_log_export_json_state.py", + "src/workos/common/models/authenticate_response_authentication_method.py", + "src/workos/common/models/authentication_email_verification_failed.py", + "src/workos/common/models/authentication_email_verification_failed_data.py", + "src/workos/common/models/authentication_email_verification_failed_data_error.py", + "src/workos/common/models/authentication_email_verification_succeeded.py", + "src/workos/common/models/authentication_email_verification_succeeded_data.py", + "src/workos/common/models/authentication_factor_enrolled_type.py", + "src/workos/common/models/authentication_factor_type.py", + "src/workos/common/models/authentication_factors_create_request_type.py", + "src/workos/common/models/authentication_magic_auth_failed.py", + "src/workos/common/models/authentication_magic_auth_failed_data.py", + "src/workos/common/models/authentication_magic_auth_failed_data_error.py", + "src/workos/common/models/authentication_magic_auth_succeeded.py", + "src/workos/common/models/authentication_magic_auth_succeeded_data.py", + "src/workos/common/models/authentication_mfa_failed.py", + "src/workos/common/models/authentication_mfa_failed_data.py", + "src/workos/common/models/authentication_mfa_failed_data_error.py", + "src/workos/common/models/authentication_mfa_succeeded.py", + "src/workos/common/models/authentication_mfa_succeeded_data.py", + "src/workos/common/models/authentication_oauth_failed.py", + "src/workos/common/models/authentication_oauth_failed_data.py", + "src/workos/common/models/authentication_oauth_failed_data_error.py", + "src/workos/common/models/authentication_oauth_succeeded.py", + "src/workos/common/models/authentication_oauth_succeeded_data.py", + "src/workos/common/models/authentication_passkey_failed.py", + "src/workos/common/models/authentication_passkey_failed_data.py", + "src/workos/common/models/authentication_passkey_failed_data_error.py", + "src/workos/common/models/authentication_passkey_succeeded.py", + "src/workos/common/models/authentication_passkey_succeeded_data.py", + "src/workos/common/models/authentication_password_failed.py", + "src/workos/common/models/authentication_password_failed_data.py", + "src/workos/common/models/authentication_password_failed_data_error.py", + "src/workos/common/models/authentication_password_succeeded.py", + "src/workos/common/models/authentication_password_succeeded_data.py", + "src/workos/common/models/authentication_radar_risk_detected.py", + "src/workos/common/models/authentication_radar_risk_detected_data.py", + "src/workos/common/models/authentication_radar_risk_detected_data_action.py", + "src/workos/common/models/authentication_sso_failed.py", + "src/workos/common/models/authentication_sso_failed_data.py", + "src/workos/common/models/authentication_sso_failed_data_error.py", + "src/workos/common/models/authentication_sso_failed_data_sso.py", + "src/workos/common/models/authentication_sso_started.py", + "src/workos/common/models/authentication_sso_started_data.py", + "src/workos/common/models/authentication_sso_started_data_sso.py", + "src/workos/common/models/authentication_sso_succeeded.py", + "src/workos/common/models/authentication_sso_succeeded_data.py", + "src/workos/common/models/authentication_sso_succeeded_data_sso.py", + "src/workos/common/models/authentication_sso_timed_out.py", + "src/workos/common/models/authentication_sso_timed_out_data.py", + "src/workos/common/models/authentication_sso_timed_out_data_error.py", + "src/workos/common/models/authentication_sso_timed_out_data_sso.py", + "src/workos/common/models/connected_account_state.py", + "src/workos/common/models/connection_activated.py", + "src/workos/common/models/connection_activated_data.py", + "src/workos/common/models/connection_activated_data_connection_type.py", + "src/workos/common/models/connection_activated_data_domain.py", + "src/workos/common/models/connection_activated_data_state.py", + "src/workos/common/models/connection_activated_data_status.py", + "src/workos/common/models/connection_deactivated.py", + "src/workos/common/models/connection_deactivated_data.py", + "src/workos/common/models/connection_deactivated_data_connection_type.py", + "src/workos/common/models/connection_deactivated_data_domain.py", + "src/workos/common/models/connection_deactivated_data_state.py", + "src/workos/common/models/connection_deactivated_data_status.py", + "src/workos/common/models/connection_deleted.py", + "src/workos/common/models/connection_deleted_data.py", + "src/workos/common/models/connection_deleted_data_connection_type.py", + "src/workos/common/models/connection_deleted_data_state.py", + "src/workos/common/models/connection_saml_certificate_renewal_required.py", + "src/workos/common/models/connection_saml_certificate_renewal_required_data.py", + "src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate.py", + "src/workos/common/models/connection_saml_certificate_renewal_required_data_certificate_certificate_type.py", + "src/workos/common/models/connection_saml_certificate_renewal_required_data_connection.py", + "src/workos/common/models/connection_saml_certificate_renewed.py", + "src/workos/common/models/connection_saml_certificate_renewed_data.py", + "src/workos/common/models/connection_saml_certificate_renewed_data_certificate.py", + "src/workos/common/models/connection_saml_certificate_renewed_data_certificate_certificate_type.py", + "src/workos/common/models/connection_saml_certificate_renewed_data_connection.py", + "src/workos/common/models/connection_state.py", + "src/workos/common/models/connection_status.py", + "src/workos/common/models/connection_type.py", + "src/workos/common/models/create_user_invite_options_locale.py", + "src/workos/common/models/create_user_password_hash_type.py", + "src/workos/common/models/create_webhook_endpoint_events.py", + "src/workos/common/models/data_integrations_list_response_data_connected_account_state.py", + "src/workos/common/models/data_integrations_list_response_data_ownership.py", + "src/workos/common/models/directory_state.py", + "src/workos/common/models/directory_type.py", + "src/workos/common/models/directory_user.py", + "src/workos/common/models/directory_user_email.py", + "src/workos/common/models/directory_user_state.py", + "src/workos/common/models/directory_user_with_groups_state.py", + "src/workos/common/models/dsync_activated.py", + "src/workos/common/models/dsync_activated_data.py", + "src/workos/common/models/dsync_activated_data_domain.py", + "src/workos/common/models/dsync_activated_data_state.py", + "src/workos/common/models/dsync_activated_data_type.py", + "src/workos/common/models/dsync_deactivated.py", + "src/workos/common/models/dsync_deactivated_data.py", + "src/workos/common/models/dsync_deactivated_data_domain.py", + "src/workos/common/models/dsync_deactivated_data_state.py", + "src/workos/common/models/dsync_deactivated_data_type.py", + "src/workos/common/models/dsync_deleted.py", + "src/workos/common/models/dsync_deleted_data.py", + "src/workos/common/models/dsync_deleted_data_state.py", + "src/workos/common/models/dsync_deleted_data_type.py", + "src/workos/common/models/dsync_group_created.py", + "src/workos/common/models/dsync_group_deleted.py", + "src/workos/common/models/dsync_group_updated.py", + "src/workos/common/models/dsync_group_updated_data.py", + "src/workos/common/models/dsync_group_user_added.py", + "src/workos/common/models/dsync_group_user_added_data.py", + "src/workos/common/models/dsync_group_user_removed.py", + "src/workos/common/models/dsync_group_user_removed_data.py", + "src/workos/common/models/dsync_user_created.py", + "src/workos/common/models/dsync_user_deleted.py", + "src/workos/common/models/dsync_user_updated.py", + "src/workos/common/models/dsync_user_updated_data.py", + "src/workos/common/models/dsync_user_updated_data_email.py", + "src/workos/common/models/dsync_user_updated_data_state.py", + "src/workos/common/models/email_verification_created.py", + "src/workos/common/models/email_verification_created_data.py", + "src/workos/common/models/event_context.py", + "src/workos/common/models/event_context_actor.py", + "src/workos/common/models/event_context_actor_source.py", + "src/workos/common/models/event_context_google_analytics_session.py", + "src/workos/common/models/flag_created.py", + "src/workos/common/models/flag_created_context.py", + "src/workos/common/models/flag_created_context_actor.py", + "src/workos/common/models/flag_created_context_actor_source.py", + "src/workos/common/models/flag_created_data.py", + "src/workos/common/models/flag_created_data_owner.py", + "src/workos/common/models/flag_deleted.py", + "src/workos/common/models/flag_deleted_context.py", + "src/workos/common/models/flag_deleted_context_actor.py", + "src/workos/common/models/flag_deleted_context_actor_source.py", + "src/workos/common/models/flag_deleted_data.py", + "src/workos/common/models/flag_deleted_data_owner.py", + "src/workos/common/models/flag_rule_updated.py", + "src/workos/common/models/flag_rule_updated_context.py", + "src/workos/common/models/flag_rule_updated_context_access_type.py", + "src/workos/common/models/flag_rule_updated_context_actor.py", + "src/workos/common/models/flag_rule_updated_context_actor_source.py", + "src/workos/common/models/flag_rule_updated_context_configured_target.py", + "src/workos/common/models/flag_rule_updated_context_configured_target_organization.py", + "src/workos/common/models/flag_rule_updated_context_configured_target_user.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_context.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_context_access_type.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_organization.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_context_configured_target_user.py", + "src/workos/common/models/flag_rule_updated_context_previous_attribute_data.py", + "src/workos/common/models/flag_rule_updated_data.py", + "src/workos/common/models/flag_rule_updated_data_owner.py", + "src/workos/common/models/flag_updated.py", + "src/workos/common/models/flag_updated_context.py", + "src/workos/common/models/flag_updated_context_actor.py", + "src/workos/common/models/flag_updated_context_actor_source.py", + "src/workos/common/models/flag_updated_context_previous_attribute.py", + "src/workos/common/models/flag_updated_context_previous_attribute_data.py", + "src/workos/common/models/flag_updated_data.py", + "src/workos/common/models/flag_updated_data_owner.py", + "src/workos/common/models/generate_link_intent.py", + "src/workos/common/models/invitation_accepted.py", + "src/workos/common/models/invitation_accepted_data.py", + "src/workos/common/models/invitation_accepted_data_state.py", + "src/workos/common/models/invitation_created.py", + "src/workos/common/models/invitation_created_data.py", + "src/workos/common/models/invitation_created_data_state.py", + "src/workos/common/models/invitation_resent.py", + "src/workos/common/models/invitation_resent_data.py", + "src/workos/common/models/invitation_resent_data_state.py", + "src/workos/common/models/invitation_revoked.py", + "src/workos/common/models/invitation_revoked_data.py", + "src/workos/common/models/invitation_revoked_data_state.py", + "src/workos/common/models/invitation_state.py", + "src/workos/common/models/magic_auth_created.py", + "src/workos/common/models/magic_auth_created_data.py", + "src/workos/common/models/organization_created.py", + "src/workos/common/models/organization_created_data.py", + "src/workos/common/models/organization_created_data_domain.py", + "src/workos/common/models/organization_created_data_domain_state.py", + "src/workos/common/models/organization_created_data_domain_verification_strategy.py", + "src/workos/common/models/organization_deleted.py", + "src/workos/common/models/organization_deleted_data.py", + "src/workos/common/models/organization_deleted_data_domain.py", + "src/workos/common/models/organization_deleted_data_domain_state.py", + "src/workos/common/models/organization_deleted_data_domain_verification_strategy.py", + "src/workos/common/models/organization_domain_created.py", + "src/workos/common/models/organization_domain_created_data.py", + "src/workos/common/models/organization_domain_created_data_state.py", + "src/workos/common/models/organization_domain_created_data_verification_strategy.py", + "src/workos/common/models/organization_domain_data_state.py", + "src/workos/common/models/organization_domain_deleted.py", + "src/workos/common/models/organization_domain_deleted_data.py", + "src/workos/common/models/organization_domain_deleted_data_state.py", + "src/workos/common/models/organization_domain_deleted_data_verification_strategy.py", + "src/workos/common/models/organization_domain_stand_alone_state.py", + "src/workos/common/models/organization_domain_stand_alone_verification_strategy.py", + "src/workos/common/models/organization_domain_state.py", + "src/workos/common/models/organization_domain_updated.py", + "src/workos/common/models/organization_domain_updated_data.py", + "src/workos/common/models/organization_domain_updated_data_state.py", + "src/workos/common/models/organization_domain_updated_data_verification_strategy.py", + "src/workos/common/models/organization_domain_verification_failed.py", + "src/workos/common/models/organization_domain_verification_failed_data.py", + "src/workos/common/models/organization_domain_verification_failed_data_organization_domain.py", + "src/workos/common/models/organization_domain_verification_failed_data_organization_domain_state.py", + "src/workos/common/models/organization_domain_verification_failed_data_organization_domain_verification_strategy.py", + "src/workos/common/models/organization_domain_verification_failed_data_reason.py", + "src/workos/common/models/organization_domain_verification_strategy.py", + "src/workos/common/models/organization_domain_verified.py", + "src/workos/common/models/organization_domain_verified_data.py", + "src/workos/common/models/organization_domain_verified_data_state.py", + "src/workos/common/models/organization_domain_verified_data_verification_strategy.py", + "src/workos/common/models/organization_membership_created.py", + "src/workos/common/models/organization_membership_created_data.py", + "src/workos/common/models/organization_membership_created_data_status.py", + "src/workos/common/models/organization_membership_deleted.py", + "src/workos/common/models/organization_membership_deleted_data.py", + "src/workos/common/models/organization_membership_deleted_data_status.py", + "src/workos/common/models/organization_membership_status.py", + "src/workos/common/models/organization_membership_updated.py", + "src/workos/common/models/organization_membership_updated_data.py", + "src/workos/common/models/organization_membership_updated_data_status.py", + "src/workos/common/models/organization_role_created.py", + "src/workos/common/models/organization_role_created_data.py", + "src/workos/common/models/organization_role_deleted.py", + "src/workos/common/models/organization_role_deleted_data.py", + "src/workos/common/models/organization_role_updated.py", + "src/workos/common/models/organization_role_updated_data.py", + "src/workos/common/models/organization_updated.py", + "src/workos/common/models/organization_updated_data.py", + "src/workos/common/models/organization_updated_data_domain.py", + "src/workos/common/models/organization_updated_data_domain_state.py", + "src/workos/common/models/organization_updated_data_domain_verification_strategy.py", + "src/workos/common/models/password_reset_created.py", + "src/workos/common/models/password_reset_created_data.py", + "src/workos/common/models/password_reset_succeeded.py", + "src/workos/common/models/password_reset_succeeded_data.py", + "src/workos/common/models/permission_created.py", + "src/workos/common/models/permission_created_data.py", + "src/workos/common/models/permission_deleted.py", + "src/workos/common/models/permission_deleted_data.py", + "src/workos/common/models/permission_updated.py", + "src/workos/common/models/permission_updated_data.py", + "src/workos/common/models/profile_connection_type.py", + "src/workos/common/models/radar_standalone_assess_request_action.py", + "src/workos/common/models/radar_standalone_assess_request_auth_method.py", + "src/workos/common/models/radar_standalone_response_blocklist_type.py", + "src/workos/common/models/radar_standalone_response_control.py", + "src/workos/common/models/radar_standalone_response_verdict.py", + "src/workos/common/models/resend_user_invite_options_locale.py", + "src/workos/common/models/role_created.py", + "src/workos/common/models/role_created_data.py", + "src/workos/common/models/role_deleted.py", + "src/workos/common/models/role_deleted_data.py", + "src/workos/common/models/role_type.py", + "src/workos/common/models/role_updated.py", + "src/workos/common/models/role_updated_data.py", + "src/workos/common/models/session_created.py", + "src/workos/common/models/session_created_data.py", + "src/workos/common/models/session_created_data_auth_method.py", + "src/workos/common/models/session_created_data_impersonator.py", + "src/workos/common/models/session_created_data_status.py", + "src/workos/common/models/session_revoked.py", + "src/workos/common/models/session_revoked_data.py", + "src/workos/common/models/session_revoked_data_auth_method.py", + "src/workos/common/models/session_revoked_data_impersonator.py", + "src/workos/common/models/session_revoked_data_status.py", + "src/workos/common/models/update_user_password_hash_type.py", + "src/workos/common/models/update_webhook_endpoint_events.py", + "src/workos/common/models/update_webhook_endpoint_status.py", + "src/workos/common/models/user_created.py", + "src/workos/common/models/user_deleted.py", + "src/workos/common/models/user_identities_get_item_provider.py", + "src/workos/common/models/user_invite_state.py", + "src/workos/common/models/user_organization_membership_base_list_data_status.py", + "src/workos/common/models/user_organization_membership_status.py", + "src/workos/common/models/user_sessions_auth_method.py", + "src/workos/common/models/user_sessions_status.py", + "src/workos/common/models/user_updated.py", + "src/workos/common/models/vault_byok_key_verification_completed.py", + "src/workos/common/models/vault_byok_key_verification_completed_data.py", + "src/workos/common/models/vault_byok_key_verification_completed_data_key_provider.py", + "src/workos/common/models/vault_data_created.py", + "src/workos/common/models/vault_data_created_data.py", + "src/workos/common/models/vault_data_created_data_actor_source.py", + "src/workos/common/models/vault_data_deleted.py", + "src/workos/common/models/vault_data_deleted_data.py", + "src/workos/common/models/vault_data_deleted_data_actor_source.py", + "src/workos/common/models/vault_data_read.py", + "src/workos/common/models/vault_data_read_data.py", + "src/workos/common/models/vault_data_read_data_actor_source.py", + "src/workos/common/models/vault_data_updated.py", + "src/workos/common/models/vault_data_updated_data.py", + "src/workos/common/models/vault_data_updated_data_actor_source.py", + "src/workos/common/models/vault_dek_decrypted.py", + "src/workos/common/models/vault_dek_decrypted_data.py", + "src/workos/common/models/vault_dek_decrypted_data_actor_source.py", + "src/workos/common/models/vault_dek_read.py", + "src/workos/common/models/vault_dek_read_data.py", + "src/workos/common/models/vault_dek_read_data_actor_source.py", + "src/workos/common/models/vault_kek_created.py", + "src/workos/common/models/vault_kek_created_data.py", + "src/workos/common/models/vault_kek_created_data_actor_source.py", + "src/workos/common/models/vault_metadata_read.py", + "src/workos/common/models/vault_metadata_read_data.py", + "src/workos/common/models/vault_metadata_read_data_actor_source.py", + "src/workos/common/models/vault_names_listed.py", + "src/workos/common/models/vault_names_listed_data.py", + "src/workos/common/models/vault_names_listed_data_actor_source.py", + "src/workos/common/models/webhook_endpoint_json_status.py", + "src/workos/common/models/widget_session_token_scopes.py", + "src/workos/connect/__init__.py", + "src/workos/connect/_resource.py", + "src/workos/connect/models/__init__.py", + "src/workos/connect/models/application_credentials_list_item.py", + "src/workos/connect/models/applications_order.py", + "src/workos/connect/models/connect_application.py", + "src/workos/connect/models/create_application_secret.py", + "src/workos/connect/models/create_m2m_application.py", + "src/workos/connect/models/create_oauth_application.py", + "src/workos/connect/models/external_auth_complete_response.py", + "src/workos/connect/models/new_connect_application_secret.py", + "src/workos/connect/models/redirect_uri_input.py", + "src/workos/connect/models/update_oauth_application.py", + "src/workos/connect/models/user_consent_option.py", + "src/workos/connect/models/user_consent_option_choice.py", + "src/workos/connect/models/user_management_login_request.py", + "src/workos/connect/models/user_object.py", + "src/workos/directory_sync/__init__.py", + "src/workos/directory_sync/_resource.py", + "src/workos/directory_sync/models/__init__.py", + "src/workos/directory_sync/models/directories_order.py", + "src/workos/directory_sync/models/directory.py", + "src/workos/directory_sync/models/directory_group.py", + "src/workos/directory_sync/models/directory_groups_order.py", + "src/workos/directory_sync/models/directory_metadata.py", + "src/workos/directory_sync/models/directory_metadata_user.py", + "src/workos/directory_sync/models/directory_user_with_groups.py", + "src/workos/directory_sync/models/directory_user_with_groups_email.py", + "src/workos/directory_sync/models/directory_users_order.py", + "src/workos/events/__init__.py", + "src/workos/events/_resource.py", + "src/workos/events/models/__init__.py", + "src/workos/events/models/event_list_list_metadata.py", + "src/workos/events/models/event_schema.py", + "src/workos/events/models/events_order.py", + "src/workos/feature_flags/__init__.py", + "src/workos/feature_flags/_resource.py", + "src/workos/feature_flags/models/__init__.py", + "src/workos/feature_flags/models/feature_flag.py", + "src/workos/feature_flags/models/feature_flag_owner.py", + "src/workos/feature_flags/models/feature_flags_order.py", + "src/workos/feature_flags/models/flag.py", + "src/workos/feature_flags/models/flag_owner.py", + "src/workos/feature_flags/models/organizations_feature_flags_order.py", + "src/workos/feature_flags/models/user_management_users_feature_flags_order.py", + "src/workos/multi_factor_auth/__init__.py", + "src/workos/multi_factor_auth/_resource.py", + "src/workos/multi_factor_auth/models/__init__.py", + "src/workos/multi_factor_auth/models/authentication_challenge.py", + "src/workos/multi_factor_auth/models/authentication_challenge_verify_response.py", + "src/workos/multi_factor_auth/models/authentication_challenges_verify_request.py", + "src/workos/multi_factor_auth/models/authentication_factor.py", + "src/workos/multi_factor_auth/models/authentication_factor_enrolled.py", + "src/workos/multi_factor_auth/models/authentication_factor_enrolled_sms.py", + "src/workos/multi_factor_auth/models/authentication_factor_enrolled_totp.py", + "src/workos/multi_factor_auth/models/authentication_factor_sms.py", + "src/workos/multi_factor_auth/models/authentication_factor_totp.py", + "src/workos/multi_factor_auth/models/authentication_factors_create_request.py", + "src/workos/multi_factor_auth/models/challenge_authentication_factor.py", + "src/workos/multi_factor_auth/models/enroll_user_authentication_factor.py", + "src/workos/multi_factor_auth/models/user_authentication_factor_enroll_response.py", + "src/workos/multi_factor_auth/models/user_management_multi_factor_authentication_order.py", + "src/workos/organization_domains/__init__.py", + "src/workos/organization_domains/_resource.py", + "src/workos/organization_domains/models/__init__.py", + "src/workos/organization_domains/models/create_organization_domain.py", + "src/workos/organization_domains/models/organization_domain.py", + "src/workos/organization_domains/models/organization_domain_stand_alone.py", + "src/workos/organizations/__init__.py", + "src/workos/organizations/_resource.py", + "src/workos/organizations/models/__init__.py", + "src/workos/organizations/models/audit_log_configuration.py", + "src/workos/organizations/models/audit_log_configuration_log_stream.py", + "src/workos/organizations/models/audit_logs_retention_json.py", + "src/workos/organizations/models/organization.py", + "src/workos/organizations/models/organization_domain_data.py", + "src/workos/organizations/models/organization_input.py", + "src/workos/organizations/models/organizations_order.py", + "src/workos/organizations/models/update_audit_logs_retention.py", + "src/workos/organizations/models/update_organization.py", + "src/workos/pipes/__init__.py", + "src/workos/pipes/_resource.py", + "src/workos/pipes/models/__init__.py", + "src/workos/pipes/models/connected_account.py", + "src/workos/pipes/models/data_integration_access_token_response.py", + "src/workos/pipes/models/data_integration_authorize_url_response.py", + "src/workos/pipes/models/data_integrations_get_data_integration_authorize_url_request.py", + "src/workos/pipes/models/data_integrations_get_user_token_request.py", + "src/workos/pipes/models/data_integrations_list_response.py", + "src/workos/pipes/models/data_integrations_list_response_data.py", + "src/workos/pipes/models/data_integrations_list_response_data_connected_account.py", + "src/workos/radar/__init__.py", + "src/workos/radar/_resource.py", + "src/workos/radar/models/__init__.py", + "src/workos/radar/models/radar_action.py", + "src/workos/radar/models/radar_list_entry_already_present_response.py", + "src/workos/radar/models/radar_standalone_assess_request.py", + "src/workos/radar/models/radar_standalone_delete_radar_list_entry_request.py", + "src/workos/radar/models/radar_standalone_response.py", + "src/workos/radar/models/radar_standalone_update_radar_attempt_request.py", + "src/workos/radar/models/radar_standalone_update_radar_list_request.py", + "src/workos/radar/models/radar_type.py", + "src/workos/sso/__init__.py", + "src/workos/sso/_resource.py", + "src/workos/sso/models/__init__.py", + "src/workos/sso/models/connection.py", + "src/workos/sso/models/connection_domain.py", + "src/workos/sso/models/connection_option.py", + "src/workos/sso/models/connections_connection_type.py", + "src/workos/sso/models/connections_order.py", + "src/workos/sso/models/profile.py", + "src/workos/sso/models/sso_authorize_url_response.py", + "src/workos/sso/models/sso_logout_authorize_request.py", + "src/workos/sso/models/sso_logout_authorize_response.py", + "src/workos/sso/models/sso_provider.py", + "src/workos/sso/models/sso_token_response.py", + "src/workos/sso/models/sso_token_response_oauth_token.py", + "src/workos/sso/models/token_query.py", + "src/workos/types/__init__.py", + "src/workos/types/admin_portal/__init__.py", + "src/workos/types/api_keys/__init__.py", + "src/workos/types/audit_logs/__init__.py", + "src/workos/types/authorization/__init__.py", + "src/workos/types/connect/__init__.py", + "src/workos/types/directory_sync/__init__.py", + "src/workos/types/events/__init__.py", + "src/workos/types/feature_flags/__init__.py", + "src/workos/types/multi_factor_auth/__init__.py", + "src/workos/types/organization_domains/__init__.py", + "src/workos/types/organizations/__init__.py", + "src/workos/types/pipes/__init__.py", + "src/workos/types/radar/__init__.py", + "src/workos/types/sso/__init__.py", + "src/workos/types/user_management/__init__.py", + "src/workos/types/webhooks/__init__.py", + "src/workos/types/widgets/__init__.py", + "src/workos/user_management/__init__.py", + "src/workos/user_management/_resource.py", + "src/workos/user_management/models/__init__.py", + "src/workos/user_management/models/authenticate_response.py", + "src/workos/user_management/models/authenticate_response_impersonator.py", + "src/workos/user_management/models/authenticate_response_oauth_token.py", + "src/workos/user_management/models/authorization_code_session_authenticate_request.py", + "src/workos/user_management/models/authorized_connect_application_list_data.py", + "src/workos/user_management/models/confirm_email_change.py", + "src/workos/user_management/models/cors_origin_response.py", + "src/workos/user_management/models/create_cors_origin.py", + "src/workos/user_management/models/create_magic_code_and_return.py", + "src/workos/user_management/models/create_password_reset.py", + "src/workos/user_management/models/create_password_reset_token.py", + "src/workos/user_management/models/create_redirect_uri.py", + "src/workos/user_management/models/create_user.py", + "src/workos/user_management/models/create_user_invite_options.py", + "src/workos/user_management/models/create_user_organization_membership.py", + "src/workos/user_management/models/device_authorization_response.py", + "src/workos/user_management/models/device_code_session_authenticate_request.py", + "src/workos/user_management/models/email_change.py", + "src/workos/user_management/models/email_change_confirmation.py", + "src/workos/user_management/models/email_change_confirmation_user.py", + "src/workos/user_management/models/email_verification.py", + "src/workos/user_management/models/email_verification_code_session_authenticate_request.py", + "src/workos/user_management/models/invitation.py", + "src/workos/user_management/models/jwks_response.py", + "src/workos/user_management/models/jwks_response_keys.py", + "src/workos/user_management/models/jwt_template_response.py", + "src/workos/user_management/models/magic_auth.py", + "src/workos/user_management/models/magic_auth_code_session_authenticate_request.py", + "src/workos/user_management/models/mfa_totp_session_authenticate_request.py", + "src/workos/user_management/models/organization_membership.py", + "src/workos/user_management/models/organization_selection_session_authenticate_request.py", + "src/workos/user_management/models/password_reset.py", + "src/workos/user_management/models/password_session_authenticate_request.py", + "src/workos/user_management/models/redirect_uri.py", + "src/workos/user_management/models/refresh_token_session_authenticate_request.py", + "src/workos/user_management/models/resend_user_invite_options.py", + "src/workos/user_management/models/reset_password_response.py", + "src/workos/user_management/models/revoke_session.py", + "src/workos/user_management/models/send_email_change.py", + "src/workos/user_management/models/send_verification_email_response.py", + "src/workos/user_management/models/sso_device_authorization_request.py", + "src/workos/user_management/models/update_jwt_template.py", + "src/workos/user_management/models/update_user.py", + "src/workos/user_management/models/update_user_organization_membership.py", + "src/workos/user_management/models/user.py", + "src/workos/user_management/models/user_identities_get_item.py", + "src/workos/user_management/models/user_invite.py", + "src/workos/user_management/models/user_management_authentication_provider.py", + "src/workos/user_management/models/user_management_authentication_screen_hint.py", + "src/workos/user_management/models/user_management_invitations_order.py", + "src/workos/user_management/models/user_management_organization_membership_order.py", + "src/workos/user_management/models/user_management_organization_membership_statuses.py", + "src/workos/user_management/models/user_management_users_authorized_applications_order.py", + "src/workos/user_management/models/user_management_users_order.py", + "src/workos/user_management/models/user_organization_membership.py", + "src/workos/user_management/models/user_sessions_impersonator.py", + "src/workos/user_management/models/user_sessions_list_item.py", + "src/workos/user_management/models/verify_email_address.py", + "src/workos/user_management/models/verify_email_response.py", + "src/workos/webhooks/__init__.py", + "src/workos/webhooks/_resource.py", + "src/workos/webhooks/models/__init__.py", + "src/workos/webhooks/models/create_webhook_endpoint.py", + "src/workos/webhooks/models/update_webhook_endpoint.py", + "src/workos/webhooks/models/webhook_endpoint_json.py", + "src/workos/webhooks/models/webhooks_order.py", + "src/workos/widgets/__init__.py", + "src/workos/widgets/_resource.py", + "src/workos/widgets/models/__init__.py", + "src/workos/widgets/models/widget_session_token.py", + "src/workos/widgets/models/widget_session_token_response.py", + "tests/fixtures/action_authentication_denied.json", + "tests/fixtures/action_authentication_denied_data.json", + "tests/fixtures/action_user_registration_denied.json", + "tests/fixtures/action_user_registration_denied_data.json", + "tests/fixtures/add_role_permission.json", + "tests/fixtures/api_key.json", + "tests/fixtures/api_key_created.json", + "tests/fixtures/api_key_created_data.json", + "tests/fixtures/api_key_created_data_owner.json", + "tests/fixtures/api_key_owner.json", + "tests/fixtures/api_key_revoked.json", + "tests/fixtures/api_key_revoked_data.json", + "tests/fixtures/api_key_revoked_data_owner.json", + "tests/fixtures/api_key_validation_response.json", + "tests/fixtures/api_key_with_value.json", + "tests/fixtures/api_key_with_value_owner.json", + "tests/fixtures/application_credentials_list_item.json", + "tests/fixtures/assign_role.json", + "tests/fixtures/audit_log_action_json.json", + "tests/fixtures/audit_log_configuration.json", + "tests/fixtures/audit_log_configuration_log_stream.json", + "tests/fixtures/audit_log_event.json", + "tests/fixtures/audit_log_event_actor.json", + "tests/fixtures/audit_log_event_context.json", + "tests/fixtures/audit_log_event_create_response.json", + "tests/fixtures/audit_log_event_ingestion.json", + "tests/fixtures/audit_log_event_target.json", + "tests/fixtures/audit_log_export_creation.json", + "tests/fixtures/audit_log_export_json.json", + "tests/fixtures/audit_log_schema.json", + "tests/fixtures/audit_log_schema_actor.json", + "tests/fixtures/audit_log_schema_json.json", + "tests/fixtures/audit_log_schema_json_actor.json", + "tests/fixtures/audit_log_schema_json_target.json", + "tests/fixtures/audit_log_schema_target.json", + "tests/fixtures/audit_logs_retention_json.json", + "tests/fixtures/authenticate_response.json", + "tests/fixtures/authenticate_response_impersonator.json", + "tests/fixtures/authenticate_response_oauth_token.json", + "tests/fixtures/authentication_challenge.json", + "tests/fixtures/authentication_challenge_verify_response.json", + "tests/fixtures/authentication_challenges_verify_request.json", + "tests/fixtures/authentication_email_verification_failed.json", + "tests/fixtures/authentication_email_verification_failed_data.json", + "tests/fixtures/authentication_email_verification_failed_data_error.json", + "tests/fixtures/authentication_email_verification_succeeded.json", + "tests/fixtures/authentication_email_verification_succeeded_data.json", + "tests/fixtures/authentication_factor.json", + "tests/fixtures/authentication_factor_enrolled.json", + "tests/fixtures/authentication_factor_enrolled_sms.json", + "tests/fixtures/authentication_factor_enrolled_totp.json", + "tests/fixtures/authentication_factor_sms.json", + "tests/fixtures/authentication_factor_totp.json", + "tests/fixtures/authentication_factors_create_request.json", + "tests/fixtures/authentication_magic_auth_failed.json", + "tests/fixtures/authentication_magic_auth_failed_data.json", + "tests/fixtures/authentication_magic_auth_failed_data_error.json", + "tests/fixtures/authentication_magic_auth_succeeded.json", + "tests/fixtures/authentication_magic_auth_succeeded_data.json", + "tests/fixtures/authentication_mfa_failed.json", + "tests/fixtures/authentication_mfa_failed_data.json", + "tests/fixtures/authentication_mfa_failed_data_error.json", + "tests/fixtures/authentication_mfa_succeeded.json", + "tests/fixtures/authentication_mfa_succeeded_data.json", + "tests/fixtures/authentication_oauth_failed.json", + "tests/fixtures/authentication_oauth_failed_data.json", + "tests/fixtures/authentication_oauth_failed_data_error.json", + "tests/fixtures/authentication_oauth_succeeded.json", + "tests/fixtures/authentication_oauth_succeeded_data.json", + "tests/fixtures/authentication_passkey_failed.json", + "tests/fixtures/authentication_passkey_failed_data.json", + "tests/fixtures/authentication_passkey_failed_data_error.json", + "tests/fixtures/authentication_passkey_succeeded.json", + "tests/fixtures/authentication_passkey_succeeded_data.json", + "tests/fixtures/authentication_password_failed.json", + "tests/fixtures/authentication_password_failed_data.json", + "tests/fixtures/authentication_password_failed_data_error.json", + "tests/fixtures/authentication_password_succeeded.json", + "tests/fixtures/authentication_password_succeeded_data.json", + "tests/fixtures/authentication_radar_risk_detected.json", + "tests/fixtures/authentication_radar_risk_detected_data.json", + "tests/fixtures/authentication_sso_failed.json", + "tests/fixtures/authentication_sso_failed_data.json", + "tests/fixtures/authentication_sso_failed_data_error.json", + "tests/fixtures/authentication_sso_failed_data_sso.json", + "tests/fixtures/authentication_sso_started.json", + "tests/fixtures/authentication_sso_started_data.json", + "tests/fixtures/authentication_sso_started_data_sso.json", + "tests/fixtures/authentication_sso_succeeded.json", + "tests/fixtures/authentication_sso_succeeded_data.json", + "tests/fixtures/authentication_sso_succeeded_data_sso.json", + "tests/fixtures/authentication_sso_timed_out.json", + "tests/fixtures/authentication_sso_timed_out_data.json", + "tests/fixtures/authentication_sso_timed_out_data_error.json", + "tests/fixtures/authentication_sso_timed_out_data_sso.json", + "tests/fixtures/authorization_check.json", + "tests/fixtures/authorization_code_session_authenticate_request.json", + "tests/fixtures/authorization_permission.json", + "tests/fixtures/authorization_resource.json", + "tests/fixtures/authorized_connect_application_list_data.json", + "tests/fixtures/challenge_authentication_factor.json", + "tests/fixtures/check_authorization.json", + "tests/fixtures/confirm_email_change.json", + "tests/fixtures/connect_application.json", + "tests/fixtures/connected_account.json", + "tests/fixtures/connection.json", + "tests/fixtures/connection_activated.json", + "tests/fixtures/connection_activated_data.json", + "tests/fixtures/connection_activated_data_domain.json", + "tests/fixtures/connection_deactivated.json", + "tests/fixtures/connection_deactivated_data.json", + "tests/fixtures/connection_deactivated_data_domain.json", + "tests/fixtures/connection_deleted.json", + "tests/fixtures/connection_deleted_data.json", + "tests/fixtures/connection_domain.json", + "tests/fixtures/connection_option.json", + "tests/fixtures/connection_saml_certificate_renewal_required.json", + "tests/fixtures/connection_saml_certificate_renewal_required_data.json", + "tests/fixtures/connection_saml_certificate_renewal_required_data_certificate.json", + "tests/fixtures/connection_saml_certificate_renewal_required_data_connection.json", + "tests/fixtures/connection_saml_certificate_renewed.json", + "tests/fixtures/connection_saml_certificate_renewed_data.json", + "tests/fixtures/connection_saml_certificate_renewed_data_certificate.json", + "tests/fixtures/connection_saml_certificate_renewed_data_connection.json", + "tests/fixtures/cors_origin_response.json", + "tests/fixtures/create_authorization_permission.json", + "tests/fixtures/create_authorization_resource.json", + "tests/fixtures/create_cors_origin.json", + "tests/fixtures/create_m2m_application.json", + "tests/fixtures/create_magic_code_and_return.json", + "tests/fixtures/create_oauth_application.json", + "tests/fixtures/create_organization_api_key.json", + "tests/fixtures/create_organization_domain.json", + "tests/fixtures/create_organization_role.json", + "tests/fixtures/create_password_reset.json", + "tests/fixtures/create_password_reset_token.json", + "tests/fixtures/create_redirect_uri.json", + "tests/fixtures/create_role.json", + "tests/fixtures/create_user.json", + "tests/fixtures/create_user_invite_options.json", + "tests/fixtures/create_user_organization_membership.json", + "tests/fixtures/create_webhook_endpoint.json", + "tests/fixtures/data_integration_authorize_url_response.json", + "tests/fixtures/data_integrations_get_data_integration_authorize_url_request.json", + "tests/fixtures/data_integrations_get_user_token_request.json", + "tests/fixtures/data_integrations_list_response.json", + "tests/fixtures/data_integrations_list_response_data.json", + "tests/fixtures/data_integrations_list_response_data_connected_account.json", + "tests/fixtures/device_authorization_response.json", + "tests/fixtures/device_code_session_authenticate_request.json", + "tests/fixtures/directory.json", + "tests/fixtures/directory_group.json", + "tests/fixtures/directory_metadata.json", + "tests/fixtures/directory_metadata_user.json", + "tests/fixtures/directory_user.json", + "tests/fixtures/directory_user_email.json", + "tests/fixtures/directory_user_with_groups.json", + "tests/fixtures/directory_user_with_groups_email.json", + "tests/fixtures/dsync_activated.json", + "tests/fixtures/dsync_activated_data.json", + "tests/fixtures/dsync_activated_data_domain.json", + "tests/fixtures/dsync_deactivated.json", + "tests/fixtures/dsync_deactivated_data.json", + "tests/fixtures/dsync_deactivated_data_domain.json", + "tests/fixtures/dsync_deleted.json", + "tests/fixtures/dsync_deleted_data.json", + "tests/fixtures/dsync_group_created.json", + "tests/fixtures/dsync_group_deleted.json", + "tests/fixtures/dsync_group_updated.json", + "tests/fixtures/dsync_group_updated_data.json", + "tests/fixtures/dsync_group_user_added.json", + "tests/fixtures/dsync_group_user_added_data.json", + "tests/fixtures/dsync_group_user_removed.json", + "tests/fixtures/dsync_group_user_removed_data.json", + "tests/fixtures/dsync_user_created.json", + "tests/fixtures/dsync_user_deleted.json", + "tests/fixtures/dsync_user_updated.json", + "tests/fixtures/dsync_user_updated_data.json", + "tests/fixtures/dsync_user_updated_data_email.json", + "tests/fixtures/email_change.json", + "tests/fixtures/email_change_confirmation.json", + "tests/fixtures/email_change_confirmation_user.json", + "tests/fixtures/email_verification.json", + "tests/fixtures/email_verification_code_session_authenticate_request.json", + "tests/fixtures/email_verification_created.json", + "tests/fixtures/email_verification_created_data.json", + "tests/fixtures/enroll_user_authentication_factor.json", + "tests/fixtures/event_context.json", + "tests/fixtures/event_context_actor.json", + "tests/fixtures/event_context_google_analytics_session.json", + "tests/fixtures/event_list_list_metadata.json", + "tests/fixtures/event_schema.json", + "tests/fixtures/external_auth_complete_response.json", + "tests/fixtures/feature_flag.json", + "tests/fixtures/feature_flag_owner.json", + "tests/fixtures/flag.json", + "tests/fixtures/flag_created.json", + "tests/fixtures/flag_created_context.json", + "tests/fixtures/flag_created_context_actor.json", + "tests/fixtures/flag_created_data.json", + "tests/fixtures/flag_created_data_owner.json", + "tests/fixtures/flag_deleted.json", + "tests/fixtures/flag_deleted_context.json", + "tests/fixtures/flag_deleted_context_actor.json", + "tests/fixtures/flag_deleted_data.json", + "tests/fixtures/flag_deleted_data_owner.json", + "tests/fixtures/flag_owner.json", + "tests/fixtures/flag_rule_updated.json", + "tests/fixtures/flag_rule_updated_context.json", + "tests/fixtures/flag_rule_updated_context_actor.json", + "tests/fixtures/flag_rule_updated_context_configured_target.json", + "tests/fixtures/flag_rule_updated_context_configured_target_organization.json", + "tests/fixtures/flag_rule_updated_context_configured_target_user.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute_context.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute_context_configured_target.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute_context_configured_target_organization.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute_context_configured_target_user.json", + "tests/fixtures/flag_rule_updated_context_previous_attribute_data.json", + "tests/fixtures/flag_rule_updated_data.json", + "tests/fixtures/flag_rule_updated_data_owner.json", + "tests/fixtures/flag_updated.json", + "tests/fixtures/flag_updated_context.json", + "tests/fixtures/flag_updated_context_actor.json", + "tests/fixtures/flag_updated_context_previous_attribute.json", + "tests/fixtures/flag_updated_context_previous_attribute_data.json", + "tests/fixtures/flag_updated_data.json", + "tests/fixtures/flag_updated_data_owner.json", + "tests/fixtures/generate_link.json", + "tests/fixtures/intent_options.json", + "tests/fixtures/invitation.json", + "tests/fixtures/invitation_accepted.json", + "tests/fixtures/invitation_accepted_data.json", + "tests/fixtures/invitation_created.json", + "tests/fixtures/invitation_created_data.json", + "tests/fixtures/invitation_resent.json", + "tests/fixtures/invitation_resent_data.json", + "tests/fixtures/invitation_revoked.json", + "tests/fixtures/invitation_revoked_data.json", + "tests/fixtures/jwks_response.json", + "tests/fixtures/jwks_response_keys.json", + "tests/fixtures/jwt_template_response.json", + "tests/fixtures/list_api_key.json", + "tests/fixtures/list_audit_log_action_json.json", + "tests/fixtures/list_audit_log_schema_json.json", + "tests/fixtures/list_authentication_factor.json", + "tests/fixtures/list_authorization_permission.json", + "tests/fixtures/list_authorization_resource.json", + "tests/fixtures/list_authorized_connect_application_list_data.json", + "tests/fixtures/list_connect_application.json", + "tests/fixtures/list_connection.json", + "tests/fixtures/list_directory.json", + "tests/fixtures/list_directory_group.json", + "tests/fixtures/list_directory_user_with_groups.json", + "tests/fixtures/list_event_schema.json", + "tests/fixtures/list_flag.json", + "tests/fixtures/list_organization.json", + "tests/fixtures/list_role_assignment.json", + "tests/fixtures/list_user.json", + "tests/fixtures/list_user_invite.json", + "tests/fixtures/list_user_organization_membership.json", + "tests/fixtures/list_user_organization_membership_base_list_data.json", + "tests/fixtures/list_user_sessions_list_item.json", + "tests/fixtures/list_webhook_endpoint_json.json", + "tests/fixtures/magic_auth.json", + "tests/fixtures/magic_auth_code_session_authenticate_request.json", + "tests/fixtures/magic_auth_created.json", + "tests/fixtures/magic_auth_created_data.json", + "tests/fixtures/mfa_totp_session_authenticate_request.json", + "tests/fixtures/new_connect_application_secret.json", + "tests/fixtures/organization.json", + "tests/fixtures/organization_created.json", + "tests/fixtures/organization_created_data.json", + "tests/fixtures/organization_created_data_domain.json", + "tests/fixtures/organization_deleted.json", + "tests/fixtures/organization_deleted_data.json", + "tests/fixtures/organization_deleted_data_domain.json", + "tests/fixtures/organization_domain.json", + "tests/fixtures/organization_domain_created.json", + "tests/fixtures/organization_domain_created_data.json", + "tests/fixtures/organization_domain_data.json", + "tests/fixtures/organization_domain_deleted.json", + "tests/fixtures/organization_domain_deleted_data.json", + "tests/fixtures/organization_domain_stand_alone.json", + "tests/fixtures/organization_domain_updated.json", + "tests/fixtures/organization_domain_updated_data.json", + "tests/fixtures/organization_domain_verification_failed.json", + "tests/fixtures/organization_domain_verification_failed_data.json", + "tests/fixtures/organization_domain_verification_failed_data_organization_domain.json", + "tests/fixtures/organization_domain_verified.json", + "tests/fixtures/organization_domain_verified_data.json", + "tests/fixtures/organization_input.json", + "tests/fixtures/organization_membership.json", + "tests/fixtures/organization_membership_created.json", + "tests/fixtures/organization_membership_created_data.json", + "tests/fixtures/organization_membership_deleted.json", + "tests/fixtures/organization_membership_deleted_data.json", + "tests/fixtures/organization_membership_updated.json", + "tests/fixtures/organization_membership_updated_data.json", + "tests/fixtures/organization_role_created.json", + "tests/fixtures/organization_role_created_data.json", + "tests/fixtures/organization_role_deleted.json", + "tests/fixtures/organization_role_deleted_data.json", + "tests/fixtures/organization_role_updated.json", + "tests/fixtures/organization_role_updated_data.json", + "tests/fixtures/organization_selection_session_authenticate_request.json", + "tests/fixtures/organization_updated.json", + "tests/fixtures/organization_updated_data.json", + "tests/fixtures/organization_updated_data_domain.json", + "tests/fixtures/password_reset.json", + "tests/fixtures/password_reset_created.json", + "tests/fixtures/password_reset_created_data.json", + "tests/fixtures/password_reset_succeeded.json", + "tests/fixtures/password_reset_succeeded_data.json", + "tests/fixtures/password_session_authenticate_request.json", + "tests/fixtures/permission.json", + "tests/fixtures/permission_created.json", + "tests/fixtures/permission_created_data.json", + "tests/fixtures/permission_deleted.json", + "tests/fixtures/permission_deleted_data.json", + "tests/fixtures/permission_updated.json", + "tests/fixtures/permission_updated_data.json", + "tests/fixtures/portal_link_response.json", + "tests/fixtures/profile.json", + "tests/fixtures/radar_list_entry_already_present_response.json", + "tests/fixtures/radar_standalone_assess_request.json", + "tests/fixtures/radar_standalone_delete_radar_list_entry_request.json", + "tests/fixtures/radar_standalone_response.json", + "tests/fixtures/radar_standalone_update_radar_attempt_request.json", + "tests/fixtures/radar_standalone_update_radar_list_request.json", + "tests/fixtures/redirect_uri.json", + "tests/fixtures/redirect_uri_input.json", + "tests/fixtures/refresh_token_session_authenticate_request.json", + "tests/fixtures/remove_role.json", + "tests/fixtures/resend_user_invite_options.json", + "tests/fixtures/reset_password_response.json", + "tests/fixtures/revoke_session.json", + "tests/fixtures/role.json", + "tests/fixtures/role_assignment.json", + "tests/fixtures/role_assignment_resource.json", + "tests/fixtures/role_created.json", + "tests/fixtures/role_created_data.json", + "tests/fixtures/role_deleted.json", + "tests/fixtures/role_deleted_data.json", + "tests/fixtures/role_list.json", + "tests/fixtures/role_updated.json", + "tests/fixtures/role_updated_data.json", + "tests/fixtures/send_email_change.json", + "tests/fixtures/send_verification_email_response.json", + "tests/fixtures/session_created.json", + "tests/fixtures/session_created_data.json", + "tests/fixtures/session_created_data_impersonator.json", + "tests/fixtures/session_revoked.json", + "tests/fixtures/session_revoked_data.json", + "tests/fixtures/session_revoked_data_impersonator.json", + "tests/fixtures/set_role_permissions.json", + "tests/fixtures/slim_role.json", + "tests/fixtures/sso_authorize_url_response.json", + "tests/fixtures/sso_device_authorization_request.json", + "tests/fixtures/sso_intent_options.json", + "tests/fixtures/sso_logout_authorize_request.json", + "tests/fixtures/sso_logout_authorize_response.json", + "tests/fixtures/sso_token_response.json", + "tests/fixtures/sso_token_response_oauth_token.json", + "tests/fixtures/token_query.json", + "tests/fixtures/update_audit_logs_retention.json", + "tests/fixtures/update_authorization_permission.json", + "tests/fixtures/update_authorization_resource.json", + "tests/fixtures/update_jwt_template.json", + "tests/fixtures/update_oauth_application.json", + "tests/fixtures/update_organization.json", + "tests/fixtures/update_organization_role.json", + "tests/fixtures/update_role.json", + "tests/fixtures/update_user.json", + "tests/fixtures/update_user_organization_membership.json", + "tests/fixtures/update_webhook_endpoint.json", + "tests/fixtures/user.json", + "tests/fixtures/user_authentication_factor_enroll_response.json", + "tests/fixtures/user_consent_option.json", + "tests/fixtures/user_consent_option_choice.json", + "tests/fixtures/user_created.json", + "tests/fixtures/user_deleted.json", + "tests/fixtures/user_identities_get_item.json", + "tests/fixtures/user_invite.json", + "tests/fixtures/user_management_login_request.json", + "tests/fixtures/user_object.json", + "tests/fixtures/user_organization_membership.json", + "tests/fixtures/user_organization_membership_base_list_data.json", + "tests/fixtures/user_sessions_impersonator.json", + "tests/fixtures/user_sessions_list_item.json", + "tests/fixtures/user_updated.json", + "tests/fixtures/validate_api_key.json", + "tests/fixtures/vault_byok_key_verification_completed.json", + "tests/fixtures/vault_byok_key_verification_completed_data.json", + "tests/fixtures/vault_data_created.json", + "tests/fixtures/vault_data_created_data.json", + "tests/fixtures/vault_data_deleted.json", + "tests/fixtures/vault_data_deleted_data.json", + "tests/fixtures/vault_data_read.json", + "tests/fixtures/vault_data_read_data.json", + "tests/fixtures/vault_data_updated.json", + "tests/fixtures/vault_data_updated_data.json", + "tests/fixtures/vault_dek_decrypted.json", + "tests/fixtures/vault_dek_decrypted_data.json", + "tests/fixtures/vault_dek_read.json", + "tests/fixtures/vault_dek_read_data.json", + "tests/fixtures/vault_kek_created.json", + "tests/fixtures/vault_kek_created_data.json", + "tests/fixtures/vault_metadata_read.json", + "tests/fixtures/vault_metadata_read_data.json", + "tests/fixtures/vault_names_listed.json", + "tests/fixtures/vault_names_listed_data.json", + "tests/fixtures/verify_email_address.json", + "tests/fixtures/verify_email_response.json", + "tests/fixtures/webhook_endpoint_json.json", + "tests/fixtures/widget_session_token.json", + "tests/fixtures/widget_session_token_response.json", + "tests/test_admin_portal.py", + "tests/test_api_keys.py", + "tests/test_audit_logs.py", + "tests/test_authorization.py", + "tests/test_connect.py", + "tests/test_directory_sync.py", + "tests/test_events.py", + "tests/test_feature_flags.py", + "tests/test_models_round_trip.py", + "tests/test_multi_factor_auth.py", + "tests/test_organization_domains.py", + "tests/test_organizations.py", + "tests/test_pipes.py", + "tests/test_radar.py", + "tests/test_sso.py", + "tests/test_user_management.py", + "tests/test_webhooks.py", + "tests/test_widgets.py" + ] +}