workos 5.20.1__tar.gz → 5.20.2__tar.gz
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-5.20.1 → workos-5.20.2}/PKG-INFO +1 -1
- {workos-5.20.1 → workos-5.20.2}/tests/test_session.py +29 -33
- {workos-5.20.1 → workos-5.20.2}/workos/__about__.py +1 -1
- {workos-5.20.1 → workos-5.20.2}/workos/session.py +9 -22
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/PKG-INFO +1 -1
- {workos-5.20.1 → workos-5.20.2}/LICENSE +0 -0
- {workos-5.20.1 → workos-5.20.2}/README.md +0 -0
- {workos-5.20.1 → workos-5.20.2}/setup.cfg +0 -0
- {workos-5.20.1 → workos-5.20.2}/setup.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_async_http_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_audit_logs.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_directory_sync.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_events.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_fga.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_mfa.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_organizations.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_passwordless.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_portal.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_sso.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_sync_http_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_user_management.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_webhooks.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/tests/test_widgets.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/_base_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/_client_configuration.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/async_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/audit_logs.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/directory_sync.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/events.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/exceptions.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/fga.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/mfa.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/organizations.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/passwordless.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/portal.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/py.typed +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/sso.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_event.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_event_actor.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_event_context.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_event_target.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_export.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/audit_logs/audit_log_metadata.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/directory.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/directory_group.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/directory_state.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/directory_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/directory_user.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/directory_sync/list_filters.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/authentication_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/connection_payload_with_legacy_fields.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_group_membership_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_group_with_previous_attributes.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_payload_with_legacy_fields.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_user_with_previous_attributes.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/event.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/event_model.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/event_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/list_filters.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/organization_domain_verification_failed_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/previous_attributes.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/events/session_created_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/authorization_resource_types.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/authorization_resources.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/check.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/list_filters.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/fga/warrant.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/list_resource.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/metadata.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/authentication_challenge.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/authentication_challenge_verification_response.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/authentication_factor.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/authentication_factor_totp_and_challenge_response.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/mfa/enroll_authentication_factor_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/domain_data_input.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/list_filters.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/organization.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/organization_common.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/organizations/organization_domain.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/passwordless/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/passwordless/passwordless_session.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/passwordless/passwordless_session_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/portal/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/portal/portal_link.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/portal/portal_link_intent.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/portal/portal_link_intent_options.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/roles/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/roles/role.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/sso/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/sso/connection.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/sso/connection_domain.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/sso/profile.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/sso/sso_provider_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/authenticate_with_common.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/authentication_response.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/email_verification.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/impersonator.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/invitation.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/list_filters.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/magic_auth.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/oauth_tokens.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/organization_membership.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/password_hash_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/password_reset.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/screen_hint.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/session.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/user.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/user_management/user_management_provider_type.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/webhooks/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/webhooks/webhook.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/webhooks/webhook_model.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/webhooks/webhook_payload.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/widgets/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/widgets/widget_scope.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/widgets/widget_token_response.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/types/workos_model.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/typing/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/typing/literals.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/typing/sync_or_async.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/typing/untyped_literal.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/typing/webhooks.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/user_management.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/utils/__init__.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/utils/_base_http_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/utils/http_client.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/utils/pagination_order.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/utils/request_helper.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/webhooks.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos/widgets.py +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/SOURCES.txt +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/dependency_links.txt +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/not-zip-safe +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/requires.txt +0 -0
- {workos-5.20.1 → workos-5.20.2}/workos.egg-info/top_level.txt +0 -0
|
@@ -236,9 +236,7 @@ class TestSessionBase(SessionFixtures):
|
|
|
236
236
|
"entitlements": ["feature_1"],
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
-
with patch.object(
|
|
240
|
-
Session, "unseal_data", return_value=mock_session
|
|
241
|
-
), patch.object(session, "_is_valid_jwt", return_value=True), patch(
|
|
239
|
+
with patch.object(Session, "unseal_data", return_value=mock_session), patch(
|
|
242
240
|
"jwt.decode", return_value=mock_jwt_payload
|
|
243
241
|
), patch.object(
|
|
244
242
|
session.jwks,
|
|
@@ -324,22 +322,21 @@ class TestSession(SessionFixtures):
|
|
|
324
322
|
cookie_password=session_constants["COOKIE_PASSWORD"],
|
|
325
323
|
)
|
|
326
324
|
|
|
327
|
-
with patch
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
)
|
|
338
|
-
response = session.refresh()
|
|
325
|
+
with patch(
|
|
326
|
+
"jwt.decode",
|
|
327
|
+
return_value={
|
|
328
|
+
"sid": session_constants["SESSION_ID"],
|
|
329
|
+
"org_id": session_constants["ORGANIZATION_ID"],
|
|
330
|
+
"role": "admin",
|
|
331
|
+
"permissions": ["read"],
|
|
332
|
+
"entitlements": ["feature_1"],
|
|
333
|
+
},
|
|
334
|
+
):
|
|
335
|
+
response = session.refresh()
|
|
339
336
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
337
|
+
assert isinstance(response, RefreshWithSessionCookieSuccessResponse)
|
|
338
|
+
assert response.authenticated is True
|
|
339
|
+
assert response.user.id == session_constants["TEST_USER"]["id"]
|
|
343
340
|
|
|
344
341
|
# Verify the refresh token was used correctly
|
|
345
342
|
mock_user_management.authenticate_with_refresh_token.assert_called_once_with(
|
|
@@ -425,22 +422,21 @@ class TestAsyncSession(SessionFixtures):
|
|
|
425
422
|
cookie_password=session_constants["COOKIE_PASSWORD"],
|
|
426
423
|
)
|
|
427
424
|
|
|
428
|
-
with patch
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
)
|
|
439
|
-
response = await session.refresh()
|
|
425
|
+
with patch(
|
|
426
|
+
"jwt.decode",
|
|
427
|
+
return_value={
|
|
428
|
+
"sid": session_constants["SESSION_ID"],
|
|
429
|
+
"org_id": session_constants["ORGANIZATION_ID"],
|
|
430
|
+
"role": "admin",
|
|
431
|
+
"permissions": ["read"],
|
|
432
|
+
"entitlements": ["feature_1"],
|
|
433
|
+
},
|
|
434
|
+
):
|
|
435
|
+
response = await session.refresh()
|
|
440
436
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
437
|
+
assert isinstance(response, RefreshWithSessionCookieSuccessResponse)
|
|
438
|
+
assert response.authenticated is True
|
|
439
|
+
assert response.user.id == session_constants["TEST_USER"]["id"]
|
|
444
440
|
|
|
445
441
|
# Verify the refresh token was used correctly
|
|
446
442
|
mock_user_management.authenticate_with_refresh_token.assert_called_once_with(
|
|
@@ -77,20 +77,20 @@ class SessionModule(Protocol):
|
|
|
77
77
|
reason=AuthenticateWithSessionCookieFailureReason.INVALID_SESSION_COOKIE,
|
|
78
78
|
)
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
try:
|
|
81
|
+
signing_key = self.jwks.get_signing_key_from_jwt(session["access_token"])
|
|
82
|
+
decoded = jwt.decode(
|
|
83
|
+
session["access_token"],
|
|
84
|
+
signing_key.key,
|
|
85
|
+
algorithms=self.jwk_algorithms,
|
|
86
|
+
options={"verify_aud": False},
|
|
87
|
+
)
|
|
88
|
+
except jwt.exceptions.InvalidTokenError:
|
|
81
89
|
return AuthenticateWithSessionCookieErrorResponse(
|
|
82
90
|
authenticated=False,
|
|
83
91
|
reason=AuthenticateWithSessionCookieFailureReason.INVALID_JWT,
|
|
84
92
|
)
|
|
85
93
|
|
|
86
|
-
signing_key = self.jwks.get_signing_key_from_jwt(session["access_token"])
|
|
87
|
-
decoded = jwt.decode(
|
|
88
|
-
session["access_token"],
|
|
89
|
-
signing_key.key,
|
|
90
|
-
algorithms=self.jwk_algorithms,
|
|
91
|
-
options={"verify_aud": False},
|
|
92
|
-
)
|
|
93
|
-
|
|
94
94
|
return AuthenticateWithSessionCookieSuccessResponse(
|
|
95
95
|
authenticated=True,
|
|
96
96
|
session_id=decoded["sid"],
|
|
@@ -128,19 +128,6 @@ class SessionModule(Protocol):
|
|
|
128
128
|
)
|
|
129
129
|
return str(result)
|
|
130
130
|
|
|
131
|
-
def _is_valid_jwt(self, token: str) -> bool:
|
|
132
|
-
try:
|
|
133
|
-
signing_key = self.jwks.get_signing_key_from_jwt(token)
|
|
134
|
-
jwt.decode(
|
|
135
|
-
token,
|
|
136
|
-
signing_key.key,
|
|
137
|
-
algorithms=self.jwk_algorithms,
|
|
138
|
-
options={"verify_aud": False},
|
|
139
|
-
)
|
|
140
|
-
return True
|
|
141
|
-
except jwt.exceptions.InvalidTokenError:
|
|
142
|
-
return False
|
|
143
|
-
|
|
144
131
|
@staticmethod
|
|
145
132
|
def seal_data(data: Dict[str, Any], key: str) -> str:
|
|
146
133
|
fernet = Fernet(key)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.20.1 → workos-5.20.2}/workos/types/events/connection_payload_with_legacy_fields.py
RENAMED
|
File without changes
|
|
File without changes
|
{workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_group_with_previous_attributes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.20.1 → workos-5.20.2}/workos/types/events/directory_user_with_previous_attributes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.20.1 → workos-5.20.2}/workos/types/mfa/authentication_challenge_verification_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.20.1 → workos-5.20.2}/workos/types/user_management/user_management_provider_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|