workos 5.34.1__py3-none-any.whl → 5.36.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- workos/__about__.py +1 -1
- workos/_base_client.py +10 -6
- workos/api_keys.py +53 -0
- workos/async_client.py +7 -0
- workos/client.py +7 -0
- workos/types/api_keys/__init__.py +1 -0
- workos/types/api_keys/api_keys.py +20 -0
- workos/types/events/__init__.py +1 -1
- workos/types/events/event.py +9 -1
- workos/types/events/event_model.py +6 -1
- workos/types/events/event_type.py +1 -0
- workos/types/events/{session_created_payload.py → session_payload.py} +12 -0
- workos/types/webhooks/webhook.py +9 -1
- {workos-5.34.1.dist-info → workos-5.36.0.dist-info}/METADATA +1 -1
- {workos-5.34.1.dist-info → workos-5.36.0.dist-info}/RECORD +18 -15
- {workos-5.34.1.dist-info → workos-5.36.0.dist-info}/LICENSE +0 -0
- {workos-5.34.1.dist-info → workos-5.36.0.dist-info}/WHEEL +0 -0
- {workos-5.34.1.dist-info → workos-5.36.0.dist-info}/top_level.txt +0 -0
workos/__about__.py
CHANGED
workos/_base_client.py
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
from abc import abstractmethod
|
|
2
1
|
import os
|
|
2
|
+
from abc import abstractmethod
|
|
3
3
|
from typing import Optional
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
from workos._client_configuration import ClientConfiguration
|
|
6
|
-
from workos.
|
|
7
|
-
from workos.utils._base_http_client import DEFAULT_REQUEST_TIMEOUT
|
|
8
|
-
from workos.utils.http_client import HTTPClient
|
|
6
|
+
from workos.api_keys import ApiKeysModule
|
|
9
7
|
from workos.audit_logs import AuditLogsModule
|
|
10
8
|
from workos.directory_sync import DirectorySyncModule
|
|
11
9
|
from workos.events import EventsModule
|
|
10
|
+
from workos.fga import FGAModule
|
|
12
11
|
from workos.mfa import MFAModule
|
|
13
|
-
from workos.organizations import OrganizationsModule
|
|
14
12
|
from workos.organization_domains import OrganizationDomainsModule
|
|
13
|
+
from workos.organizations import OrganizationsModule
|
|
15
14
|
from workos.passwordless import PasswordlessModule
|
|
16
15
|
from workos.portal import PortalModule
|
|
17
16
|
from workos.sso import SSOModule
|
|
18
17
|
from workos.user_management import UserManagementModule
|
|
18
|
+
from workos.utils._base_http_client import DEFAULT_REQUEST_TIMEOUT
|
|
19
19
|
from workos.webhooks import WebhooksModule
|
|
20
20
|
|
|
21
21
|
|
|
@@ -65,6 +65,10 @@ class BaseClient(ClientConfiguration):
|
|
|
65
65
|
else int(os.getenv("WORKOS_REQUEST_TIMEOUT", DEFAULT_REQUEST_TIMEOUT))
|
|
66
66
|
)
|
|
67
67
|
|
|
68
|
+
@property
|
|
69
|
+
@abstractmethod
|
|
70
|
+
def api_keys(self) -> ApiKeysModule: ...
|
|
71
|
+
|
|
68
72
|
@property
|
|
69
73
|
@abstractmethod
|
|
70
74
|
def audit_logs(self) -> AuditLogsModule: ...
|
workos/api_keys.py
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
from typing import Optional, Protocol
|
|
2
|
+
|
|
3
|
+
from workos.types.api_keys import ApiKey
|
|
4
|
+
from workos.typing.sync_or_async import SyncOrAsync
|
|
5
|
+
from workos.utils.http_client import AsyncHTTPClient, SyncHTTPClient
|
|
6
|
+
from workos.utils.request_helper import REQUEST_METHOD_POST
|
|
7
|
+
|
|
8
|
+
API_KEY_VALIDATION_PATH = "api_keys/validations"
|
|
9
|
+
RESOURCE_OBJECT_ATTRIBUTE_NAME = "api_key"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ApiKeysModule(Protocol):
|
|
13
|
+
def validate_api_key(self, *, value: str) -> SyncOrAsync[Optional[ApiKey]]:
|
|
14
|
+
"""Validate an API key.
|
|
15
|
+
|
|
16
|
+
Kwargs:
|
|
17
|
+
value (str): API key value
|
|
18
|
+
|
|
19
|
+
Returns:
|
|
20
|
+
Optional[ApiKey]: Returns ApiKey resource object
|
|
21
|
+
if supplied value was valid, None if it was not
|
|
22
|
+
"""
|
|
23
|
+
...
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class ApiKeys(ApiKeysModule):
|
|
27
|
+
_http_client: SyncHTTPClient
|
|
28
|
+
|
|
29
|
+
def __init__(self, http_client: SyncHTTPClient):
|
|
30
|
+
self._http_client = http_client
|
|
31
|
+
|
|
32
|
+
def validate_api_key(self, *, value: str) -> Optional[ApiKey]:
|
|
33
|
+
response = self._http_client.request(
|
|
34
|
+
API_KEY_VALIDATION_PATH, method=REQUEST_METHOD_POST, json={"value": value}
|
|
35
|
+
)
|
|
36
|
+
if response.get(RESOURCE_OBJECT_ATTRIBUTE_NAME) is None:
|
|
37
|
+
return None
|
|
38
|
+
return ApiKey.model_validate(response[RESOURCE_OBJECT_ATTRIBUTE_NAME])
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class AsyncApiKeys(ApiKeysModule):
|
|
42
|
+
_http_client: AsyncHTTPClient
|
|
43
|
+
|
|
44
|
+
def __init__(self, http_client: AsyncHTTPClient):
|
|
45
|
+
self._http_client = http_client
|
|
46
|
+
|
|
47
|
+
async def validate_api_key(self, *, value: str) -> Optional[ApiKey]:
|
|
48
|
+
response = await self._http_client.request(
|
|
49
|
+
API_KEY_VALIDATION_PATH, method=REQUEST_METHOD_POST, json={"value": value}
|
|
50
|
+
)
|
|
51
|
+
if response.get(RESOURCE_OBJECT_ATTRIBUTE_NAME) is None:
|
|
52
|
+
return None
|
|
53
|
+
return ApiKey.model_validate(response[RESOURCE_OBJECT_ATTRIBUTE_NAME])
|
workos/async_client.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from typing import Optional
|
|
2
2
|
from workos.__about__ import __version__
|
|
3
3
|
from workos._base_client import BaseClient
|
|
4
|
+
from workos.api_keys import AsyncApiKeys
|
|
4
5
|
from workos.audit_logs import AuditLogsModule
|
|
5
6
|
from workos.directory_sync import AsyncDirectorySync
|
|
6
7
|
from workos.events import AsyncEvents
|
|
@@ -45,6 +46,12 @@ class AsyncClient(BaseClient):
|
|
|
45
46
|
timeout=self.request_timeout,
|
|
46
47
|
)
|
|
47
48
|
|
|
49
|
+
@property
|
|
50
|
+
def api_keys(self) -> AsyncApiKeys:
|
|
51
|
+
if not getattr(self, "_api_keys", None):
|
|
52
|
+
self._api_keys = AsyncApiKeys(self._http_client)
|
|
53
|
+
return self._api_keys
|
|
54
|
+
|
|
48
55
|
@property
|
|
49
56
|
def sso(self) -> AsyncSSO:
|
|
50
57
|
if not getattr(self, "_sso", None):
|
workos/client.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from typing import Optional
|
|
2
2
|
from workos.__about__ import __version__
|
|
3
3
|
from workos._base_client import BaseClient
|
|
4
|
+
from workos.api_keys import ApiKeys
|
|
4
5
|
from workos.audit_logs import AuditLogs
|
|
5
6
|
from workos.directory_sync import DirectorySync
|
|
6
7
|
from workos.fga import FGA
|
|
@@ -45,6 +46,12 @@ class SyncClient(BaseClient):
|
|
|
45
46
|
timeout=self.request_timeout,
|
|
46
47
|
)
|
|
47
48
|
|
|
49
|
+
@property
|
|
50
|
+
def api_keys(self) -> ApiKeys:
|
|
51
|
+
if not getattr(self, "_api_keys", None):
|
|
52
|
+
self._api_keys = ApiKeys(self._http_client)
|
|
53
|
+
return self._api_keys
|
|
54
|
+
|
|
48
55
|
@property
|
|
49
56
|
def sso(self) -> SSO:
|
|
50
57
|
if not getattr(self, "_sso", None):
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .api_keys import ApiKey as ApiKey # noqa: F401
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Literal, Optional, Sequence
|
|
2
|
+
|
|
3
|
+
from workos.types.workos_model import WorkOSModel
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class ApiKeyOwner(WorkOSModel):
|
|
7
|
+
type: str
|
|
8
|
+
id: str
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ApiKey(WorkOSModel):
|
|
12
|
+
object: Literal["api_key"]
|
|
13
|
+
id: str
|
|
14
|
+
owner: ApiKeyOwner
|
|
15
|
+
name: str
|
|
16
|
+
obfuscated_value: str
|
|
17
|
+
last_used_at: Optional[str] = None
|
|
18
|
+
permissions: Sequence[str]
|
|
19
|
+
created_at: str
|
|
20
|
+
updated_at: str
|
workos/types/events/__init__.py
CHANGED
workos/types/events/event.py
CHANGED
|
@@ -36,7 +36,10 @@ from workos.types.events.event_model import EventModel
|
|
|
36
36
|
from workos.types.events.organization_domain_verification_failed_payload import (
|
|
37
37
|
OrganizationDomainVerificationFailedPayload,
|
|
38
38
|
)
|
|
39
|
-
from workos.types.events.
|
|
39
|
+
from workos.types.events.session_payload import (
|
|
40
|
+
SessionCreatedPayload,
|
|
41
|
+
SessionRevokedPayload,
|
|
42
|
+
)
|
|
40
43
|
from workos.types.organizations.organization_common import OrganizationCommon
|
|
41
44
|
from workos.types.organization_domains import OrganizationDomain
|
|
42
45
|
from workos.types.roles.role import EventRole
|
|
@@ -249,6 +252,10 @@ class SessionCreatedEvent(EventModel[SessionCreatedPayload]):
|
|
|
249
252
|
event: Literal["session.created"]
|
|
250
253
|
|
|
251
254
|
|
|
255
|
+
class SessionRevokedEvent(EventModel[SessionRevokedPayload]):
|
|
256
|
+
event: Literal["session.revoked"]
|
|
257
|
+
|
|
258
|
+
|
|
252
259
|
class UserCreatedEvent(EventModel[User]):
|
|
253
260
|
event: Literal["user.created"]
|
|
254
261
|
|
|
@@ -308,6 +315,7 @@ Event = Annotated[
|
|
|
308
315
|
RoleDeletedEvent,
|
|
309
316
|
RoleUpdatedEvent,
|
|
310
317
|
SessionCreatedEvent,
|
|
318
|
+
SessionRevokedEvent,
|
|
311
319
|
UserCreatedEvent,
|
|
312
320
|
UserDeletedEvent,
|
|
313
321
|
UserUpdatedEvent,
|
|
@@ -35,7 +35,11 @@ from workos.types.events.directory_user_with_previous_attributes import (
|
|
|
35
35
|
from workos.types.events.organization_domain_verification_failed_payload import (
|
|
36
36
|
OrganizationDomainVerificationFailedPayload,
|
|
37
37
|
)
|
|
38
|
-
|
|
38
|
+
|
|
39
|
+
from workos.types.events.session_payload import (
|
|
40
|
+
SessionCreatedPayload,
|
|
41
|
+
SessionRevokedPayload,
|
|
42
|
+
)
|
|
39
43
|
from workos.types.organizations.organization_common import OrganizationCommon
|
|
40
44
|
from workos.types.organization_domains import OrganizationDomain
|
|
41
45
|
from workos.types.roles.role import EventRole
|
|
@@ -81,6 +85,7 @@ EventPayload = TypeVar(
|
|
|
81
85
|
OrganizationMembership,
|
|
82
86
|
PasswordResetCommon,
|
|
83
87
|
SessionCreatedPayload,
|
|
88
|
+
SessionRevokedPayload,
|
|
84
89
|
User,
|
|
85
90
|
)
|
|
86
91
|
|
|
@@ -13,3 +13,15 @@ class SessionCreatedPayload(WorkOSModel):
|
|
|
13
13
|
user_id: str
|
|
14
14
|
created_at: str
|
|
15
15
|
updated_at: str
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class SessionRevokedPayload(WorkOSModel):
|
|
19
|
+
object: Literal["session"]
|
|
20
|
+
id: str
|
|
21
|
+
impersonator: Optional[Impersonator] = None
|
|
22
|
+
ip_address: Optional[str] = None
|
|
23
|
+
organization_id: Optional[str] = None
|
|
24
|
+
user_agent: Optional[str] = None
|
|
25
|
+
user_id: str
|
|
26
|
+
created_at: str
|
|
27
|
+
updated_at: str
|
workos/types/webhooks/webhook.py
CHANGED
|
@@ -36,7 +36,10 @@ from workos.types.events.directory_user_with_previous_attributes import (
|
|
|
36
36
|
from workos.types.events.organization_domain_verification_failed_payload import (
|
|
37
37
|
OrganizationDomainVerificationFailedPayload,
|
|
38
38
|
)
|
|
39
|
-
from workos.types.events.
|
|
39
|
+
from workos.types.events.session_payload import (
|
|
40
|
+
SessionCreatedPayload,
|
|
41
|
+
SessionRevokedPayload,
|
|
42
|
+
)
|
|
40
43
|
from workos.types.organization_domains import OrganizationDomain
|
|
41
44
|
from workos.types.organizations.organization_common import OrganizationCommon
|
|
42
45
|
from workos.types.roles.role import EventRole
|
|
@@ -255,6 +258,10 @@ class SessionCreatedWebhook(WebhookModel[SessionCreatedPayload]):
|
|
|
255
258
|
event: Literal["session.created"]
|
|
256
259
|
|
|
257
260
|
|
|
261
|
+
class SessionRevokedWebhook(WebhookModel[SessionRevokedPayload]):
|
|
262
|
+
event: Literal["session.revoked"]
|
|
263
|
+
|
|
264
|
+
|
|
258
265
|
class UserCreatedWebhook(WebhookModel[User]):
|
|
259
266
|
event: Literal["user.created"]
|
|
260
267
|
|
|
@@ -314,6 +321,7 @@ Webhook = Annotated[
|
|
|
314
321
|
RoleDeletedWebhook,
|
|
315
322
|
RoleUpdatedWebhook,
|
|
316
323
|
SessionCreatedWebhook,
|
|
324
|
+
SessionRevokedWebhook,
|
|
317
325
|
UserCreatedWebhook,
|
|
318
326
|
UserDeletedWebhook,
|
|
319
327
|
UserUpdatedWebhook,
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
workos/__about__.py,sha256=
|
|
1
|
+
workos/__about__.py,sha256=56CCUBHV0EQKOSU4aK_1BMFRIXG6pkLViqDRbzIm7TA,406
|
|
2
2
|
workos/__init__.py,sha256=hOdbO_MJCvpLx8EbRjQg-fvFAB-glJmrmxUZK8kWG0k,167
|
|
3
|
-
workos/_base_client.py,sha256=
|
|
3
|
+
workos/_base_client.py,sha256=CIfAk6Bdj1hpOy3TcfIGXy8X4Efa7wi7cKracjkcTHk,3633
|
|
4
4
|
workos/_client_configuration.py,sha256=g3eXhtrEMN6CW0hZ5uHb2PmLurXjyBkWZeQYMPeJD6s,222
|
|
5
|
-
workos/
|
|
5
|
+
workos/api_keys.py,sha256=3AljcqAO1uJYP315AZymX184eJ9X_gH7xa_rKU6rMjw,1817
|
|
6
|
+
workos/async_client.py,sha256=OYwH4BMEQQSaQoKPgAxGs24TQQcaQQndoivCte-Y1FI,4594
|
|
6
7
|
workos/audit_logs.py,sha256=bYoAoNO4FRSaT34UxiVkgTXCVH8givcS2YGhH_9O3NA,3983
|
|
7
|
-
workos/client.py,sha256=
|
|
8
|
+
workos/client.py,sha256=18fDBbsUnHnJj3WqxEmX72oWxgfJvCWIH1CFb_gsjkU,4566
|
|
8
9
|
workos/directory_sync.py,sha256=6Z1gHz1LWNy56EtkXwNm6jhRRcvsJ7ASeDLy_Q1oKM0,14601
|
|
9
10
|
workos/events.py,sha256=b4JIzMbd5LlVtpOMKVojC70RCHAgmLN3nJ62_2U0GwI,3892
|
|
10
11
|
workos/exceptions.py,sha256=wYDlbMLVxrKQTF0M6ExFlxS5YEkvNZ4BeWLryRxcAFs,2335
|
|
@@ -25,6 +26,8 @@ workos/types/__init__.py,sha256=aYScTXq5jOyp0AYvdWffaj5-zdDuNtCCJtbzt5GM19k,267
|
|
|
25
26
|
workos/types/list_resource.py,sha256=VcJaz8qE91y9t-PRI0mTjzPdtyoU8EGAo6-TJGjbqzg,6747
|
|
26
27
|
workos/types/metadata.py,sha256=uUqDkGJGyFY3H4JZObSiCfn4jKBue5CBhOqv79TI1n0,52
|
|
27
28
|
workos/types/workos_model.py,sha256=bV_p3baadcUJOU_7f6ysZ6KXhpt3E_93spuZnfJs9vc,735
|
|
29
|
+
workos/types/api_keys/__init__.py,sha256=CMjEAI6EAO2En9UUwvEQW6EAVuV6l5wWPvmuKH8oKhs,53
|
|
30
|
+
workos/types/api_keys/api_keys.py,sha256=eVpXS6hhLCFhIqJ_oQNIbwjL9u0blVykjpQxZEEKDS8,403
|
|
28
31
|
workos/types/audit_logs/__init__.py,sha256=daPn8wAVEnlM1fCpOsy3dVZV_0YEp8bA1T_nhk5-pU8,211
|
|
29
32
|
workos/types/audit_logs/audit_log_event.py,sha256=GVvbu3JJpXW-N16zdWi-0c3W9z_t3JB7Y6-Rc463upw,672
|
|
30
33
|
workos/types/audit_logs/audit_log_event_actor.py,sha256=vYojEwq4EPwAO01p_9FmVuKg6Cr7lycrWkldB_W26GA,320
|
|
@@ -39,7 +42,7 @@ workos/types/directory_sync/directory_state.py,sha256=4qaD1Snonde1oVj1tDUITzXh0i
|
|
|
39
42
|
workos/types/directory_sync/directory_type.py,sha256=NuHJzxI80WjxKiCSwMj1dfMpfB4o5JHErfLWfxCnKRs,443
|
|
40
43
|
workos/types/directory_sync/directory_user.py,sha256=ZIlhkR2afO5cvWxEXAWsYjOy_sBC9_GBFaa5B3ZYyBo,2135
|
|
41
44
|
workos/types/directory_sync/list_filters.py,sha256=Q4jlocRp4DguCm5e4Oo7udK7IfKmm3N1Rojtg4Eu96w,449
|
|
42
|
-
workos/types/events/__init__.py,sha256=
|
|
45
|
+
workos/types/events/__init__.py,sha256=RX4PyjatDLhmNOV_9I08TfY1KjQZWL4CX6LbxhrMxaQ,540
|
|
43
46
|
workos/types/events/authentication_payload.py,sha256=-4DhxWNxyd0Q01w2R4RyoQAwxNrRKMYJAdcRJUrzjEk,1779
|
|
44
47
|
workos/types/events/connection_payload_with_legacy_fields.py,sha256=d0x4BHDMQfrCehKlaU40FcufBiASOtN38idfR5d8hbY,139
|
|
45
48
|
workos/types/events/directory_group_membership_payload.py,sha256=PD81lhsRWUxQmugKo7pm_E6rVAaiBa2sjDYVAoSPGVU,300
|
|
@@ -47,13 +50,13 @@ workos/types/events/directory_group_with_previous_attributes.py,sha256=13VLNhdJZ
|
|
|
47
50
|
workos/types/events/directory_payload.py,sha256=tRo3f9g8VoYertSUPAR25iGDyGLr2Dtb2mTkl73PAeA,503
|
|
48
51
|
workos/types/events/directory_payload_with_legacy_fields.py,sha256=jk9nLmRqgllVkBG4EU3uTgcDOhCNptHgCh93U7aBAYE,1005
|
|
49
52
|
workos/types/events/directory_user_with_previous_attributes.py,sha256=PhnO3WakBxAvnlOGf0UB0bvoppUYlwLyU-g9X_pPdko,244
|
|
50
|
-
workos/types/events/event.py,sha256=
|
|
51
|
-
workos/types/events/event_model.py,sha256=
|
|
52
|
-
workos/types/events/event_type.py,sha256=
|
|
53
|
+
workos/types/events/event.py,sha256=oSNel0-Wom2sRyJki7fKokV95Py-ujzbz6mE3Yd1sB0,10249
|
|
54
|
+
workos/types/events/event_model.py,sha256=T7LhScyPfAFoOLJdRK_LsS3aEuePSa1kcH3IzwvNRCw,3778
|
|
55
|
+
workos/types/events/event_type.py,sha256=YgxVsHTau5TGlgDIvruS7NGX7buMWbCCYIF9bV9BAuM,1766
|
|
53
56
|
workos/types/events/list_filters.py,sha256=P04zmRynx9VPqNX_MBXA-3KA6flPZJogtIUqTI7w9Eg,305
|
|
54
57
|
workos/types/events/organization_domain_verification_failed_payload.py,sha256=b4wX8HVbL9Nx6fCjOXkZg9eLc-Bv6YqAjMap1f7UvFc,470
|
|
55
58
|
workos/types/events/previous_attributes.py,sha256=DxolwLwzcnG8r_W6rh5BT29iDfSVsIELvRYJ0NCrNn0,72
|
|
56
|
-
workos/types/events/
|
|
59
|
+
workos/types/events/session_payload.py,sha256=fErEOkbZtuJSAnbJPaUJg5ZsUj5u05w6WHQguo_fZEM,770
|
|
57
60
|
workos/types/feature_flags/__init__.py,sha256=zQpY624xaDw8t94ZbNrl_iH9bHPrSYYSKHVDnd7XTmc,91
|
|
58
61
|
workos/types/feature_flags/feature_flag.py,sha256=fS1RP_mOJKMmnaNqpSsePkixbJAExx-153IKb29kC-4,268
|
|
59
62
|
workos/types/feature_flags/list_filters.py,sha256=iTnz1KNzxXAJunBMg-ZE63Mh2DaCFmS4S_q6AoL3rbI,112
|
|
@@ -111,7 +114,7 @@ workos/types/vault/__init__.py,sha256=krBuIl8luysrtDf9-b8KTkXOHDOaSsOR-Aao6Wlil0
|
|
|
111
114
|
workos/types/vault/key.py,sha256=x30XBplSj9AviDDAB8MdpcULbZvvo2sUzi8RCmZQKxU,453
|
|
112
115
|
workos/types/vault/object.py,sha256=-rk4KovS3eT8T8L3JltYUS0cd2Rg1JKcAX9SOaZO3D8,664
|
|
113
116
|
workos/types/webhooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
-
workos/types/webhooks/webhook.py,sha256=
|
|
117
|
+
workos/types/webhooks/webhook.py,sha256=BtPliPkUWJgXYRCZCwZNLfCL-pBNaUrUxMyCvlmiMqM,10466
|
|
115
118
|
workos/types/webhooks/webhook_model.py,sha256=v7Hgtzt0nW_5RaYoB_QGVfElhdjySuG3F1BFjoid36w,404
|
|
116
119
|
workos/types/webhooks/webhook_payload.py,sha256=GXt31KtyBM-ji5K5p4dBnu46Gh8adQWTq0ye5USB_6g,68
|
|
117
120
|
workos/types/widgets/__init__.py,sha256=z2Tdlj_bJsRZeJRh4SOFX58PvJdf0LjKnYhrQX1fpME,65
|
|
@@ -128,8 +131,8 @@ workos/utils/crypto_provider.py,sha256=QeQSR4t9xLlb90kEfl8onVUsf1yCkYq0EjFTxK0mU
|
|
|
128
131
|
workos/utils/http_client.py,sha256=TM5yMFFExmAE8D2Z43-5O301tRbnylLG0aXO0isGorE,6197
|
|
129
132
|
workos/utils/pagination_order.py,sha256=_-et1DDJLG0czarTU7op4W6RA0V1f85GNsUgtyRU55Q,70
|
|
130
133
|
workos/utils/request_helper.py,sha256=NaO16qPPbSNnCeE0fiNKYb8gM-dK_okYVJbLGrEGXz8,793
|
|
131
|
-
workos-5.
|
|
132
|
-
workos-5.
|
|
133
|
-
workos-5.
|
|
134
|
-
workos-5.
|
|
135
|
-
workos-5.
|
|
134
|
+
workos-5.36.0.dist-info/LICENSE,sha256=mU--WL1JzelH2tXpKVoOlpud4cpqKSRTtdArCvYZmb4,1063
|
|
135
|
+
workos-5.36.0.dist-info/METADATA,sha256=ZcAKRLSBUOHl2eVwFWVYKNfufg4vxDeSe9JvzHlBELY,4187
|
|
136
|
+
workos-5.36.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
137
|
+
workos-5.36.0.dist-info/top_level.txt,sha256=ZFskIfue1Tw-JwjyIXRvdsAl9i0DX9VbqmgICXV84Sk,7
|
|
138
|
+
workos-5.36.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|